/* --- MOBILE HOTFIX PACK (VitroNet) --- */
:root { --g: 12px; }
* { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; display: block; }

/* Header / Nav */
.site-header .nav { display:flex; align-items:center; justify-content:space-between; gap:var(--g); padding:12px var(--g); }
.brand { display:flex; align-items:center; gap:10px; min-width:0; }
.brand img { width:36px; height:auto; }
.logo-text { font-weight:700; white-space:nowrap; }
.menu { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.menu a { padding:8px 10px; }

/* Empêche tout menu d’être masqué sur mobile */
@media (max-width: 768px) {
  .menu { width:100%; justify-content:flex-start; }
}

/* Container */
.container { width:min(100%, 1100px); margin-inline:auto; padding-inline:16px; }

/* Hero grids */
.hero-grid, .hero-inner { display:grid; grid-template-columns: 1fr; gap:20px; }
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; align-items:center; }
  .hero-inner { grid-template-columns: 1.1fr .9fr; align-items:center; }
}

/* Images de hero / services : pas de rognage agressif */
.hero-card img, .hero-visual img { width:100%; height:auto; object-fit:cover; }

/* Sections “booking”, “faq”, etc. */
.section { padding:32px 0; }

/* Grilles génériques */
.benefits-grid { display:grid; grid-template-columns:1fr; gap:16px; }
@media (min-width: 720px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

/* Carrousel services : viewport full-width et images toujours visibles */
.srv-carousel { position:relative; }
.srv-carousel .viewport { overflow:hidden; width:100%; }
.srv-carousel .track { display:flex; gap:8px; }
.srv-carousel .slide { min-width:100%; }
.srv-carousel .media { width:100%; aspect-ratio: 16/9; background:#f4f6f8; display:flex; align-items:center; justify-content:center; }
.srv-carousel .media img { width:100%; height:100%; object-fit:contain; } /* on privilégie la vue entière */

/* Formulaires (contact) */
.contact-grid { display:grid; grid-template-columns:1fr; gap:16px; }
.form-card .row { display:grid; grid-template-columns:1fr; gap:12px; }
.field label { display:block; font-weight:600; margin-bottom:6px; }
.field input, .field select, .field textarea { width:100%; padding:10px 12px; border:1px solid #e5e7eb; border-radius:10px; }
.actions { display:flex; flex-wrap:wrap; gap:10px; }

/* Sur écrans moyens+ */
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .form-card .row { grid-template-columns: 1fr 1fr; }
}

/* Boutons */
.btn { display:inline-flex; align-items:center; justify-content:center; border-radius:999px; padding:10px 16px; text-decoration:none; }
.btn-primary { background:#0ea5e9; color:#fff; }
.btn-ghost { background:transparent; border:1px solid #cfd8e3; }

/* Footer */
.f-grid { display:grid; grid-template-columns:1fr; gap:16px; padding:20px 0; }
@media (min-width: 900px) { .f-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.f-logo { width:42px; height:auto; }
.f-pill, .f-chip { display:inline-block; padding:6px 10px; border-radius:999px; border:1px solid #e5e7eb; margin:4px 6px 0 0; }

/* Divers */
.badge { display:inline-block; padding:6px 10px; border-radius:999px; background:#e6f6fe; }
.h2 { font-size: clamp(1.25rem, 2vw, 1.75rem); line-height:1.2; }

:root{
  --primary:#0ea5e9; --accent:#22c55e; --ink:#0f172a; --mut:#64748b;
  --card:#ffffff; --border:#e5e7eb; --max:1100px; --radius:18px;
  --warm:#ffb347;  /* orange doux */
  --berry:#9463f7; /* violet pastel */
  --rose:#ff7aa2;  /* rose corail */
}

*{ box-sizing:border-box; }

/* ====== Layout de base ====== */
html, body { height:100%; margin:0; }

body{
  font-family:Inter,system-ui,Arial,Helvetica,sans-serif;
  color:var(--ink);
  line-height:1.55;

  /* Fond chaleureux : dégradés radiaux + image */
  background:
    radial-gradient(1000px 600px at 10% 0%, #e6f8ff 0%, #f6fbff 32%, transparent 60%),
    radial-gradient(900px 540px at 90% 5%, #fff3ef 0%, #fff7f3 35%, transparent 70%),
    linear-gradient(180deg,#f8fbff 0%, #f6f9ff 100%),
    url("../../img/bg.png");
  background-size: cover, cover, 100% 100%, cover;
  background-position: center, center, center, center;
  background-attachment: fixed, fixed, fixed, fixed;
  background-repeat: no-repeat;
  position:relative;
}
/* Grain léger */
body::after{
  content:"";
  position:fixed; inset:0; pointer-events:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 10 10'><circle cx='0.5' cy='0.5' r='0.5' fill='%2300000040'/></svg>");
  opacity:.02; mix-blend-mode:multiply;
}

.container{max-width:var(--max);margin:0 auto;padding:0 16px}

/* ===== Header / Nav ===== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.85)!important;
  backdrop-filter:saturate(1.2) blur(8px);
  border-bottom:1px solid #e5e7eb;
  transition:background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled{
  background:rgba(255,255,255,.95)!important;
  box-shadow:0 8px 24px rgba(2,6,23,.06);
}
.nav{display:flex;align-items:center;justify-content:space-between;min-height:64px;padding:8px 0;gap:12px;flex-wrap:wrap}

.brand{display:flex;gap:10px;align-items:center;font-weight:800;text-decoration:none}
.brand img{height:28px}

/* Menu — base (desktop) */
#main-menu.menu{
  display:flex; align-items:center; gap:18px;
}
#main-menu.menu a{
  margin:0; color:#0f172a; text-decoration:none; font-weight:600;
}
#main-menu.menu a:hover{ opacity:.85 }

/* Burger non utilisé */
.burger{ display:none !important; }

/* Mobile : menu toujours visible, sans burger */
@media (max-width:959px){
  #main-menu/* Simple inline nav on all sizes */
.menu{
  position:static !important;
  transform:none !important;
  opacity:1 !important;
  visibility:visible !important;
  pointer-events:auto !important;
  display:flex !important;
  gap:12px;
  background:transparent !important;
  box-shadow:none !important;
  flex-wrap:wrap;
  align-items:center;
}
  #main-menu.menu a{
    display:inline-block;
    padding:10px 8px;
    border-radius:10px;
  }
  #main-menu.menu .btn-cta{
    background:#0ea5e9 !important;
    color:#fff !important;
    font-weight:700;
  }
}

/* ====== Hero ====== */
.hero{
  background: linear-gradient(135deg, #e8f6ff 0%, #fff4ee 100%) !important;
  position:relative; overflow:hidden; color:#053025;
  border-bottom:1px solid #eef2f7;
}
.hero::before, .hero::after{
  content:""; position:absolute; filter:blur(40px); opacity:.35; z-index:0;
}
.hero::before{
  width:340px; height:340px; right:-80px; top:-80px;
  background: radial-gradient(circle at 30% 30%, var(--berry), transparent 60%);
}
.hero::after{
  width:280px; height:280px; left:-80px; bottom:-80px;
  background: radial-gradient(circle at 60% 60%, var(--rose), transparent 60%);
}
.hero-grid{position:relative; z-index:1; display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:center;padding:56px 16px}
.badge{display:inline-block;background:linear-gradient(135deg,#fff,#fff0f5);color:#0b3b2f;padding:8px 12px;border-radius:999px;font-weight:700;margin-bottom:12px;box-shadow:0 6px 20px rgba(14,165,233,.12)}
.hero h1{margin:0 0 8px;font-size:34px}
.hero p{margin:0 0 20px;color:#062f1f}
.hero-card{
  background:rgba(255,255,255,.7); backdrop-filter:saturate(1.05) blur(4px);
  border:1px solid #ffffff80; border-radius:22px; padding:10px;
  box-shadow:0 20px 50px rgba(2,6,23,.12);
  aspect-ratio: 16 / 10; overflow:hidden;
}
.hero-card img{
  width:100%; height:100%; object-fit:cover; object-position:60% 38%; border-radius:16px;
}
@media (max-width:960px){
  .hero-grid{grid-template-columns:1fr}
  .hero-card{aspect-ratio:16/9; margin-top:10px}
}

/* ====== Boutons ====== */
.btn{border:1px solid var(--border);background:#fff;padding:10px 14px;border-radius:12px;cursor:pointer;font-weight:700}
.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#fff;border-color:transparent;
  box-shadow:0 12px 24px rgba(14,165,233,.25);
  transform:translateY(0); transition:transform .15s, box-shadow .2s, filter .2s;
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(34,197,94,.25);filter:saturate(1.1)}

/* ====== Sections & cartes ====== */
.section{padding:48px 0; background:transparent}
.h2{margin:0 0 16px;font-size:30px;letter-spacing:.2px}
.card{
  background:rgba(255,255,255,.88);
  border:1px solid var(--border); border-radius:var(--radius); padding:18px;
  backdrop-filter:blur(2px);
}

/* ====== Nos points forts ====== */
#services .h2,
.benefits .h2{
  text-align: center;
  margin: 0 auto 18px;
}
.benefits-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;align-items:stretch}
@media (max-width:960px){ .benefits-grid{grid-template-columns:1fr} }

.feature{
  text-align:center; display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
  background:#fff; border:1px solid var(--border); border-radius:14px; padding:18px 18px 20px;
  box-shadow:0 1px 0 rgba(15,23,42,.03);
  transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(2,6,23,.06); border-color:#dbe0e6; }
.feature-icon{
  width:46px;height:46px;border-radius:12px; display:grid;place-items:center; color:#fff; margin:0 auto 10px;
  background:linear-gradient(135deg,var(--primary),var(--berry));
  box-shadow:0 8px 22px rgba(148,99,247,.28);
}
.feature-title{ margin:2px 0 8px; font-size:16px; font-weight:800; color:var(--ink); }
.feature-text{ max-width:36ch; margin:0 auto; color:#334155; line-height:1.6; }

/* ====== Réservation / module ====== */
.section-booking{ background:transparent; border:0; }
.booking-header{
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  gap:6px; margin-bottom:18px;
}
.booking-header .h2{margin:0; font-size:30px; line-height:1.2}
.booking-help{margin:0; color:#475569; max-width:60ch}

.wrap{
  max-width:900px;margin:0 auto;background:#fff;border:1px solid #eef2f7;border-radius:20px;padding:18px;
  box-shadow:0 20px 60px rgba(2,6,23,.06);
}
.progress{height:6px;background:#ecfeff;border-radius:999px;margin:12px 0 18px}
.progress .bar{height:6px;background:linear-gradient(90deg,var(--primary),var(--accent));border-radius:999px}
.step{display:none}
.step.active{display:block}

/* ====== Créneaux ====== */
.slot-block { margin-bottom: 12px; }
.slot-block-title { margin: 0 0 6px; color: #0f172a; font-size: 14px; font-weight: 700; }

#slot-grid { display:flex; flex-direction:column; gap:16px; }
.slot-block{
  background:#f8fafc; border:1px solid #e5e7eb; border-radius:14px; padding:12px 14px;
  box-shadow:0 1px 0 rgba(15, 23, 42, 0.03);
}
.slot-title{
  font-weight:600; color:#0f172a; margin:0 0 8px; display:flex; align-items:center; gap:8px;
}
.slot-title::before{content:""; width:8px;height:8px;border-radius:999px;background:#0ea5e9}

.slot-row{
  display:flex; gap:8px; overflow-x:auto; padding:2px 4px 8px; scroll-snap-type:x proximity;
  -webkit-mask-image:linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
  mask-image:linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
}
.slot-row .slot{ flex:0 0 auto; scroll-snap-align:start; }

.slot{
  appearance:none; border:1px solid #e2e8f0; background:#fff; color:#0f172a; border-radius:12px;
  padding:10px 12px; font:600 14px/1 Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  box-shadow:0 1px 0 rgba(15,23,42,.04);
  transition:border-color .15s, transform .06s, box-shadow .15s, background .15s, color .15s;
  white-space:nowrap;
}
.slot:hover:not(.disabled){ border-color:#94a3b8; transform:translateY(-1px); box-shadow:0 4px 12px rgba(2,6,23,.06) }
.slot:focus-visible{ outline:3px solid rgba(14,165,233,.35); outline-offset:2px }
.slot.selected{
  background:linear-gradient(135deg, #0ea5e9, #22c55e); color:#fff; border-color:transparent;
  box-shadow:0 6px 20px rgba(14,165,233,.25)
}
.slot.disabled{ opacity:.45; cursor:not-allowed; background:#f1f5f9; color:#64748b }

.slot-row::-webkit-scrollbar{ height:6px }
.slot-row::-webkit-scrollbar-track{ background:transparent }
.slot-row::-webkit-scrollbar-thumb{ background:#cbd5e1; border-radius:999px }
.slot-row:hover::-webkit-scrollbar-thumb{ background:#94a3b8 }

@media (min-width:860px){
  .slot-row{ overflow-x:visible; -webkit-mask-image:none; mask-image:none; flex-wrap:wrap; gap:10px; padding-right:0 }
}

/* ===== Booking: fixes mobile ===== */
.section-booking .container { padding-left: 12px; padding-right: 12px; }
#booking-root .wrap { max-width: 820px; margin-inline: auto; }

/* Cards & spacing */
#booking-root .card { padding: 14px; border-radius: 12px; }
@media (min-width: 640px) {
  #booking-root .card { padding: 20px; }
}

/* Progress bar */
#booking-root .progress { height: 6px; background: #e2e8f0; border-radius: 999px; overflow: hidden; }
#booking-root .progress .bar { height: 100%; background: #0ea5e9; width: 0%; transition: width .25s ease; }

/* Accordion */
#booking-root .accordion { display: grid; gap: 10px; }
#booking-root .acc-item { border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; background:#fff; }
#booking-root .acc-header { display:flex; align-items:center; gap:10px; padding:12px; cursor:pointer; }
#booking-root .acc-header .cat-thumb { width:42px; height:42px; flex:0 0 auto; }
#booking-root .acc-body { padding: 8px 12px 12px; display:none; }
#booking-root .acc-item.open .acc-body { display:block; }

/* Quantities rows */
#booking-root .qty-row { display:grid; grid-template-columns: auto 1fr auto; align-items:center; gap:10px; padding:10px 0; }
#booking-root .qty-row + .qty-row { border-top:1px dashed #e5e7eb; }
#booking-root .counter { min-width: 34px; text-align:center; font-weight:700; }
#booking-root .qty-actions input[type="number"] { width:100px; padding:10px; border:1px solid #cbd5e1; border-radius:8px; }

/* Boutons mini colorés */
#booking-root .qty-actions .btn-mini{
  font-weight:700; border-radius:10px; padding:10px 12px;
  transition:filter .15s, transform .06s, box-shadow .15s;
}
#booking-root .qty-actions .btn-mini.add{
  border-color:transparent;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#fff;
  box-shadow:0 8px 18px rgba(14,165,233,.22);
}
#booking-root .qty-actions .btn-mini.add:hover{
  filter:saturate(1.05); transform:translateY(-1px);
}
#booking-root .qty-actions .btn-mini.remove{
  background:#fff7f7; color:#b91c1c; border:1px solid #fecaca;
}
#booking-root .qty-actions .btn-mini.remove:hover{
  background:#ffe7e7;
}

/* Upsell grid: 1 col on mobile */
#booking-root .upsell-grid { display:grid; gap:12px; }
@media (min-width: 640px) {
  #booking-root .upsell-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
#booking-root .u-card { border:1px solid #e2e8f0; border-radius:12px; padding:12px; background:#fff; }
#booking-root .u-card h5 { display:flex; align-items:center; gap:10px; margin:0 0 8px; }
#booking-root .u-card .u-img { width:40px; height:40px; }
#booking-root .u-card .u-qty { display:inline-flex; align-items:center; border:1px solid #cbd5e1; border-radius:8px; overflow:hidden; }
#booking-root .u-card .u-qty input { width:56px; text-align:center; padding:8px; border:0; }
#booking-root .u-card .u-qty .minus,
#booking-root .u-card .u-qty .plus { padding:8px 10px; border:0; background:#f8fafc; }

/* Step 3 form: 1 col on mobile */
#booking-root .grid-3 { display:grid; gap:12px; grid-template-columns: 1fr; }
@media (min-width: 720px) {
  #booking-root .grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  #booking-root .grid-3 .field[style*="grid-column: span 2"] { grid-column: span 2; }
  #booking-root .grid-3 .field[style*="grid-column:1/-1"] { grid-column: 1 / -1; }
}
#booking-root .field input, 
#booking-root .field textarea { width:100%; padding:12px; border:1px solid #cbd5e1; border-radius:8px; }

/* Calendar */
#booking-root .calendar { overflow:hidden; }
#booking-root .cal-head { display:flex; align-items:center; justify-content:space-between; gap:8px; }
#booking-root .weekdays, 
#booking-root .cal-grid { display:grid; grid-template-columns: repeat(7, 1fr); }
#booking-root .cal-grid { gap:4px; }
#booking-root .day { padding:10px 0; font-size:14px; border:1px solid #e2e8f0; border-radius:10px; }
@media (max-width: 360px) {
  #booking-root .weekdays span { font-size:12px; }
  #booking-root .day { padding:8px 0; }
}

/* Slots (re-wrap) */
#booking-root .slot-grid { display:grid; gap:10px; }
#booking-root .slot-block { border:1px solid #e2e8f0; border-radius:10px; padding:10px; }
#booking-root .slot-row { display:flex; flex-wrap:wrap; gap:8px; }
#booking-root .slot { padding:10px 12px; border:1px solid #cbd5e1; border-radius:8px; background:#fff; }
#booking-root .slot.selected { outline:2px solid #0ea5e9; }
#booking-root .slot.disabled { opacity:.45; pointer-events:none; }

/* Footer action buttons */
#booking-root .actions { display:flex; gap:10px; flex-wrap:wrap; }
#booking-root .actions .btn { min-height:44px; padding:12px 16px; border-radius:10px; }

/* Make thumb images responsive */
#booking-root img.thumb { width:36px; height:36px; object-fit:cover; }

/* ====== Footer ====== */
.site-footer{
  position: relative;
  color:#e2e8f0;
  background: radial-gradient(1400px 600px at 80% -50%, rgba(34,197,94,.15), transparent 55%),
              radial-gradient(1200px 500px at 0% -40%, rgba(14,165,233,.20), transparent 60%),
              linear-gradient(180deg,#0b1220 0%, #0b1220 60%, #0d1628 100%);
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.footer-wave svg{ display:block; width:100%; height:80px; }
.footer-wave path{ fill:#0b1220; opacity:.9; }

.f-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  align-items:start;
}
@media (max-width:900px){
  .f-grid{ grid-template-columns: 1fr; gap:18px; }
}

.f-brand{ display:flex; gap:14px; align-items:flex-start; }
.f-logo{
  width:44px; height:44px; object-fit:contain; border-radius:10px;
  background: rgba(255,255,255,.08); padding:6px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.f-address{ color:#94a3b8; font-style: normal; margin: 6px 0; }
.f-address a{ color:#93c5fd; }

.f-badges{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.f-pill{
  display:inline-block; padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.08); color:#e2e8f0; font-weight:600; font-size:12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.f-col h4{
  margin:0 0 10px; font-size:14px; color:#cbd5e1; letter-spacing:.2px; text-transform:uppercase;
}
.f-list{ list-style:none; margin:0; padding:0; }
.f-list li{ margin:6px 0; color:#94a3b8; }
.site-footer a{ color:#93c5fd; text-decoration:none; }
.site-footer a:hover{ color:#bfdbfe; text-decoration:underline; }

.f-zones-title{ margin:10px 0 6px; color:#cbd5e1; font-size:13px; }
.f-zones{ margin:0; }
.f-chip{
  display:inline-block; margin:4px 6px 0 0; padding:6px 10px; border-radius:999px;
  background: rgba(148,163,184,.15); color:#dbeafe; font-weight:600; font-size:12px;
}
.f-chip:hover{ background: rgba(148,163,184,.25); }

.f-seo-links{ margin-top:12px; color:#a3bffa; font-size:13px; }
.f-seo-links a{ color:#a3bffa; }
.f-seo-links a:hover{ color:#dbeafe; }

.f-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:26px;
  background: rgba(255,255,255,.02);
}
.f-bottom-inner{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 0; color:#94a3b8; font-size:14px;
}
@media (max-width:900px){
  .f-bottom-inner{ flex-direction:column; gap:8px; text-align:center; }
}
.f-badge{
  background: linear-gradient(135deg,#0ea5e9,#22c55e);
  color:#fff; padding:6px 10px; border-radius:999px; font-weight:600; font-size:12px;
  box-shadow: 0 6px 20px rgba(14,165,233,.18);
}

/* ===== Accessibilité ===== */
.skip-to-content{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-to-content:focus{
  left:16px; top:10px; width:auto; height:auto; overflow:visible;
  background:#0ea5e9; color:#fff; padding:8px 12px; border-radius:10px; z-index:1000;
  box-shadow:0 8px 24px rgba(2,6,23,.12);
}

/* ===== FAQ stylée ===== */
.faq-title{
  text-align:center;
  margin: 0 auto 18px;
  font-size: 30px;
  position: relative;
}
.faq-title::after{
  content:"";
  display:block;
  width:80px; height:4px;
  margin:10px auto 0;
  border-radius:999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 6px 16px rgba(14,165,233,.25);
}

.faq-list{
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease, transform .12s ease;
}
.faq-item:hover{
  border-color: #dbe0e6;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
  transform: translateY(-1px);
}

/* résumé cliquable */
.faq-summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 700;
  color: #0f172a;
  list-style: none;
}
.faq-summary::-webkit-details-marker{ display:none; }

/* chevron */
.faq-summary .chev{
  width: 18px; height: 18px;
  opacity: .6; flex: 0 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}
.faq-item[open] .faq-summary .chev{ transform: rotate(180deg); opacity: .9; }

/* contenu */
.faq-answer{
  padding: 0 16px 14px 16px;
  color: #334155;
  line-height: 1.6;
  border-top: 1px solid #eef2f7;
  background: linear-gradient(180deg,#ffffff 0%, #f9fbff 100%);
}
.faq-answer p{ margin: 12px 0 0; }

/* CTA sous la FAQ */
.faq-cta{
  text-align: center;
  margin-top: 16px;
}

/* Bouton Admin (discret mais visible) */
.btn-admin{
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color:#fff;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(14,165,233,.22);
}
.btn-admin:hover{
  filter: saturate(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(34,197,94,.22);
}
/* ==== CRENEAUX : pas de scroll horizontal, wrap multi-lignes ==== */
#booking-root .slot-row,
.slot-row{
  display: flex;
  flex-wrap: wrap;          /* retour à la ligne */
  gap: 8px;
  padding: 4px 0;
  overflow: visible !important;       /* plus de scroll */
  scroll-snap-type: none !important;  /* pas de snapping */
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

/* On cache totalement d'éventuels scrollbars résiduels (iOS/WebKit) */
#booking-root .slot-row::-webkit-scrollbar,
.slot-row::-webkit-scrollbar{
  display: none !important;
}

/* Taille mini propre pour chaque “pill” d’heure */
#booking-root .slot,
.slot{
  min-width: 70px;
  text-align: center;
}
/* ---- NAV MOBILE : version simple, sans burger ---- */
@media (max-width: 959px){
  .site-header .burger{ display:none !important; }

  /* menu visible en ligne */
  #main-menu.menu{
    position: static !important;
    transform: none !important;
    display: flex !important;
    gap: 10px;
    padding: 8px 0;
    background: transparent;
    box-shadow: none !important;
  }
}

/* --- Mobile header fixes: show inline links under logo if needed --- */
@media (max-width: 600px){
  .nav{align-items:flex-start}
  .menu{width:100%; padding-top:6px; justify-content:flex-start}
  .menu a{font-size:15px}
  .menu .btn-cta{padding:10px 12px}
}

/* ===== iOS Safari Hotfixes ===== */
html { height: -webkit-fill-available; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; min-height: -webkit-fill-available; }

/* Avoid input zoom on focus (iOS zooms <16px) */
input, select, textarea { font-size: 16px; -webkit-appearance: none; }

/* Buttons/links look consistent */
button, .btn { -webkit-appearance: none; }

/* 100vh issue on iOS: use --vh if provided (set via JS) */
.vh-100 { height: calc(var(--vh, 1vh) * 100); }
.min-vh-100 { min-height: calc(var(--vh, 1vh) * 100); }

/* Smooth touch scrolling in overflow containers */
.touch-scroll { -webkit-overflow-scrolling: touch; overflow-y: auto; }

/* Fallback when Flexbox GAP is missing (older iOS) */
@supports not (gap: 1rem) {
  .menu > * { margin-right: 10px; }
  .srv-carousel .track > * { margin-right: 8px; }
  .menu { margin-right: -10px; }
}

/* Sticky header quirks: ensure parent isn't clipping */
.site-header { overflow: visible; }

/* === NAVIGATION SIMPLE (sans burger) — force visible sur mobile === */
@media (max-width: 959px){
  .burger{ display: none !important; }
  #menu-overlay{ display: none !important; }
  .site-header .menu,
  #main-menu.menu{
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    gap: 12px;
    background: transparent !important;
    box-shadow: none !important;
    flex-wrap: wrap;
    align-items: center;
  }
}

