/* ============================================================
   ELISY TRANSPORT — Custom Stylesheet
   ============================================================ */


/* ===== DESIGN TOKENS ===== */
:root {
  --gold:          #C4A44F;
  --gold-light:    #D4B45F;
  --gold-dark:     #A8903F;
  --obsidian:      #0A0A0A;
  --panel:         #141414;
  --card:          #1E1E1E;
  --border:        #2A2A2A;
  --border-light:  #333;
  --text:          #F7F7F7;
  --text-sec:      #A8A8A8;
  --text-muted:    #555;
  --whatsapp:      #25D366;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Inter', sans-serif;
  background: var(--obsidian);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; }
img { max-width: 100%; }

/* Custom scrollbar */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--obsidian); }
::-webkit-scrollbar-thumb        { background: var(--gold-dark); border-radius: 3px; }

/* Layout helper */
.site-wrap  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-py { padding: 96px 0; }
.section-py-sm { padding: 64px 0; }

/* ===== TYPOGRAPHY HELPERS ===== */
.label {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.heading {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700; color: var(--text);
}
.sub-heading {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600; color: var(--text);
}
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 14px 0 20px;
}
.gold-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0; width: 100%; z-index: 900;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}
#navbar.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-link {
  font-size: .8125rem; font-weight: 500;
  letter-spacing: .04em; color: var(--text-sec);
  transition: color .2s; position: relative;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px); min-width: 230px;
  background: rgba(18,18,18,.98); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 0 6px; opacity: 0; visibility: hidden;
  transition: opacity .2s, transform .2s;
  z-index: 200;
}
/* Pont invisible qui comble l'espace entre le bouton et le menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 18px;
  font-size: .875rem; color: var(--text-sec);
  transition: color .15s, background .15s;
}
.dropdown-menu a:hover { color: var(--gold); background: rgba(196,164,79,.06); }
.dropdown-menu hr { border-color: var(--border); margin: 4px 0; }

/* Mobile menu */
#mobile-menu {
  background: rgba(10,10,10,.98); backdrop-filter: blur(15px);
  border-top: 1px solid var(--border);
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
  padding: 0 24px;
}
#mobile-menu.open { max-height: 800px; padding: 20px 24px; }
.mobile-nav-link {
  display: block; padding: 13px 0;
  color: var(--text-sec); font-size: .9375rem;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav-link:hover { color: var(--gold); }

/* Mobile accordéons */
.mobile-group { border-bottom: 1px solid var(--border); }
.mobile-group-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0; background: none; border: none; cursor: pointer;
  color: var(--text-sec); font-size: .9375rem; font-family: 'Inter', sans-serif;
  transition: color .2s;
}
.mobile-group-btn:hover { color: var(--text); }
.mobile-group.open .mobile-group-btn { color: var(--gold); }
.mobile-chevron {
  transition: transform .3s;
  flex-shrink: 0;
}
.mobile-group.open .mobile-chevron { transform: rotate(180deg); }
.mobile-group-items {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-group.open .mobile-group-items { max-height: 300px; }
.mobile-sub-link {
  display: block; padding: 10px 0 10px 16px;
  color: var(--text-muted); font-size: .875rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s;
}
.mobile-sub-link:hover { color: var(--gold); }
.mobile-sub-link:last-child { border-bottom: none; margin-bottom: 8px; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #0A0A0A;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .875rem; letter-spacing: .04em;
  padding: 12px 24px; border-radius: 4px;
  border: none; cursor: pointer; transition: all .3s;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(196,164,79,.3);
}
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold);
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .875rem; letter-spacing: .04em;
  padding: 11px 23px; border-radius: 4px;
  border: 1px solid var(--gold); cursor: pointer; transition: all .3s;
}
.btn-outline-gold:hover {
  background: rgba(196,164,79,.1); transform: translateY(-1px);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--whatsapp); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .875rem; padding: 12px 24px; border-radius: 4px;
  border: none; cursor: pointer; transition: all .3s;
}
.btn-whatsapp:hover {
  background: #20BD5C; transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(37,211,102,.3);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); color: var(--text);
  font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: .875rem; padding: 12px 24px; border-radius: 4px;
  border: 1px solid var(--border); cursor: pointer; transition: all .3s;
}
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--border-light); }

/* ===== FLOATING CTAs ===== */
#floating-ctas {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.float-btn:hover { transform: translateY(-3px) scale(1.08); }
.float-wa  { background: var(--whatsapp); color: #fff; }
.float-tel { background: var(--gold);     color: #0A0A0A; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/img/vtc-meudon-prive.webp');
  background-size: cover; background-position: center 30%;
}
@media (max-width: 768px) { .hero-bg { background-attachment: scroll; } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(10,10,10,.93) 0%,
    rgba(10,10,10,.78) 55%,
    rgba(10,10,10,.55) 100%
  );
}
.hero-content { position: relative; z-index: 2; }

/* Trust badge */
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(196,164,79,.25);
  border-radius: 100px; padding: 7px 16px;
  font-size: .8125rem; color: var(--text-sec);
  backdrop-filter: blur(8px);
}
.trust-badge strong { color: var(--text); }

/* ===== STAT STRIP ===== */
.stat-strip {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label { font-size: .8125rem; color: var(--text-sec); margin-top: 4px; }

/* ===== CARDS ===== */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; transition: all .3s;
}
.card:hover { border-color: rgba(196,164,79,.4); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.card-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(196,164,79,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 18px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px;
  transition: all .3s; display: block;
}
.service-card:hover {
  border-color: rgba(196,164,79,.4); transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.4);
}
.service-card .card-icon { margin-bottom: 16px; }
.service-card h3 { font-size: 1.125rem; color: var(--text); margin-bottom: 10px; }
.service-card p  { font-size: .875rem; color: var(--text-sec); line-height: 1.65; }

/* ===== REVIEWS ===== */
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px;
}
.review-stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }
.review-text { font-size: .9375rem; color: var(--text-sec); line-height: 1.7; margin: 12px 0; font-style: italic; }
.reviewer-name { font-size: .875rem; font-weight: 600; color: var(--text); }
.reviewer-date { font-size: .75rem; color: var(--text-muted); }

/* ===== CALCULATOR ===== */
.calc-input-wrap { position: relative; }
.calc-input {
  width: 100%; background: var(--panel);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 14px 16px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: .9375rem;
  outline: none; transition: border-color .2s;
}
.calc-input:focus { border-color: var(--gold); }
.calc-input::placeholder { color: var(--text-muted); }

.suggestions {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(20,20,20,.99); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 6px 6px;
  max-height: 210px; overflow-y: auto;
  z-index: 50; display: none;
  list-style: none; margin: 0; padding: 0;
}
.suggestions li {
  padding: 10px 16px; cursor: pointer;
  font-size: .875rem; color: var(--text-sec);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.suggestions li:hover { background: rgba(196,164,79,.08); color: var(--text); }

.price-result {
  background: linear-gradient(135deg,rgba(196,164,79,.1),rgba(196,164,79,.04));
  border: 1px solid rgba(196,164,79,.3); border-radius: 10px;
  padding: 24px; text-align: center;
}
.price-big {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
#map { height: 280px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }

/* Forfait table — scrollable if too wide on very small screens */
.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; border-collapse: collapse; min-width: 280px; }
.price-table thead th {
  background: rgba(196,164,79,.08); color: var(--gold);
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 12px 18px; text-align: left;
}
.price-table tbody td {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  color: var(--text-sec); font-size: .9375rem;
}
.price-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.price-highlight { color: var(--gold); font-weight: 600; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; min-width: 0; }
.form-label {
  display: block; font-size: .8125rem; font-weight: 500;
  color: var(--text-sec); margin-bottom: 6px; letter-spacing: .02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%; min-width: 0; background: var(--panel);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 13px 16px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: .9375rem;
  outline: none; transition: border-color .2s;
  box-sizing: border-box;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; appearance: none; }
.form-alert {
  padding: 13px 18px; border-radius: 6px; font-size: .9rem;
  margin-top: 14px; display: none;
}
.form-alert.success { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); color: #25D366; display: block; }
.form-alert.error   { background: rgba(239,68,68,.1);  border: 1px solid rgba(239,68,68,.3);  color: #EF4444;  display: block; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 500;
  color: var(--text); transition: color .2s; user-select: none;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); font-size: .875rem;
  transition: transform .3s; margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  color: var(--text-sec); line-height: 1.75; font-size: .9375rem;
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }

/* ===== ZONE CARD ===== */
.zone-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  padding: 18px 20px; display: flex; align-items: center; gap: 12px;
  transition: all .2s;
}
.zone-card:hover { border-color: rgba(196,164,79,.4); background: rgba(196,164,79,.04); }
.zone-card-icon { color: var(--gold); flex-shrink: 0; }
.zone-card-name { font-size: .9375rem; font-weight: 500; color: var(--text); }
.zone-card-sub  { font-size: .8125rem; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer { background: #060606; border-top: 1px solid var(--border); }
.footer-link {
  display: block; color: var(--text-muted); font-size: .875rem;
  margin-bottom: 9px; transition: color .2s;
}
.footer-link:hover { color: var(--gold); }

/* ===== SPINNER ===== */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(196,164,79,.3);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin .7s linear infinite; display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ===== MISC ===== */
.gold-dot::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-right: 10px; vertical-align: middle; }
.check-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.check-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.badge {
  display: inline-block; font-size: .75rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.badge-gold { background: rgba(196,164,79,.15); color: var(--gold); border: 1px solid rgba(196,164,79,.3); }
.badge-green { background: rgba(37,211,102,.1); color: #25D366; }

/* ===== RESERVATION PAGE GRIDS ===== */
/* Grille principale : calculateur | formulaire */
.resa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
/* Grilles 2 colonnes dans le formulaire (nom/tel, date/heure, pax/bagages) */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
/* Empêche les grid items de déborder (min-width: auto par défaut) */
.resa-grid > *,
.form-grid-2 > * { min-width: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .site-wrap { padding: 0 16px; }
  .section-py { padding: 64px 0; }
  .section-py-sm { padding: 48px 0; }
  .hero { min-height: 100svh; }
}

/* Two-column inline grids → stack on mobile */
@media (max-width: 768px) {
  /* Reservation page grids */
  .resa-grid,
  .form-grid-2 {
    grid-template-columns: 1fr !important;
  }
  /* Any direct grid children in site-wrap or sections */
  .site-wrap > div[style*="grid-template-columns:1fr 1fr"],
  .site-wrap > div[style*="grid-template-columns: 1fr 1fr"],
  section div[style*="grid-template-columns:1fr 1fr"],
  section div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1.6fr"],
  div[style*="grid-template-columns:1fr 2.2fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Floating CTAs: smaller on mobile */
  #floating-ctas { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 46px; height: 46px; }
  /* Hero heading smaller */
  .hero h1 { font-size: clamp(1.875rem, 8vw, 2.5rem) !important; }
  /* Stats: 2 cols on mobile */
  .stat-strip .site-wrap > div { grid-template-columns: repeat(2, 1fr) !important; }
  /* Forfait CTA banner: stack */
  div[style*="display:flex;flex-wrap:wrap;gap:32px"] { gap: 20px !important; }
  /* FAQ sidebar: hide on mobile */
  div[style*="position:sticky"] { position: static !important; }
  /* Price table: smaller text */
  .price-table td, .price-table th { padding: 10px 12px; font-size: .8125rem; }
  /* Review cards: full width already via auto-fit */
  /* Inline-flex price badge: wrap */
  div[style*="display:inline-flex;align-items:center;gap:16px"] {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
  /* Service cards CTA: stack */
  div[style*="display:flex;flex-wrap:wrap;gap:14px"] { gap: 10px !important; }
}

/* =============================================================
   LIGHT MODE
   Activé via data-theme="light" sur <html>
   ============================================================= */

/* 1. Variables — inversion des fonds et textes */
[data-theme="light"] {
  --obsidian:      #FFFFFF;
  --panel:         #F3F4F6;
  --card:          #E9EAEC;
  --border:        #D8D9DC;
  --border-light:  #C8C9CC;
  --text:          #0F0F0F;
  --text-sec:      #444444;
  --text-muted:    #888888;
}

/* 2. Body */
[data-theme="light"] body { background: #FFFFFF; color: #0F0F0F; }

/* 3. Navbar scrollée — fond blanc */
[data-theme="light"] #navbar.scrolled {
  background: rgba(255,255,255,.97);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}

/* 4. Navbar non-scrollée — gradient clair pour rester lisible sur le hero blanc */
[data-theme="light"] #navbar:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(243,244,246,.9) 0%, transparent 100%);
}

/* 5. Dropdown */
[data-theme="light"] .dropdown-menu {
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
[data-theme="light"] .dropdown-menu a         { color: var(--text-sec); }
[data-theme="light"] .dropdown-menu a:hover   { color: var(--gold); background: rgba(196,164,79,.08); }
[data-theme="light"] .dropdown-menu hr        { border-color: var(--border); }

/* 6. Menu mobile */
[data-theme="light"] #mobile-menu { background: rgba(255,255,255,.99); }
[data-theme="light"] .mobile-sub-link { border-bottom-color: rgba(0,0,0,.06); }

/* 7. Hero — overlay inversé en clair, texte sombre */
[data-theme="light"] .hero-overlay {
  background: linear-gradient(135deg,
    rgba(243,244,246,.94) 0%,
    rgba(243,244,246,.82) 55%,
    rgba(255,255,255,.65) 100%
  );
}

/* Trust badges sur fond clair */
[data-theme="light"] .hero .trust-badge {
  background: rgba(0,0,0,.05);
  border-color: rgba(196,164,79,.35);
  color: var(--text-sec);
}
[data-theme="light"] .hero .trust-badge strong { color: var(--text); }

/* 8. Bouton ghost (fond transparent blanc → fond transparent noir) */
[data-theme="light"] .btn-ghost {
  background: rgba(0,0,0,.06);
  color: var(--text);
  border-color: var(--border);
}
[data-theme="light"] .btn-ghost:hover {
  background: rgba(0,0,0,.1);
  border-color: var(--border-light);
}

/* 9. Trust badges hors hero */
[data-theme="light"] .trust-badge {
  background: rgba(0,0,0,.04);
  border-color: rgba(196,164,79,.3);
}

/* 10. Autocomplete suggestions (calculateur) */
[data-theme="light"] .suggestions {
  background: rgba(255,255,255,.99);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
[data-theme="light"] .suggestions li { color: var(--text-sec); }

/* 11. Tableau des prix — ligne hover */
[data-theme="light"] .price-table tbody tr:hover td {
  background: rgba(0,0,0,.03);
}

/* 12. Footer */
[data-theme="light"] footer { background: var(--panel); border-top: 1px solid var(--border); }

/* 13. Carte d'avis — ombre légère */
[data-theme="light"] .review-card {
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* 14. Bouton thème lui-même — adapte sa couleur selon le mode */
#theme-btn {
  font-size: .875rem; padding: 6px 10px;
  border: 1px solid var(--border); border-radius: 4px;
  background: transparent; color: var(--text-sec);
  cursor: pointer; transition: all .2s; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
#theme-btn:hover { border-color: var(--gold); color: var(--gold); }
