/* ==========================================================================
   IFC GROUPE — Ivorian Fried Chicken
   Feuille de style principale
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* Couleurs de marque */
  --ink:        #0E0B09;
  --ink-2:      #171210;
  --ink-3:      #221A16;
  --cream:      #FFF6EC;
  --sand:       #F4E7D6;
  --orange:     #FF7A00;
  --orange-2:   #FF9A2E;
  --flame:      #E5451F;
  --gold:       #F2B544;
  --green:      #0F6B4F;
  --green-2:    #14A37A;

  /* Surfaces */
  --bg:         #0E0B09;
  --bg-soft:    #16110E;
  --card:       rgba(255, 255, 255, .045);
  --card-2:     rgba(255, 255, 255, .07);
  --line:       rgba(255, 246, 236, .12);
  --line-2:     rgba(255, 246, 236, .22);

  /* Texte */
  --txt:        #FFF6EC;
  --txt-soft:   rgba(255, 246, 236, .68);
  --txt-mute:   rgba(255, 246, 236, .45);

  /* Typo */
  --font-display: 'Anton', 'Haettenschweiler', 'Arial Narrow', Impact, sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-hand:    'Caveat', 'Brush Script MT', cursive;

  /* Rythme */
  --wrap: 1280px;
  --gut: clamp(20px, 4vw, 56px);
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Effets */
  --shadow: 0 24px 60px -24px rgba(0,0,0,.75);
  --shadow-lg: 0 40px 100px -30px rgba(0,0,0,.85);
  --glow: 0 0 0 1px rgba(255,122,0,.35), 0 18px 50px -18px rgba(255,122,0,.55);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

:root[data-theme="light"] {
  --bg:      #FFF9F2;
  --bg-soft: #FFF2E4;
  --ink:     #FFF9F2;
  --card:    rgba(14, 11, 9, .04);
  --card-2:  rgba(14, 11, 9, .07);
  --line:    rgba(14, 11, 9, .12);
  --line-2:  rgba(14, 11, 9, .22);
  --txt:     #1A1411;
  --txt-soft: rgba(26, 20, 17, .70);
  --txt-mute: rgba(26, 20, 17, .48);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { object-fit: cover; background: linear-gradient(135deg, #2a1d14, #120d0a); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--orange); color: #fff; }

/* Barre de défilement */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,122,0,.45); border-radius: 99px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ---------- 3. Typographie ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: .95; letter-spacing: .01em; text-transform: uppercase; }
.h-xxl { font-size: clamp(2.6rem, 7.4vw, 6rem); }
.h-xl  { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.h-lg  { font-size: clamp(1.9rem, 4vw, 3.1rem); }
.h-md  { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.h-sm  { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 800; letter-spacing: .26em;
  text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: linear-gradient(90deg, var(--flame), var(--gold)); }
.eyebrow.center::after { content: ""; width: 30px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--flame)); }

.hand { font-family: var(--font-hand); font-size: 1.9em; color: var(--gold); text-transform: none; letter-spacing: 0; line-height: 1; }
.lead { font-size: clamp(1rem, 1.35vw, 1.15rem); color: var(--txt-soft); max-width: 62ch; }
.small { font-size: .84rem; color: var(--txt-mute); }
.grad { background: linear-gradient(100deg, var(--gold) 0%, var(--orange) 45%, var(--flame) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.outline-txt { color: transparent; -webkit-text-stroke: 1.5px var(--line-2); }

/* ---------- 4. Layout ---------- */
.wrap { width: min(100% - var(--gut) * 2, var(--wrap)); margin-inline: auto; }
.wrap-lg { width: min(100% - var(--gut) * 2, 1520px); margin-inline: auto; }
section { position: relative; }
.section { padding: clamp(64px, 9vw, 132px) 0; }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: clamp(32px, 5vw, 62px); }
.section-head .txt { max-width: 640px; }
.section-head h2 { margin: 14px 0 16px; }
.center { text-align: center; }
.center .section-head { flex-direction: column; align-items: center; text-align: center; }
.grid { display: grid; gap: clamp(16px, 2vw, 28px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; }

/* ---------- 5. Boutons ---------- */
.btn {
  --btn-bg: linear-gradient(100deg, var(--flame), var(--orange) 60%, var(--gold));
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.7rem; border-radius: 999px;
  font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--btn-bg); color: #17110C;
  box-shadow: 0 14px 34px -14px rgba(255,122,0,.85);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), filter .3s;
  overflow: hidden; white-space: nowrap;
}
.btn::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.45), transparent 80%);
  transform: translateX(-120%); transition: transform .7s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -14px rgba(255,122,0,.95); }
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-ghost { background: transparent; color: var(--txt); box-shadow: inset 0 0 0 1.5px var(--line-2); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--orange); color: var(--orange); }
.btn-dark { background: var(--ink-2); color: var(--cream); box-shadow: inset 0 0 0 1px var(--line); }
.btn-sm { padding: .68rem 1.15rem; font-size: .7rem; }
.btn-lg { padding: 1.2rem 2.3rem; font-size: .88rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.btn-wa { background: linear-gradient(100deg, #128C7E, #25D366); color: #04160F; box-shadow: 0 14px 34px -14px rgba(37,211,102,.8); }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.link-arrow svg { transition: transform .35s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- 6. Badges / pills ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .38rem;
  padding: .3rem .7rem; border-radius: 999px;
  font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,122,0,.14); color: var(--orange); box-shadow: inset 0 0 0 1px rgba(255,122,0,.3);
}
.badge.green { background: rgba(15,107,79,.18); color: #4ED9A4; box-shadow: inset 0 0 0 1px rgba(78,217,164,.3); }
.badge.red   { background: rgba(229,69,31,.16); color: #FF8360; box-shadow: inset 0 0 0 1px rgba(255,131,96,.3); }
.badge.gold  { background: rgba(242,181,68,.16); color: var(--gold); box-shadow: inset 0 0 0 1px rgba(242,181,68,.3); }
.badge.neutral { background: var(--card-2); color: var(--txt-soft); box-shadow: inset 0 0 0 1px var(--line); }

/* ---------- 7. Header ---------- */
.topbar {
  background: linear-gradient(90deg, var(--flame), var(--orange) 55%, var(--gold));
  color: #1A1109; font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  padding: .5rem 0; overflow: hidden;
}
.topbar .wrap-lg { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topbar .tb-links { display: flex; gap: 18px; }
.topbar a:hover { text-decoration: underline; }

.header {
  position: sticky; top: 0; z-index: 90;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
}
.header.scrolled { background: color-mix(in srgb, var(--bg) 94%, transparent); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: #0B0908; overflow: hidden;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--gold);
  box-shadow: 0 10px 26px -12px rgba(242,181,68,.7), inset 0 0 0 1px rgba(242,181,68,.35);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.logo-mark { overflow: hidden; }
.logo-mark img { width: 100%; height: 100%; object-fit: cover; object-position: 42% 42%; background: none; }

/* Logo large (bandeau IFC complet) utilisé dans l'en-tête et le pied de page */
.logo-img {
  height: 52px; width: auto; border-radius: 12px; background: none;
  padding: 3px 6px; box-shadow: inset 0 0 0 1px rgba(255,246,236,.12), 0 8px 22px -14px rgba(0,0,0,.7);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.logo:hover .logo-img, a.logo:hover > .logo-img { transform: scale(1.05); box-shadow: 0 12px 28px -12px rgba(255,122,0,.95); }
a.logo > .logo-img { display: block; }
@media (max-width: 560px) { .logo-img { height: 44px; } }
.logo:hover .logo-mark { transform: scale(1.06); box-shadow: 0 14px 32px -12px rgba(242,181,68,.95), inset 0 0 0 1px rgba(242,181,68,.6); }
.logo-txt { line-height: 1.05; }
.logo-txt strong { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .02em; display: block; }
.logo-txt span { font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--txt-mute); font-weight: 700; }
@media (max-width: 560px) { .logo-txt strong { font-size: 1.05rem; } .logo-txt span { font-size: .5rem; letter-spacing: .18em; } .logo-mark { width: 44px; height: 44px; } }

.menu { display: flex; align-items: center; gap: 2px; }
.menu > li > a, .menu > li > button {
  display: flex; align-items: center; gap: .3rem; white-space: nowrap;
  padding: .7rem .62rem; border-radius: 999px;
  font-size: .74rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
  color: var(--txt-soft); transition: color .25s, background .25s;
}
@media (min-width: 1400px) { .menu > li > a, .menu > li > button { padding: .7rem .8rem; font-size: .78rem; } }
/* Écrans intermédiaires : « Galerie » et « Fidélité » restent accessibles par le pied de page et le menu mobile */
@media (max-width: 1399px) { .menu > li:nth-child(7), .menu > li:nth-child(8) { display: none; } }
.menu > li > a:hover, .menu > li > button:hover, .menu > li.active > a { color: var(--txt); background: var(--card); }
.menu .caret { transition: transform .3s var(--ease); }
.menu li:hover .caret { transform: rotate(180deg); }

.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 12px);
  min-width: 640px; padding: 22px; border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--bg-soft) 96%, transparent);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  backdrop-filter: blur(24px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .35s var(--ease-out), visibility .3s;
}
.drop.wide { min-width: 760px; grid-template-columns: repeat(3, 1fr); }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.drop a { display: flex; gap: 12px; padding: 11px 12px; border-radius: 14px; transition: background .25s; }
.drop a:hover { background: var(--card-2); }
.drop .ic { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(140deg, rgba(229,69,31,.25), rgba(242,181,68,.2)); display: grid; place-items: center; flex-shrink: 0; font-size: 1rem; }
.drop b { display: block; font-size: .84rem; font-weight: 800; }
.drop small { color: var(--txt-mute); font-size: .74rem; line-height: 1.35; display: block; }
.drop-title { grid-column: 1 / -1; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--txt-mute); font-weight: 800; padding: 4px 12px 8px; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 999px;
  display: grid; place-items: center; color: var(--txt-soft);
  box-shadow: inset 0 0 0 1px var(--line); transition: .28s var(--ease);
}
.icon-btn:hover { color: var(--txt); box-shadow: inset 0 0 0 1px var(--line-2); background: var(--card); }
.cart-count {
  position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; background: var(--flame); color: #fff;
  font-size: .64rem; font-weight: 800; display: grid; place-items: center;
  border: 2px solid var(--bg); transform: scale(0); transition: transform .35s var(--ease-out);
}
.cart-count.on { transform: scale(1); }
.burger { display: none; }

/* Drawer mobile */
.mobile-nav {
  position: fixed; inset: 0; z-index: 120; background: var(--bg);
  padding: 20px var(--gut) 40px; overflow-y: auto;
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary { list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--font-display); font-size: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav details[open] summary { color: var(--orange); }
.mobile-nav .m-sub { padding: 0 0 16px; display: grid; gap: 2px; }
.mobile-nav .m-sub a { padding: 9px 0; color: var(--txt-soft); font-size: .95rem; }
.mobile-nav > a.m-link { display: block; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 1.5rem; }

/* ---------- 8. Hero ---------- */
.hero { position: relative; min-height: min(calc(100svh - 112px), 900px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-slide { opacity: 0; transform: scale(1.12); transition: opacity 1.6s var(--ease), transform 9s linear; }
.hero-slide.on { opacity: 1; transform: scale(1); }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(14,11,9,.9) 0%, rgba(14,11,9,.55) 42%, rgba(14,11,9,.1) 78%),
    linear-gradient(180deg, rgba(14,11,9,.7) 0%, rgba(14,11,9,.15) 32%, rgba(14,11,9,.9) 90%),
    radial-gradient(120% 80% at 20% 100%, rgba(229,69,31,.32), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; padding: 96px 0 clamp(40px, 5vw, 72px); }
.hero h1 { margin: 14px 0 18px; text-shadow: 0 12px 50px rgba(0,0,0,.5); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: block; transform: translateY(105%); animation: riseIn 1s var(--ease-out) forwards; }
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes riseIn { to { transform: translateY(0); } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-meta div strong { font-family: var(--font-display); font-size: 2rem; display: block; line-height: 1; }
.hero-meta div span { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--txt-mute); }
.hero-dots { position: absolute; right: var(--gut); bottom: 40px; z-index: 3; display: flex; flex-direction: column; gap: 10px; }
.hero-dots button { width: 9px; height: 9px; border-radius: 99px; background: rgba(255,246,236,.3); transition: .35s var(--ease); }
.hero-dots button.on { background: var(--orange); height: 28px; }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%); display: grid; place-items: center; gap: 8px; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--txt-mute); }
.scroll-hint i { display: block; width: 1px; height: 42px; background: linear-gradient(180deg, var(--orange), transparent); animation: pulseDown 2s infinite; }
@keyframes pulseDown { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Écrans peu hauts : on resserre le hero pour que les boutons restent visibles */
@media (max-height: 820px) and (min-width: 900px) {
  .hero .h-xxl { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
  .hero-inner { padding-top: 74px; }
  .hero-meta { margin-top: 22px; padding-top: 16px; gap: 22px; }
  .hero-meta div strong { font-size: 1.6rem; }
}

/* Bandeau défilant */
.marquee { overflow: hidden; padding: 16px 0; background: linear-gradient(90deg, var(--flame), var(--orange) 50%, var(--gold)); }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: slide 32s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.6rem); color: #1A1109; display: flex; align-items: center; gap: 44px; white-space: nowrap; }
.marquee-track span::after { content: "★"; font-size: .8em; opacity: .55; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee.dark { background: var(--ink-2); border-block: 1px solid var(--line); }
.marquee.dark .marquee-track span { color: var(--txt-mute); }

/* ---------- 9. Cartes ---------- */
.card {
  position: relative; border-radius: var(--r-lg); background: var(--card);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .4s, background .4s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--card-2); }
.card-pad { padding: clamp(20px, 2.4vw, 30px); }
.card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; transition: transform 1s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.07); }
.card-img .badge { position: absolute; top: 14px; left: 14px; backdrop-filter: blur(8px); }

/* Carte univers (accueil) */
.univers-card { display: block; position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 320px; }
.univers-card img { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform 1.1s var(--ease-out); }
.univers-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,11,9,.05) 30%, rgba(14,11,9,.92)); }
.univers-card:hover img { transform: scale(1.08); }
.univers-card .u-body { position: absolute; inset: auto 0 0 0; padding: 24px; z-index: 2; }
.univers-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.univers-card p { font-size: .84rem; color: var(--txt-soft); }
.univers-card .u-go { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 999px; background: rgba(255,246,236,.14); backdrop-filter: blur(10px); display: grid; place-items: center; z-index: 2; transition: .4s var(--ease-out); }
.univers-card:hover .u-go { background: var(--orange); color: #1A1109; transform: rotate(-45deg); }

/* Stat */
.stat { text-align: center; padding: 28px 14px; }
.stat b { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); display: block; line-height: 1; background: linear-gradient(140deg, var(--gold), var(--flame)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--txt-mute); }

/* ---------- 10. Menu / produits ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 8px; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
@media (max-width: 700px) { .filters { flex-wrap: nowrap; overflow-x: auto; } }
.chip {
  flex-shrink: 0; padding: .62rem 1.1rem; border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--txt-soft); box-shadow: inset 0 0 0 1px var(--line);
  transition: .3s var(--ease); white-space: nowrap;
}
.chip:hover { color: var(--txt); box-shadow: inset 0 0 0 1px var(--line-2); }
.chip.on { background: linear-gradient(100deg, var(--flame), var(--orange)); color: #1A1109; box-shadow: 0 10px 26px -12px rgba(255,122,0,.9); }

.search-box { position: relative; flex: 1; min-width: 220px; }
.search-box input { width: 100%; padding: .85rem 1rem .85rem 2.8rem; border-radius: 999px; background: var(--card); border: 1px solid var(--line); outline: none; transition: .3s; }
.search-box input:focus { border-color: var(--orange); background: var(--card-2); }
.search-box svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--txt-mute); }

.dish { display: flex; flex-direction: column; }
.dish .card-img { aspect-ratio: 1/1; cursor: pointer; }
.dish .d-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.dish h3 { font-size: 1.12rem; }
.dish .d-desc { font-size: .82rem; color: var(--txt-mute); line-height: 1.5; flex: 1; }
.dish .d-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.price { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); }
.price small { font-size: .55em; color: var(--txt-mute); margin-left: 3px; }
.price del { font-size: .55em; color: var(--txt-mute); margin-right: 6px; }
.add-btn { width: 42px; height: 42px; border-radius: 999px; background: linear-gradient(140deg, var(--flame), var(--orange)); color: #1A1109; display: grid; place-items: center; transition: .35s var(--ease-out); flex-shrink: 0; }
.add-btn:hover { transform: rotate(90deg) scale(1.1); }
.add-btn.done { background: #2FBF71; }

/* Ligne de carte (style menu papier) */
.menu-line { display: flex; align-items: baseline; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.menu-line .ml-name { font-weight: 700; }
.menu-line .ml-dot { flex: 1; border-bottom: 1px dotted var(--line-2); transform: translateY(-4px); }
.menu-line .ml-desc { display: block; font-size: .8rem; color: var(--txt-mute); font-weight: 400; }

/* ---------- 11. Panier ---------- */
.overlay { position: fixed; inset: 0; z-index: 130; background: rgba(6,4,3,.72); backdrop-filter: blur(6px); opacity: 0; visibility: hidden; transition: .4s var(--ease); }
.overlay.on { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 140; width: min(430px, 100%);
  background: var(--bg-soft); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; transform: translateX(101%);
  transition: transform .5s var(--ease-out);
}
.cart-drawer.on { transform: translateX(0); }
.cart-head { padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cart-items { flex: 1; overflow-y: auto; padding: 18px 24px; display: grid; gap: 14px; align-content: start; }
.cart-item { display: grid; grid-template-columns: 66px 1fr auto; gap: 14px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 66px; height: 66px; border-radius: 14px; }
.cart-item b { font-size: .9rem; display: block; }
.cart-item .ci-price { font-size: .82rem; color: var(--gold); font-weight: 700; }
.qty { display: inline-flex; align-items: center; gap: 2px; background: var(--card); border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line); }
.qty button { width: 28px; height: 28px; border-radius: 999px; display: grid; place-items: center; color: var(--txt-soft); transition: .25s; }
.qty button:hover { color: var(--orange); background: var(--card-2); }
.qty span { min-width: 22px; text-align: center; font-size: .84rem; font-weight: 800; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); background: var(--ink-2); }
.cart-line { display: flex; justify-content: space-between; font-size: .88rem; color: var(--txt-soft); margin-bottom: 8px; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin: 12px 0 18px; padding-top: 14px; border-top: 1px dashed var(--line); }
.cart-total b { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--txt-mute); }
.empty-state .em { font-size: 3rem; margin-bottom: 12px; display: block; }

/* ---------- 12. Formulaires ---------- */
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-mute); }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1.05rem; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line); outline: none;
  transition: border-color .3s, background .3s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background: var(--card-2); }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23FF7A00' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field .hint { font-size: .74rem; color: var(--txt-mute); }
.field.err input, .field.err select, .field.err textarea { border-color: var(--flame); }
.field .err-msg { font-size: .74rem; color: #FF8360; display: none; }
.field.err .err-msg { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; }
.opt {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 12px; border-radius: 16px; cursor: pointer; text-align: center;
  background: var(--card); box-shadow: inset 0 0 0 1px var(--line); transition: .3s var(--ease);
}
.opt:hover { box-shadow: inset 0 0 0 1px var(--line-2); }
.opt input { position: absolute; opacity: 0; }
.opt .o-ic { font-size: 1.5rem; }
.opt b { font-size: .82rem; }
.opt small { font-size: .68rem; color: var(--txt-mute); }
.opt:has(input:checked) { background: rgba(255,122,0,.12); box-shadow: inset 0 0 0 1.5px var(--orange); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--txt-soft); cursor: pointer; }
.check input { margin-top: 4px; accent-color: var(--orange); width: 16px; height: 16px; }

/* Étapes */
.steps { display: flex; gap: 8px; margin-bottom: 30px; flex-wrap: wrap; }
.step { flex: 1; min-width: 120px; padding: 12px 14px; border-radius: 14px; background: var(--card); box-shadow: inset 0 0 0 1px var(--line); font-size: .76rem; display: flex; gap: 10px; align-items: center; transition: .35s; }
.step i { width: 24px; height: 24px; border-radius: 999px; background: var(--card-2); display: grid; place-items: center; font-style: normal; font-size: .72rem; font-weight: 800; flex-shrink: 0; }
.step.on { background: rgba(255,122,0,.1); box-shadow: inset 0 0 0 1.5px var(--orange); color: var(--txt); }
.step.on i { background: var(--orange); color: #1A1109; }
.step.done i { background: #2FBF71; color: #06210F; }

/* ---------- 13. Timeline ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--flame), var(--gold), transparent); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item::before { content: ""; position: absolute; left: -34px; top: 6px; width: 20px; height: 20px; border-radius: 999px; background: var(--bg); box-shadow: inset 0 0 0 3px var(--orange); }
.tl-item .yr { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); line-height: 1; }
.tl-item h3 { font-size: 1.15rem; margin: 8px 0 8px; }

/* ---------- 14. Onglets & accordéon ---------- */
.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); overflow-x: auto; margin-bottom: 28px; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { padding: .85rem 1.15rem; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--txt-mute); border-bottom: 2px solid transparent; white-space: nowrap; transition: .3s; }
.tab:hover { color: var(--txt); }
.tab.on { color: var(--orange); border-bottom-color: var(--orange); }
.tab-panel { display: none; animation: fadeUp .5s var(--ease-out); }
.tab-panel.on { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.acc { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-weight: 700; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary i { font-style: normal; color: var(--orange); transition: transform .35s var(--ease); flex-shrink: 0; }
.acc[open] summary i { transform: rotate(45deg); }
.acc .acc-body { padding-bottom: 22px; color: var(--txt-soft); font-size: .92rem; }

/* ---------- 15. Galerie ---------- */
.gallery { columns: 3; column-gap: 16px; }
.gallery figure { break-inside: avoid; margin-bottom: 16px; position: relative; border-radius: var(--r); overflow: hidden; cursor: zoom-in; }
.gallery img { width: 100%; transition: transform 1s var(--ease-out), filter .5s; }
.gallery figure:hover img { transform: scale(1.06); filter: brightness(1.08); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: 30px 16px 14px; font-size: .8rem; font-weight: 700; background: linear-gradient(180deg, transparent, rgba(14,11,9,.9)); opacity: 0; transform: translateY(10px); transition: .4s var(--ease-out); }
.gallery figure:hover figcaption { opacity: 1; transform: none; }

.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,4,3,.94); display: grid; place-items: center; padding: 40px 20px; opacity: 0; visibility: hidden; transition: .35s; }
.lightbox.on { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 22px; right: 22px; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev { left: 20px; } .lightbox .lb-next { right: 20px; }
.lightbox .lb-cap { margin-top: 16px; text-align: center; color: var(--txt-soft); font-size: .86rem; }

/* ---------- 16. Avis ---------- */
.review { padding: 26px; border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); }
.review .stars { color: var(--gold); letter-spacing: .1em; margin-bottom: 12px; }
.review p { color: var(--txt-soft); font-size: .94rem; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review .av { width: 42px; height: 42px; border-radius: 999px; background: linear-gradient(140deg, var(--flame), var(--gold)); display: grid; place-items: center; font-weight: 800; color: #1A1109; flex-shrink: 0; }
.review .who b { display: block; font-size: .88rem; }
.review .who span { font-size: .74rem; color: var(--txt-mute); }

.slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 14px; scrollbar-width: none; }
.slider::-webkit-scrollbar { display: none; }
.slider > * { scroll-snap-align: start; flex: 0 0 min(400px, 84vw); }

/* ---------- 17. Bandeau CTA ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(40px, 6vw, 80px); text-align: center; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(229,69,31,.9), rgba(14,11,9,.85)); }
.cta-band > * { position: relative; z-index: 2; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: clamp(50px, 6vw, 84px) 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr) 1.4fr; gap: 36px; }
.footer h4 { font-size: .8rem; letter-spacing: .2em; margin-bottom: 18px; color: var(--txt); font-family: var(--font-body); font-weight: 800; }
.footer a { color: var(--txt-mute); font-size: .86rem; display: block; padding: 5px 0; transition: color .25s, transform .25s; }
.footer a:hover { color: var(--orange); transform: translateX(4px); }
.footer .socials { display: flex; gap: 10px; margin-top: 18px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; box-shadow: inset 0 0 0 1px var(--line); transition: .3s; padding: 0; }
.footer .socials a:hover { background: var(--orange); color: #1A1109; transform: translateY(-3px); }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; padding: .8rem 1rem; border-radius: 999px; background: var(--card); border: 1px solid var(--line); outline: none; font-size: .86rem; }
.newsletter input:focus { border-color: var(--orange); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .78rem; color: var(--txt-mute); }
.footer-bottom .fb-links { display: flex; gap: 18px; }
.footer-bottom a { display: inline; padding: 0; }

/* ---------- 19. Flottants ---------- */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: grid; gap: 10px; justify-items: end; }
.fab {
  width: 56px; height: 56px; border-radius: 999px; display: grid; place-items: center;
  box-shadow: var(--shadow); transition: .35s var(--ease-out); position: relative;
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab-wa { background: linear-gradient(140deg, #25D366, #128C7E); color: #fff; }
.fab-wa::before { content: ""; position: absolute; inset: 0; border-radius: 999px; border: 2px solid #25D366; animation: ring 2.4s infinite; }
@keyframes ring { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.6); opacity: 0; } }
.fab-top { background: var(--ink-2); color: var(--txt); box-shadow: inset 0 0 0 1px var(--line); opacity: 0; pointer-events: none; }
.fab-top.on { opacity: 1; pointer-events: auto; }
.fab-label { position: absolute; right: calc(100% + 12px); white-space: nowrap; background: var(--ink-2); color: var(--txt); padding: .45rem .8rem; border-radius: 999px; font-size: .74rem; font-weight: 700; box-shadow: inset 0 0 0 1px var(--line); opacity: 0; transform: translateX(8px); transition: .3s; pointer-events: none; }
.fab:hover .fab-label { opacity: 1; transform: none; }

/* ---------- 20. Toast & modal ---------- */
.toasts { position: fixed; top: 84px; right: 18px; z-index: 210; display: grid; gap: 10px; justify-items: end; }
.toast {
  display: flex; align-items: center; gap: 12px; padding: 13px 18px; border-radius: 14px;
  background: var(--ink-2); box-shadow: var(--shadow), inset 0 0 0 1px var(--line);
  font-size: .86rem; font-weight: 600; max-width: 340px;
  animation: toastIn .45s var(--ease-out);
}
.toast.ok { box-shadow: var(--shadow), inset 0 0 0 1px rgba(47,191,113,.5); }
.toast.err { box-shadow: var(--shadow), inset 0 0 0 1px rgba(229,69,31,.5); }
.toast .t-ic { font-size: 1.1rem; }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } }

.modal { position: fixed; inset: 0; z-index: 190; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .35s; }
.modal.on { opacity: 1; visibility: visible; }
.modal-bg { position: absolute; inset: 0; background: rgba(6,4,3,.8); backdrop-filter: blur(8px); }
.modal-box {
  position: relative; z-index: 2; width: min(760px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); transform: translateY(24px) scale(.97); transition: .45s var(--ease-out);
}
.modal.on .modal-box { transform: none; }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 3; background: rgba(14,11,9,.5); backdrop-filter: blur(8px); }

/* ---------- 21. Admin ---------- */
.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-side { background: var(--bg-soft); border-right: 1px solid var(--line); padding: 22px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-side .a-nav { display: grid; gap: 3px; margin-top: 24px; }
.admin-side .a-nav button { display: flex; align-items: center; gap: 11px; padding: .75rem .9rem; border-radius: 12px; font-size: .86rem; font-weight: 600; color: var(--txt-soft); text-align: left; width: 100%; transition: .25s; }
.admin-side .a-nav button:hover { background: var(--card); color: var(--txt); }
.admin-side .a-nav button.on { background: linear-gradient(100deg, rgba(229,69,31,.22), rgba(242,181,68,.12)); color: var(--txt); box-shadow: inset 0 0 0 1px rgba(255,122,0,.3); }
.admin-main { padding: 26px clamp(18px, 3vw, 40px) 60px; }
.admin-head { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.kpi { padding: 22px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); }
.kpi span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-mute); }
.kpi b { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1.1; margin-top: 6px; }
.kpi .trend { font-size: .76rem; font-weight: 700; color: #4ED9A4; }
.table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 620px; }
thead th { text-align: left; padding: 13px 16px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--txt-mute); background: var(--card); border-bottom: 1px solid var(--line); white-space: nowrap; }
tbody td { padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--card); }
.bar-chart { display: flex; align-items: flex-end; gap: 8px; height: 190px; padding-top: 12px; }
.bar-chart .bar { flex: 1; border-radius: 8px 8px 3px 3px; background: linear-gradient(180deg, var(--orange), rgba(229,69,31,.25)); position: relative; transition: height 1s var(--ease-out); min-height: 4px; }
.bar-chart .bar span { position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); font-size: .66rem; color: var(--txt-mute); }
.login-card { width: min(420px, 100%); margin: auto; padding: 34px; border-radius: var(--r-lg); background: var(--bg-soft); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }

/* ---------- 22. Divers ---------- */
.page-hero { position: relative; padding: clamp(90px, 12vw, 150px) 0 clamp(50px, 7vw, 90px); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 80% 0%, rgba(229,69,31,.28), transparent 60%), radial-gradient(70% 90% at 0% 100%, rgba(242,181,68,.14), transparent 60%); }
.page-hero > * { position: relative; z-index: 2; }
.page-hero .bg-img { position: absolute; inset: 0; z-index: 0; opacity: .22; width: 100%; height: 100%; }
.breadcrumb { font-size: .76rem; color: var(--txt-mute); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--orange); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.split img { border-radius: var(--r-lg); width: 100%; }
.media-stack { position: relative; }
.media-stack .m2 { position: absolute; right: -6%; bottom: -12%; width: 46%; border-radius: var(--r); border: 6px solid var(--bg); box-shadow: var(--shadow); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

.info-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row .ir-ic { width: 42px; height: 42px; border-radius: 12px; background: var(--card-2); display: grid; place-items: center; flex-shrink: 0; }
.info-row b { display: block; font-size: .9rem; }
.info-row span { font-size: .84rem; color: var(--txt-mute); }

.qr-box { width: 190px; height: 190px; border-radius: var(--r); background: #fff; padding: 12px; display: grid; place-items: center; }
.noise::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

/* Bandeau de marque (logo + signature) */
.brand-band { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; }
.brand-band .bb-txt { justify-self: start; }
@media (max-width: 860px) {
  .brand-band { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .brand-band .bb-txt { justify-self: center; }
  .brand-band .lead { margin-inline: auto; }
  .brand-band .eyebrow { justify-content: center; }
  .brand-band .row { justify-content: center; }
}

/* Révélation au scroll */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease-out), transform .9s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"] { transform: scale(.94); }
[data-reveal].in { transform: none; }
.stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .05s; }
.stagger.in > *:nth-child(2) { transition-delay: .12s; }
.stagger.in > *:nth-child(3) { transition-delay: .19s; }
.stagger.in > *:nth-child(4) { transition-delay: .26s; }
.stagger.in > *:nth-child(5) { transition-delay: .33s; }
.stagger.in > *:nth-child(6) { transition-delay: .4s; }
.stagger.in > *:nth-child(7) { transition-delay: .47s; }
.stagger.in > *:nth-child(8) { transition-delay: .54s; }

/* Chargement */
.loader { position: fixed; inset: 0; z-index: 300; background: var(--bg); display: grid; place-items: center; transition: opacity .6s var(--ease), visibility .6s; }
.loader.off { opacity: 0; visibility: hidden; }
.loader .l-mark { font-family: var(--font-display); font-size: 3.4rem; background: linear-gradient(100deg, var(--gold), var(--flame)); -webkit-background-clip: text; background-clip: text; color: transparent; animation: pulseMark 1.4s infinite; }
.loader .l-logo { width: min(320px, 68vw); border-radius: 18px; background: none; animation: pulseMark 1.6s infinite; }
@keyframes pulseMark { 0%,100% { opacity: .35; transform: scale(.96); } 50% { opacity: 1; transform: scale(1.04); } }

/* ---------- 23. Responsive ---------- */
@media (max-width: 1240px) {
  .menu, .topbar .tb-links { display: none; }
  .burger { display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; }
  .admin-side .a-nav { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; }
}
@media (max-width: 900px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .media-stack .m2 { position: static; width: 100%; margin-top: 14px; border: 0; }
}
@media (max-width: 620px) {
  /* On laisse la place au menu burger : le bouton « Commander » est dans le tiroir */
  .nav-actions > .btn { display: none; }
  .nav-actions { gap: 6px; }
  .icon-btn { width: 40px; height: 40px; }
  .g-4, .g-3, .g-2 { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .hero-meta div strong { font-size: 1.5rem; }
  .hero-dots { display: none; }
  .topbar { font-size: .68rem; }
  .cart-item { grid-template-columns: 56px 1fr; }
  .cart-item img { width: 56px; height: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal], .stagger > * { opacity: 1 !important; transform: none !important; }
}

/* Impression */
@media print {
  .header, .topbar, .footer, .floaters, .cart-drawer, .overlay { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- 24. Formats multiples (Bucket, pizzas) ---------- */
.size-row { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 2px; }
.size-chip {
  padding: .34rem .66rem; border-radius: 999px;
  font-size: .68rem; font-weight: 800; letter-spacing: .04em;
  color: var(--txt-mute); box-shadow: inset 0 0 0 1px var(--line);
  transition: .25s var(--ease); white-space: nowrap;
}
.size-chip:hover { color: var(--txt); box-shadow: inset 0 0 0 1px var(--line-2); }
.size-chip.on { background: rgba(255,122,0,.15); color: var(--orange); box-shadow: inset 0 0 0 1.4px var(--orange); }
