/* ============================================================
   O'SAVEURS BY DIJA — "Teranga nuit"
   Indigo nuit · or laiton · bissap · motif bogolan
   Display : Fraunces  ·  Corps : Manrope
   ============================================================ */

:root {
  --night:    #0E1322;
  --night-2:  #141B2E;
  --indigo:   #1E2C52;
  --brass:    #C9A24B;
  --brass-lt: #E4C77E;
  --bissap:   #C13B57;
  --cream:    #F3ECDD;
  --muted:    #A49B86;
  --line:     rgba(201,162,75,.22);
  --line-soft:rgba(243,236,221,.10);
  --tg-display: 'Fraunces', Georgia, serif;
  --tg-body: 'Manrope', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--tg-body);
  background: var(--night);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* Signature — bandeau bogolan (or laiton sur nuit) */
.bogolan-band {
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22' viewBox='0 0 48 22'%3E%3Cg fill='none' stroke='%23C9A24B' stroke-width='1.3'%3E%3Cpath d='M0 11 L12 3 L24 11 L12 19 Z'/%3E%3Cpath d='M24 11 L36 3 L48 11 L36 19 Z'/%3E%3C/g%3E%3Cg fill='%23C9A24B'%3E%3Ccircle cx='12' cy='11' r='1.5'/%3E%3Ccircle cx='36' cy='11' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: .85;
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .7rem 1.4rem;
  background: rgba(14,19,34,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-brand img { height: 40px; width: auto; }
.nav-status {
  font-size: .68rem; font-weight: 700; letter-spacing: .06em;
  padding: .25rem .6rem; border-radius: 999px; white-space: nowrap;
}
.nav-status.ouvert { color: #7BD8A6; background: rgba(46,125,82,.18); border: 1px solid rgba(123,216,166,.3); }
.nav-status.ferme  { color: #E88AA0; background: rgba(193,59,87,.16); border: 1px solid rgba(232,138,160,.3); }
.nav-right { display: flex; align-items: center; gap: 1.1rem; }
.nav-link {
  font-size: .78rem; font-weight: 600; letter-spacing: .02em;
  color: rgba(243,236,221,.78); transition: color .18s;
}
.nav-link:hover { color: var(--brass-lt); }
.nav-install {
  background: none; border: 1px solid var(--line);
  color: var(--brass-lt); padding: .42rem .8rem; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  font-family: var(--tg-body); transition: border-color .18s, color .18s;
}
.nav-install:hover { border-color: var(--brass); color: var(--brass); }
.nav-cart {
  background: var(--brass); color: var(--night);
  padding: .42rem .9rem; border-radius: 999px;
  font-size: .74rem; font-weight: 800; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
  transition: background .18s;
}
.nav-cart:hover { background: var(--brass-lt); }
.cart-badge {
  background: var(--night); color: var(--brass);
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  font-size: .66rem; display: inline-flex; align-items: center; justify-content: center;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 1.6rem 4rem; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14,19,34,.78) 0%, rgba(14,19,34,.55) 40%, rgba(14,19,34,.92) 100%),
    radial-gradient(120% 90% at 15% 30%, rgba(30,44,82,.45), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 640px; margin: 0 auto; width: 100%;
  animation: heroUp .9s cubic-bezier(.2,.7,.2,1) both;
}
.hero-logo { height: 264px; width: auto; margin-bottom: 1.5rem; opacity: .7; }
.hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--tg-display); font-weight: 500;
  font-size: clamp(2.7rem, 8vw, 5rem); line-height: .98; letter-spacing: -.015em;
  margin-bottom: 1.2rem;
}
.hero-title em { color: var(--brass-lt); }
.hero-sub {
  font-size: clamp(.95rem, 2.4vw, 1.08rem); color: rgba(243,236,221,.82);
  max-width: 34rem; margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.4rem; }
.hero-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .84rem; font-weight: 600; color: rgba(243,236,221,.6);
}
.hero-phone:hover { color: var(--brass-lt); }
.hero .bogolan-band {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
}
@keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* ── BOUTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .82rem 1.5rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer; transition: transform .16s, background .18s, border-color .18s, color .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-brass { background: var(--brass); color: var(--night); }
.btn-brass:hover { background: var(--brass-lt); }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-lt); }

/* ── STRIP ───────────────────────────────────────── */
.strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 900px; margin: 0 auto; padding: 2.2rem 1.6rem;
  border-bottom: 1px solid var(--line-soft);
}
.strip-item { text-align: center; padding: 0 .6rem; }
.strip-item + .strip-item { border-left: 1px solid var(--line-soft); }
.strip-item b {
  display: block; font-family: var(--tg-display); font-weight: 500;
  font-size: 1.5rem; color: var(--brass-lt); line-height: 1.1;
}
.strip-item span { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

/* ── SECTIONS ────────────────────────────────────── */
.section { max-width: 1080px; margin: 0 auto; padding: 4.5rem 1.6rem; }
.s-eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass); text-align: center; margin-bottom: .7rem;
}
.s-title {
  font-family: var(--tg-display); font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem); line-height: 1.05; letter-spacing: -.01em;
  text-align: center; margin-bottom: 2.6rem;
}
.section-cta { text-align: center; margin-top: 2.6rem; }

/* ── SPÉCIALITÉS ─────────────────────────────────── */
.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.spec-card {
  background: var(--night-2); border: 1px solid var(--line-soft);
  border-radius: 14px; overflow: hidden;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.spec-card:hover {
  transform: translateY(-5px); border-color: var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.spec-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--indigo); }
.spec-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.spec-card:hover .spec-photo img { transform: scale(1.06); }
.spec-info { padding: 1.1rem 1.2rem 1.3rem; }
.spec-info h3 {
  font-family: var(--tg-display); font-weight: 500; font-size: 1.18rem;
  line-height: 1.15; margin-bottom: .35rem;
}
.spec-info p { font-size: .8rem; color: var(--muted); line-height: 1.55; margin-bottom: .7rem; min-height: 2.2em; }
.spec-price {
  font-weight: 800; font-size: .92rem; color: var(--brass-lt); letter-spacing: .01em;
}

/* ── INFOS (horaires + trouver) ──────────────────── */
.infos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.info-card {
  background: var(--night-2); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 1.8rem 1.9rem;
}
.info-card h3 {
  font-family: var(--tg-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 1.1rem;
}
.horaires-block { display: flex; flex-direction: column; gap: .1rem; }
.h-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0; border-bottom: 1px solid var(--line-soft); font-size: .88rem;
}
.h-row:last-child { border-bottom: none; }
.h-day { color: var(--cream); font-weight: 600; }
.h-time { color: var(--muted); }
.info-card .btn { margin-top: 1.2rem; }
.info-card p { color: var(--muted); font-size: .88rem; }

/* ── TRAITEUR ────────────────────────────────────── */
.traiteur {
  max-width: 1080px; margin: 0 auto; padding: 0 1.6rem 4.5rem;
}
.traiteur-card {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--indigo), var(--night-2));
  border: 1px solid var(--line); border-radius: 16px; padding: 2rem 2.2rem;
}
.traiteur-card .t-emoji { font-size: 2.6rem; line-height: 1; }
.traiteur-card h3 { font-family: var(--tg-display); font-weight: 500; font-size: 1.4rem; margin-bottom: .4rem; }
.traiteur-card p { color: rgba(243,236,221,.75); font-size: .9rem; max-width: 40rem; margin-bottom: .9rem; }
.traiteur-links { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.traiteur-links a { color: var(--brass-lt); font-size: .84rem; font-weight: 700; }
.traiteur-links a.muted { color: var(--muted); }
.t-body { flex: 1; min-width: 240px; }

/* ── CLOSING CTA ─────────────────────────────────── */
.closing {
  position: relative; text-align: center;
  padding: 5rem 1.6rem; overflow: hidden;
  background: radial-gradient(120% 120% at 50% 0%, var(--indigo), var(--night) 70%);
  border-top: 1px solid var(--line);
}
.closing h2 {
  font-family: var(--tg-display); font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.04; margin-bottom: 1rem;
}
.closing h2 em { color: var(--brass-lt); }
.closing p { color: var(--muted); max-width: 32rem; margin: 0 auto 2rem; font-size: .92rem; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  text-align: center; padding: 2.2rem 1.6rem;
  font-size: .78rem; color: var(--muted); border-top: 1px solid var(--line-soft);
}
.footer a { color: var(--brass-lt); }

/* ── REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   PAGE MENU
   ============================================================ */
.menu-header { padding: 6.5rem 1.6rem 1.8rem; text-align: center; }
.menu-header-inner { max-width: 900px; margin: 0 auto; }
.menu-header-sub {
  font-size: .7rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass); margin-bottom: .5rem;
}
.menu-header h1 {
  font-family: var(--tg-display); font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1; letter-spacing: -.01em;
}
.menu-header h1 em { color: var(--brass-lt); }

.cat-bar {
  position: sticky; top: 54px; z-index: 40;
  display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap;
  padding: .9rem 1rem; background: rgba(14,19,34,.92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.cat-btn {
  background: none; border: 1px solid var(--line-soft); color: var(--muted);
  padding: .45rem 1.05rem; border-radius: 999px; font-size: .78rem; font-weight: 600;
  cursor: pointer; font-family: var(--tg-body); transition: all .18s;
}
.cat-btn:hover { color: var(--cream); border-color: var(--line); }
.cat-btn.active { background: var(--brass); color: var(--night); border-color: var(--brass); }

.livr-banner { text-align: center; font-size: .82rem; padding: .7rem 1rem; }
.livr-banner strong { color: var(--cream); }
.livr-info { color: var(--muted); background: var(--night-2); }
.livr-progress { color: var(--brass-lt); background: rgba(201,162,75,.1); }
.livr-progress strong { color: var(--brass-lt); }
.livr-free { color: #7BD8A6; background: rgba(46,125,82,.14); }
.livr-free strong { color: #7BD8A6; }

.menu-body { max-width: 760px; margin: 0 auto; padding: 1.6rem 1.2rem 6rem; }
.menu-cat-title {
  font-family: var(--tg-display); font-weight: 500; font-size: 1.4rem;
  color: var(--cream); margin: 1.6rem 0 .9rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
}
.menu-cat-title:first-child { margin-top: 0; }
.menu-item {
  display: flex; gap: 1rem; align-items: center;
  padding: .8rem; background: var(--night-2); border: 1px solid var(--line-soft);
  border-radius: 12px; margin-bottom: .75rem; transition: border-color .18s;
}
.menu-item:hover { border-color: var(--line); }
.mi-photo { width: 84px; height: 84px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--indigo); }
.mi-photo img { width: 100%; height: 100%; object-fit: cover; }
.mi-body { flex: 1; min-width: 0; }
.mi-name { font-family: var(--tg-display); font-weight: 500; font-size: 1.05rem; margin-bottom: .2rem; }
.mi-desc { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.mi-right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; flex-shrink: 0; }
.mi-price { font-weight: 800; font-size: .92rem; color: var(--brass-lt); white-space: nowrap; }
.add-btn {
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: var(--brass); color: var(--night); font-size: 1.35rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .18s;
}
.add-btn:hover { background: var(--brass-lt); }
.qty-inline {
  display: flex; align-items: center; gap: .3rem;
  border: 1px solid var(--line); border-radius: 999px; padding: .18rem;
}
.qi-btn {
  width: 26px; height: 26px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--indigo); color: var(--cream); font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.qi-btn.qi-add { background: var(--brass); color: var(--night); }
.qi-val { min-width: 20px; text-align: center; font-weight: 700; font-size: .85rem; color: var(--cream); }

/* placeholders dégradés (plats sans photo) */
.mi-inner, .spec-photo-inner { width: 100%; height: 100%; }
.gp1 { background: linear-gradient(135deg, #24345E, #141B2E); }
.gp2 { background: linear-gradient(135deg, #2A2140, #141B2E); }
.gp3 { background: linear-gradient(135deg, #3A2A1A, #141B2E); }
.gp4 { background: linear-gradient(135deg, #163A3A, #141B2E); }
.gp5 { background: linear-gradient(135deg, #3A1F2A, #141B2E); }
.gp6 { background: linear-gradient(135deg, #1E2C52, #141B2E); }

.float-cart {
  position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: var(--night); padding: .85rem 1.6rem; border-radius: 999px;
  font-weight: 800; font-size: .85rem; letter-spacing: .02em; z-index: 60;
  box-shadow: 0 12px 34px rgba(0,0,0,.45); display: none; align-items: center; gap: .55rem;
}
.fc-badge {
  background: var(--night); color: var(--brass); border-radius: 999px;
  min-width: 20px; height: 20px; padding: 0 6px; font-size: .72rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   PAGE COMMANDE / PANIER
   ============================================================ */
.cmd-page { max-width: 640px; margin: 0 auto; padding: 5rem 1.2rem 3rem; }
.cmd-head { margin-bottom: 1.4rem; }
.cmd-head h1 { font-family: var(--tg-display); font-weight: 500; font-size: 1.9rem; }
.cmd-head p { color: var(--muted); font-size: .85rem; }
.cart-rows { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.2rem; }
.cart-row { display: flex; gap: .9rem; align-items: center; background: var(--night-2); border: 1px solid var(--line-soft); border-radius: 12px; padding: .7rem; }
.cr-photo { width: 64px; height: 64px; border-radius: 9px; overflow: hidden; flex-shrink: 0; background: var(--indigo); }
.cr-photo img { width: 100%; height: 100%; object-fit: cover; }
.cr-inner { width: 100%; height: 100%; }
.cr-body { flex: 1; min-width: 0; }
.cr-name { font-family: var(--tg-display); font-weight: 500; font-size: 1rem; }
.cr-price { font-size: .78rem; color: var(--muted); }
.qty-ctrl { display: flex; align-items: center; gap: .4rem; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: var(--indigo); color: var(--cream); font-size: 1.1rem; line-height: 1; cursor: pointer; }
.qty-val { min-width: 22px; text-align: center; font-weight: 700; color: var(--cream); }
.total-box { background: var(--night-2); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1rem 1.2rem; margin-bottom: 1rem; }
.t-row { display: flex; justify-content: space-between; font-size: .88rem; padding: .35rem 0; color: var(--cream); }
.t-row span:first-child { color: var(--muted); }
.t-row.final { border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .7rem; font-weight: 800; font-size: 1.05rem; }
.t-row.final span:first-child { color: var(--cream); }
.t-row.final span:last-child { color: var(--brass-lt); }
.form-block { background: var(--night-2); border: 1px solid var(--line-soft); border-radius: 12px; padding: 1.2rem; margin-bottom: 1rem; }
.form-block-title { font-family: var(--tg-display); font-weight: 500; font-size: 1.15rem; margin-bottom: 1rem; }
.saved-banner { background: rgba(201,162,75,.1); border: 1px solid var(--line); border-radius: 8px; padding: .6rem .8rem; font-size: .82rem; margin-bottom: .9rem; color: var(--cream); }
.saved-clear { background: none; border: none; color: var(--brass-lt); font-weight: 700; cursor: pointer; text-decoration: underline; font-size: .8rem; }
.fields { display: flex; flex-direction: column; gap: .9rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { padding: .7rem .85rem; border: 1px solid var(--line); background: var(--night); color: var(--cream); border-radius: 8px; font-family: inherit; font-size: .9rem; }
.field input::placeholder, .field textarea::placeholder { color: rgba(243,236,221,.35); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); outline: none; }
.field textarea { resize: vertical; min-height: 80px; }
.geo-btn { margin-top: .5rem; background: none; border: 1px solid var(--line); color: var(--brass-lt); padding: .6rem; border-radius: 8px; font-size: .8rem; font-weight: 600; cursor: pointer; font-family: inherit; }
.geo-btn.active { border-color: #7BD8A6; color: #7BD8A6; }
.geo-status { font-size: .76rem; color: var(--muted); margin-top: .4rem; }
.geo-toggle-row { margin-top: .6rem; display: flex; align-items: center; justify-content: space-between; gap: .8rem; padding: .65rem .8rem; border: 1px solid var(--line); border-radius: 8px; background: var(--night); }
.geo-toggle-label { font-size: .78rem; font-weight: 600; color: var(--cream); }
.geo-toggle { position: relative; display: inline-block; width: 46px; height: 27px; flex-shrink: 0; }
.geo-toggle input { opacity: 0; width: 0; height: 0; }
.geo-toggle-slider { position: absolute; cursor: pointer; inset: 0; background: rgba(243,236,221,.18); transition: background .2s; border-radius: 27px; }
.geo-toggle-slider::before { content: ""; position: absolute; height: 23px; width: 23px; left: 2px; top: 2px; background: #fff; transition: transform .2s; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.geo-toggle input:checked + .geo-toggle-slider { background: #3E9B6B; }
.geo-toggle input:checked + .geo-toggle-slider::before { transform: translateX(19px); }
.geo-hint { font-size: .74rem; color: var(--muted); line-height: 1.5; margin-top: .5rem; background: rgba(201,162,75,.08); border-left: 3px solid var(--brass); padding: .55rem .7rem; border-radius: 0 6px 6px 0; }
.wa-note { background: linear-gradient(120deg, var(--indigo), var(--night-2)); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.2rem; font-size: .82rem; color: rgba(243,236,221,.8); margin-bottom: 1rem; }
.wa-note strong { display: block; color: var(--brass-lt); font-family: var(--tg-display); font-weight: 500; margin-bottom: .3rem; }
.wa-btn { width: 100%; background: var(--brass); color: var(--night); border: none; padding: 1rem; border-radius: 999px; font-size: .92rem; font-weight: 800; cursor: pointer; transition: background .18s; }
.wa-btn:hover { background: var(--brass-lt); }
.wa-btn:disabled { background: var(--muted); cursor: not-allowed; }
.empty-state { text-align: center; padding: 5rem 1.5rem; }
.empty-state h2 { font-family: var(--tg-display); font-weight: 500; font-size: 1.5rem; margin-bottom: .5rem; }
.empty-state p { color: var(--muted); margin-bottom: 1.4rem; }
.btn-fill { display: inline-block; background: var(--brass); color: var(--night); padding: .8rem 1.6rem; border-radius: 999px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; }
.confirm-screen { text-align: center; padding: 4rem 1.5rem; }
.confirm-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.confirm-title { font-family: var(--tg-display); font-weight: 500; font-size: 1.6rem; margin-bottom: .6rem; }
.confirm-msg { color: var(--muted); margin-bottom: 1.6rem; line-height: 1.6; }

/* ── BOUTON FLOTTANT WHATSAPP ────────────────────── */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.2rem; z-index: 70;
  width: 52px; height: 52px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .18s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 860px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .infos-grid { grid-template-columns: 1fr; }
  .hero-logo { height: 132px; opacity: .55; }
}
@media (max-width: 620px) {
  .nav { padding: .6rem 1rem; }
  .nav-brand img { height: 34px; }
  .nav-right { gap: .7rem; }
  .nav-link[data-hide-sm] { display: none; }
  .spec-grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .spec-info { padding: .9rem 1rem 1.1rem; }
  .spec-info h3 { font-size: 1.02rem; }
  .section { padding: 3.4rem 1.2rem; }
  .traiteur-card { padding: 1.6rem; }
  .wa-float { opacity: .7; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-inner { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .spec-card:hover .spec-photo img { transform: none; }
  html { scroll-behavior: auto; }
}
