/* =========================
   FIL D'ARIANE
========================= */

.breadcrumb-bar {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 6px 12px;
  margin: 0;
}

.breadcrumb-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.breadcrumb-left a {
  color: #0077cc;
  text-decoration: none;
  margin-right: 6px;
}

.breadcrumb-left .courant {
  font-weight: 700;
  background: #e8f2ff;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Login desktop */
.breadcrumb-right {
  margin-left: auto;
  font-weight: bold;
}

/* =========================
   DESKTOP
========================= */

.desktop-only {
  display: flex;
}

@media (min-width: 901px) {
  .menu-top.mobile-only {
    display: none;
  }
  .breadcrumb-bar {
    background: rgba(0,0,0,0.05);
    border-radius: 6px;
  }

  .breadcrumb-left a:not(:last-of-type)::after {
    content: "›";
    margin-left: 6px;
    color: #999;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .desktop-only {
    display: none;
  }

  .menu-top.mobile-only {
    display: flex;
    align-items: center;
    gap: 0.6em;
  }

  .breadcrumb-bar {
    background: none;
    padding: 0;
    flex: 1;
    min-width: 0;
  }

  /* masquer étapes intermédiaires */
  .breadcrumb-left a {
    display: none;
  }

  .breadcrumb-left .courant {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
  }
}

