  /* =========================
   TOP NAVBAR FIXE
========================= */

.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eaeaea;
  z-index: 10000;
  font-size: 13px;
}

.top-navbar__container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT LINKS */
.top-navbar__left a {
  margin-right: 16px;
  color: #555;
  text-decoration: none;
}

.top-navbar__left a:hover {
  text-decoration: underline;
}

/* RIGHT AREA */
.top-navbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LANG SWITCH */
.lang-switch a {
  font-weight: 500;
  color: #555;
  text-decoration: none;
}

/* BUSINESS BUTTON */
.btn-business {
  background: #a78567;
  color: #fff !important;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

.btn-business:hover {
  background: #d97f00;
}

/* =========================
   DÉCALAGE GLOBAL DU SITE
========================= */

/* ⚠️ IMPORTANT */
body {
  padding-top: 40px; /* hauteur exacte de .top-navbar */
}
/* =========================
   SÉPARATEURS VERTICAUX
========================= */

.top-navbar__left {
  display: flex;
  align-items: center;
}

.top-navbar__left a {
  position: relative;
  padding: 0 12px;
  color: #555;
  text-decoration: none;
  font-size: 13px;
}

/* Ligne verticale entre les liens */
.top-navbar__left a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #dcdcdc;
}

/* Hover subtil */
.top-navbar__left a:hover {
  color: #000;
}
@media (max-width: 768px) {
  .top-navbar__left a::after {
    display: none;
  }
}
/* =========================
   LANG SWITCH + FLAGS
========================= */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  position: relative;
  padding-right: 10px;
}

/* Séparateur vertical entre langues */
.lang-switch a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #dcdcdc;
}

/* Drapeaux */
.lang-switch img {
  width: 16px;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}

/* Hover */
.lang-switch a:hover {
  color: #000;
}

/* Langue active (optionnel) */
.lang-switch a.active {
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .top-navbar__left {
    display: none;
  }

  .top-navbar__right {
    margin-left: auto;
  }

  .btn-business {
    padding: 5px 10px;
    font-size: 12px;
  }
}
