/* ============================================================
   MELTING POT : Design system de marque
   Rouge tomate, jaune pâtes, vert basilic sur fond crème.
   Les noms de tokens sont conservés : tout l'applicatif (public,
   compte, admin, KDS) consomme ces variables sans changement.
   ============================================================ */

:root{
  /* ---- Fonds crème ---- */
  --paper:#FFF6E5;
  --cream-50:#FFFBF3;
  --cream:#FFF6E5;
  --cream-100:#FFF6E5;
  --cream-200:#FFEFD3;
  --card:#FFFFFF;

  /* ---- Rouge tomate : couleur principale de la marque ----
     Les noms --bordeaux* sont gardés pour ne rien casser ailleurs. */
  --bordeaux:#B54533;
  --bordeaux-700:#963929;
  --bordeaux-800:#7E3023;
  --bordeaux-900:#6E2A1F;
  --brick:#B54533;

  /* ---- Jaune pâtes ---- */
  --gold:#FFBE26;
  --gold-300:#FFD470;
  --gold-soft:#FFE3A6;

  /* ---- Vert basilic + divers ---- */
  --olive:#5A9A3D;
  --ink:#14100E;
  --clay:#E8C9A6;

  /* ---- Texte atténué (l'encre à opacité variable) ---- */
  --ink-80:rgba(20,16,14,.80);
  --ink-65:rgba(20,16,14,.62);
  --ink-55:rgba(20,16,14,.52);
  --ink-40:rgba(20,16,14,.38);
  --line:rgba(20,16,14,.10);
  --line-strong:rgba(20,16,14,.18);

  --cream-line:rgba(255,246,229,.18);

  /* ---- Statuts (KDS / commandes / admin) ---- */
  --st-blue:#2E5AA8;
  --st-amber:#E2A60A;
  --st-green:#4E8B3C;
  --st-red:#9B2C1D;

  /* ---- Ombres : diffuses et chaudes ---- */
  --shadow:0 18px 40px -22px rgba(110,42,31,.40);
  --shadow-sm:0 8px 22px -14px rgba(110,42,31,.45);
  --shadow-btn:0 10px 22px -14px rgba(110,42,31,.75);
  --shadow-lg:0 36px 70px -40px rgba(110,42,31,.45);
  --shadow-card-hover:0 22px 44px -30px rgba(110,42,31,.55);

  /* ---- Rayons ---- */
  --r-sm:10px;
  --r-btn:14px;
  --r-md:16px;
  --r-lg:20px;
  --r-xl:24px;
  --r-2xl:28px;
  --r-pill:999px;

  /* ---- Typographie ----
     Une seule famille : les titres sont la même police en graisse 800,
     comme sur le site actuel. Pas de serif, pas de police bulle. */
  --font-display:'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --display-weight:800;

  /* ---- Layout ---- */
  --container:1240px;
  --pad:clamp(20px, 4vw, 40px);
  --header-h:72px;

  /* ---- Transitions ---- */
  --ease:cubic-bezier(.16,1,.3,1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */

*,*::before,*::after{box-sizing:border-box;}
/* L'attribut hidden prime sur tout display de composant. */
[hidden]{display:none !important;}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--header-h) + 16px);}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.55;
  color:var(--ink);
  background:var(--cream-100);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img,svg,video{display:block;max-width:100%;}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer;}
a{color:inherit;text-decoration:none;}
ul,ol{list-style:none;padding:0;margin:0;}
h1,h2,h3,h4,h5,h6{margin:0;font-weight:600;}
p{margin:0;}
input,select,textarea{font:inherit;color:inherit;}
::selection{background:var(--gold);color:var(--bordeaux-900);}

:focus-visible{
  outline:2px solid var(--bordeaux);
  outline-offset:3px;
  border-radius:4px;
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important;
  }
}

/* ============================================================
   UTILITAIRES TYPO
   ============================================================ */

.display{font-family:var(--font-display);font-weight:var(--display-weight);letter-spacing:-.01em;}
.display em,.display i,.accent{
  font-style:normal;
  font-weight:inherit;
  color:var(--bordeaux);
}
.on-dark .display em,.on-dark .accent{color:var(--gold-300);}

.tabnum{font-variant-numeric:tabular-nums lining-nums;}

.eyebrow{
  font-family:var(--font-body);
  font-weight:700;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brick);
}
.on-dark .eyebrow{color:var(--gold-300);}

.muted{color:var(--ink-65);}

/* En-tête de section : index « 01 » + filet + eyebrow */
.section-index{
  display:flex;
  align-items:center;
  gap:16px;
}
.section-index__num{
  font-family:var(--font-display);
  font-size:18px;
  font-variant-numeric:tabular-nums;
  color:rgba(154,59,40,.7);
}
.section-index__rule{
  height:1px;
  width:40px;
  background:var(--line-strong);
}
.on-dark .section-index__num{color:var(--gold-300);}
.on-dark .section-index__rule{background:rgba(243,233,212,.25);}

.section-title{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:clamp(28px,3.8vw,46px);
  line-height:1.05;
  letter-spacing:-.015em;
  margin-top:20px;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--pad);
}
.section{padding-block:clamp(56px,7vw,96px);}
.section--tight{padding-block:clamp(40px,5vw,64px);}
.section--dark{
  background:var(--bordeaux-900);
  color:var(--cream-100);
}
.section--band{
  background:rgba(234,220,192,.5);
  border-block:1px solid var(--line);
}

/* ============================================================
   GRAIN (papier) : sur les blocs sombres
   ============================================================ */

.grain{position:relative;}
.grain::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.05;
  mix-blend-mode:multiply;
  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='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   REVEAL AU SCROLL : progressive enhancement
   L'état masqué n'existe QUE si .reveal-ready est posé par le JS.
   ============================================================ */

.reveal-ready .reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-ready .reveal.is-in{
  opacity:1;
  transform:none;
}

/* ============================================================
   BOUTONS : 3 variantes
   ============================================================ */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:15px;
  line-height:1;
  padding:15px 28px;
  min-height:48px;
  border-radius:var(--r-pill);
  border:1px solid transparent;
  transition:background-color .2s, border-color .2s, color .2s, box-shadow .2s, transform .2s;
  cursor:pointer;
  text-align:center;
}
.btn .icon{width:16px;height:16px;transition:transform .2s;}
.btn:hover .icon--arrow{transform:translateX(2px);}

/* Primaire */
.btn--primary{
  background:var(--bordeaux);
  color:var(--cream-50);
  box-shadow:var(--shadow-btn);
}
.btn--primary:hover{background:var(--bordeaux-700);}

/* Ligne */
.btn--line{
  background:transparent;
  color:var(--ink);
  border-color:var(--line-strong);
}
.btn--line:hover{
  border-color:rgba(36,24,19,.6);
  background:rgba(36,24,19,.03);
}
.on-dark .btn--line{
  color:var(--cream-100);
  border-color:rgba(243,233,212,.28);
}
.on-dark .btn--line:hover{
  border-color:rgba(243,233,212,.6);
  background:rgba(243,233,212,.06);
}

/* Or */
.btn--gold{
  background:var(--gold);
  color:var(--bordeaux-900);
  box-shadow:0 8px 18px -14px rgba(67,20,12,.7);
}
.btn--gold:hover{background:var(--gold-300);}

/* Tailles */
.btn--sm{font-size:14px;padding:11px 20px;min-height:42px;}
.btn--lg{font-size:17px;padding:19px 36px;min-height:58px;}
.btn--block{width:100%;}

.btn:disabled,.btn[aria-disabled="true"]{
  opacity:.5;
  cursor:not-allowed;
  box-shadow:none;
}

/* Bouton icône seul (min 44px pour l'accessibilité) */
.icon-btn{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:var(--r-pill);
  border:1px solid var(--line);
  background:var(--cream-50);
  color:var(--ink);
  transition:border-color .2s, background-color .2s;
  position:relative;
}
.icon-btn:hover{border-color:rgba(36,24,19,.3);}
.icon-btn .icon{width:18px;height:18px;}

/* ============================================================
   ICÔNES : sprite Lucide local
   ============================================================ */

.icon{
  width:20px;
  height:20px;
  flex:none;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.icon--filled{fill:currentColor;stroke:none;}

/* ============================================================
   CARTES, PUCES, BADGES, CHAMPS
   ============================================================ */

.card{
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  padding:28px;
}
.card--paper{background:var(--card);}

.chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 16px;
  border-radius:var(--r-pill);
  border:1px solid var(--line-strong);
  background:var(--cream-50);
  font-size:14px;
  font-weight:600;
  color:var(--ink-80);
  cursor:pointer;
  transition:background-color .18s, border-color .18s, color .18s;
  min-height:40px;
}
.chip:hover{border-color:rgba(36,24,19,.4);}
.chip.is-active,.chip[aria-pressed="true"]{
  background:var(--bordeaux);
  border-color:var(--bordeaux);
  color:var(--cream-50);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:4px 9px;
  border-radius:var(--r-pill);
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.02em;
  white-space:nowrap;
  background:rgba(251,246,236,.9);
  backdrop-filter:blur(4px);
  color:var(--ink-80);
}
.badge--veggie{color:var(--olive);}
.badge--meat{background:var(--cream-200);color:var(--ink-65);}
.badge--spicy{color:var(--brick);}
.badge--gold{
  background:rgba(46,13,7,.75);
  color:var(--gold-300);
  border:1px solid rgba(195,154,78,.3);
}
.badge .icon{width:12px;height:12px;}

.field{display:flex;flex-direction:column;gap:7px;}
.field__label{
  font-size:13px;
  font-weight:600;
  color:var(--ink-65);
}
.input-wrap{position:relative;display:flex;align-items:center;}
.input-wrap > .icon{
  position:absolute;
  left:14px;
  width:18px;height:18px;
  color:var(--ink-40);
  pointer-events:none;
}
.input-wrap > .icon ~ .input{padding-left:42px;}
.input{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border-radius:var(--r-btn);
  border:1px solid var(--line-strong);
  background:var(--cream-50);
  color:var(--ink);
  transition:border-color .18s, box-shadow .18s;
}
.input::placeholder{color:var(--ink-40);}
.input:focus{
  outline:none;
  border-color:var(--bordeaux);
  box-shadow:0 0 0 3px rgba(122,42,29,.12);
}

/* Pastille crème pour poser le logo sur fond bordeaux */
.logo-pad{
  display:inline-grid;
  place-items:center;
  justify-self:start;
  align-self:start;
  width:fit-content;
  background:var(--cream-50);
  border-radius:14px;
  padding:7px 10px;
}
.logo-pad img{height:30px;width:auto;}

/* ============================================================
   BANDEAU ANNONCE + HEADER
   ============================================================ */

.announce{
  background:var(--bordeaux-900);
  color:rgba(234,220,192,.9);
  font-size:12.5px;
  font-weight:500;
  letter-spacing:.01em;
  text-align:center;
  padding:8px 16px;
}
.announce strong{color:var(--cream-50);font-weight:600;}

.header{
  position:sticky;
  top:0;
  z-index:60;
  background:transparent;
  transition:background-color .3s, box-shadow .3s, border-color .3s;
  border-bottom:1px solid transparent;
}
.header.is-stuck{
  background:rgba(251,246,236,.85);
  backdrop-filter:blur(12px);
  border-bottom-color:var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  gap:32px;
  height:var(--header-h);
}
.header__brand{display:flex;align-items:center;flex:none;}
.header__brand img{height:44px;width:auto;}

.header__nav{
  display:flex;
  align-items:center;
  gap:32px;
  font-size:14.5px;
  color:var(--ink-65);
}
.header__nav a{transition:color .2s;}
.header__nav a:hover{color:var(--bordeaux);}

.header__actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.cart-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:19px;
  height:19px;
  padding-inline:4px;
  display:grid;
  place-items:center;
  border-radius:var(--r-pill);
  background:var(--bordeaux);
  color:var(--cream-50);
  font-size:11px;
  font-weight:700;
  font-variant-numeric:tabular-nums;
}
.cart-badge.is-pulse{animation:badge-pulse .45s var(--ease);}
@keyframes badge-pulse{
  0%{transform:scale(1);}
  45%{transform:scale(1.35);}
  100%{transform:scale(1);}
}

.header__burger{display:none;}

@media (max-width:1023px){
  .header__nav{
    display:none;
    position:absolute;
    top:var(--header-h);
    left:0;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:var(--cream-50);
    border-block:1px solid var(--line);
    box-shadow:var(--shadow);
    padding:8px var(--pad) 16px;
  }
  .header__nav.is-open{display:flex;}
  .header__nav a{
    padding:14px 0;
    font-size:16px;
    color:var(--ink);
    border-bottom:1px solid var(--line);
  }
  .header__nav a:last-child{border-bottom:0;}
  .header__burger{display:grid;}
  .header .btn--primary{display:none;}
}
@media (max-width:479px){
  .header__brand img{height:36px;}
}

/* ============================================================
   HERO
   ============================================================ */

.hero__inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:48px;
  align-items:center;
  padding-block:56px 64px;
}
.hero__copy{max-width:560px;}
.hero__eyebrow{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
  flex-wrap:wrap;
}
.hero__eyebrow-rule{height:1px;width:48px;background:var(--line-strong);}
.hero__eyebrow-since{font-size:12px;color:var(--ink-55);}

.hero__title{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:clamp(44px,6.2vw,82px);
  line-height:.97;
  letter-spacing:-.02em;
}
.hero__lead{
  margin-top:24px;
  font-size:17px;
  line-height:1.65;
  color:var(--ink-65);
  max-width:440px;
}
.hero__ctas{
  margin-top:32px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero__proof{
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px 28px;
}
.hero__proof-sep{width:1px;height:36px;background:rgba(36,24,19,.15);}
@media (max-width:639px){.hero__proof-sep{display:none;}}
.hero__stars{display:flex;gap:3px;color:var(--gold);}
.hero__stars .icon{width:16px;height:16px;fill:var(--gold);stroke:var(--gold);}
.hero__proof-label{margin-top:6px;font-size:12.5px;color:var(--ink-55);}
.hero__proof-label b{color:var(--ink-80);font-weight:600;}
.hero__proof-num{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:var(--display-weight);
  line-height:1;
}

.hero__visual{position:relative;}
.hero__photo{
  border-radius:var(--r-2xl);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.hero__photo img{
  width:100%;
  height:clamp(360px,50vw,560px);
  object-fit:cover;
}
.hero__pill{
  position:absolute;
  left:-16px;
  bottom:24px;
  display:flex;
  align-items:center;
  gap:12px;
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:10px 16px 10px 12px;
  box-shadow:0 16px 30px -18px rgba(67,20,12,.5);
}
.hero__pill-icon{
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:var(--r-btn);
  background:rgba(122,42,29,.1);
  color:var(--bordeaux);
}
.hero__pill b{display:block;font-size:14px;}
.hero__pill span{font-size:12px;color:var(--ink-55);}

@media (max-width:1023px){
  .hero__inner{grid-template-columns:1fr;gap:32px;padding-block:24px 48px;}
  .hero__copy{max-width:none;}
  .hero__pill{left:16px;bottom:16px;}
  /* Sur mobile l'image passe avant le texte : elle accroche l'œil
     immédiatement, le titre et les boutons suivent. */
  .hero__visual{order:-1;}
}

/* ============================================================
   MARQUEE typographique
   ============================================================ */

.marquee{
  border-block:1px solid var(--line);
  background:rgba(251,246,236,.6);
  overflow:hidden;
}
.marquee__track{
  display:flex;
  white-space:nowrap;
  width:max-content;
  animation:marquee 32s linear infinite;
}
.marquee__group{display:flex;align-items:center;flex:none;}
.marquee__item{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:17px;
  letter-spacing:.02em;
  color:var(--ink-65);
  padding:14px 24px;
}
.marquee__dot{
  width:6px;height:6px;
  border-radius:var(--r-pill);
  background:var(--bordeaux);
}
@keyframes marquee{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
.marquee:hover .marquee__track{animation-play-state:paused;}

/* ============================================================
   LE RITUEL : 3 étapes
   ============================================================ */

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:48px;
}
.section-head__aside{
  color:var(--ink-65);
  font-size:15px;
  max-width:340px;
}
@media (max-width:900px){
  .section-head{flex-direction:column;align-items:flex-start;gap:20px;margin-bottom:36px;}
}

.ritual{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--r-xl);
  overflow:hidden;
}
.ritual__cell{
  background:var(--cream-50);
  padding:36px 32px;
  transition:background-color .25s;
}
.ritual__cell:hover{background:var(--cream-100);}
.ritual__top{display:flex;align-items:center;justify-content:space-between;}
.ritual__icon{
  width:48px;height:48px;
  display:grid;place-items:center;
  border-radius:var(--r-lg);
  background:rgba(122,42,29,.07);
  color:var(--bordeaux);
  transition:background-color .25s, color .25s;
}
.ritual__cell:hover .ritual__icon{background:var(--bordeaux);color:var(--cream-50);}
.ritual__icon .icon{width:24px;height:24px;}
.ritual__num{
  font-family:var(--font-display);
  font-size:15px;
  font-weight:var(--display-weight);
  letter-spacing:.15em;
  color:var(--gold);
}
.ritual__title{
  font-family:var(--font-display);
  font-size:21px;
  margin-top:24px;
}
.ritual__text{
  margin-top:10px;
  font-size:14.5px;
  line-height:1.6;
  color:var(--ink-65);
}
@media (max-width:900px){
  .ritual{grid-template-columns:1fr;}
}

/* ============================================================
   LA CARTE : sauce du mois + grille produits
   ============================================================ */

/* Bandeau sauce du mois */
.monthly{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:var(--r-xl);
  overflow:hidden;
  background:var(--bordeaux-800);
  color:var(--cream-100);
  margin-bottom:24px;
  box-shadow:0 24px 50px -34px rgba(67,20,12,.7);
}
.monthly__media{position:relative;min-height:260px;}
.monthly__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.monthly__veil{
  position:absolute;inset:0;
  background:linear-gradient(90deg,transparent,rgba(67,20,12,.7));
}
.monthly__badges{
  position:absolute;
  top:16px;left:16px;
  display:flex;gap:8px;flex-wrap:wrap;
}
.monthly__body{
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.monthly__title{
  font-family:var(--font-display);
  font-size:clamp(24px,2.6vw,32px);
  line-height:1.05;
}
.monthly__desc{
  margin-top:12px;
  font-size:14.5px;
  line-height:1.6;
  color:rgba(234,220,192,.75);
  max-width:380px;
}
.monthly__row{
  margin-top:24px;
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.monthly__price{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
}
@media (max-width:720px){
  .monthly{grid-template-columns:1fr;}
  .monthly__media{min-height:200px;}
  .monthly__veil{background:linear-gradient(180deg,transparent,rgba(67,20,12,.55));}
  .monthly__body{padding:28px;}
}

/* Grille produits */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
@media (max-width:1100px){.menu-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:760px){.menu-grid{grid-template-columns:repeat(2,1fr);gap:16px;}}

.dish{
  display:flex;
  flex-direction:column;
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  overflow:hidden;
  cursor:pointer;
  transition:border-color .3s, box-shadow .3s;
}
.dish:hover{
  border-color:var(--line-strong);
  box-shadow:var(--shadow-card-hover);
}
.dish__media{
  position:relative;
  aspect-ratio:5/4;
  overflow:hidden;
  background:radial-gradient(circle at 50% 45%, #fff, #FFEBCB);
}
.dish__media img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform .5s var(--ease);
}
.dish:hover .dish__media img{transform:scale(1.06);}
.dish__badges{
  position:absolute;
  top:12px;left:12px;
  display:flex;gap:6px;flex-wrap:wrap;
}
.dish__add{
  position:absolute;
  bottom:12px;right:12px;
  width:36px;height:36px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:var(--bordeaux);
  color:var(--cream-50);
  box-shadow:var(--shadow-sm);
  transition:background-color .2s, transform .2s;
}
.dish__add:hover{background:var(--bordeaux-700);transform:scale(1.06);}
.dish__add .icon{width:16px;height:16px;stroke-width:2;}
.dish__body{padding:16px;display:flex;flex-direction:column;flex:1;}
.dish__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:8px;
}
.dish__name{
  font-family:var(--font-display);
  font-size:18px;
  line-height:1.2;
}
.dish__price{
  font-family:var(--font-display);
  font-size:15px;
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
  color:var(--bordeaux);
  white-space:nowrap;
  margin-top:2px;
}
.dish__desc{
  margin-top:6px;
  font-size:12.5px;
  line-height:1.4;
  color:var(--ink-55);
  display:-webkit-box;
  -webkit-line-clamp:2;
  line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Tuile « Toute la carte » */
.dish-more{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:10px;
  padding:24px;
  border:1.5px dashed var(--line-strong);
  border-radius:var(--r-lg);
  transition:border-color .25s, background-color .25s;
}
.dish-more:hover{border-color:var(--bordeaux);background:rgba(122,42,29,.03);}
.dish-more__circle{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:var(--bordeaux);
  color:var(--cream-50);
  transition:transform .25s;
}
.dish-more:hover .dish-more__circle{transform:scale(1.06);}
.dish-more__title{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:var(--display-weight);
  color:var(--bordeaux);
}
.dish-more__sub{font-size:12.5px;color:var(--ink-55);}

/* Ligne d'avantages */
.perks{
  margin-top:32px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 24px;
  font-size:13px;
  color:var(--ink-55);
}
.perks li{display:inline-flex;align-items:center;gap:8px;}
.perks li::before{
  content:"";
  width:6px;height:6px;
  border-radius:var(--r-pill);
  background:var(--gold);
}

/* Aussi disponibles (pâtes nature) */
.also{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:12px;
}
.also__card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-md);
  padding:16px 20px;
}
.also__name{font-family:var(--font-display);font-size:16px;font-weight:var(--display-weight);}
.also__desc{font-size:13px;color:var(--ink-55);margin-top:2px;}
.also__right{display:flex;align-items:center;gap:14px;}
.also__price{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
  color:var(--bordeaux);
  white-space:nowrap;
}

/* Boissons & desserts */
.sides{
  margin-top:40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
@media (max-width:760px){.sides{grid-template-columns:1fr;}}
.sides__title{
  font-family:var(--font-display);
  font-size:20px;
  margin-bottom:16px;
}
.sides__title span{
  font-family:var(--font-body);
  font-size:13px;
  font-weight:600;
  color:var(--ink-55);
}
.sides__list{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
  gap:12px;
}
.side{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:14px 12px 16px;
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-md);
  text-align:center;
  transition:border-color .2s, box-shadow .2s;
}
.side:hover{border-color:var(--line-strong);box-shadow:var(--shadow-sm);}
.side__img{width:64px;height:64px;}
.side__img img{width:100%;height:100%;object-fit:contain;}
.side__name{font-size:13.5px;font-weight:600;}
.side__price{
  font-family:var(--font-display);
  font-size:14px;
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
  color:var(--bordeaux);
}
.side__add{
  position:absolute;
  top:8px;right:8px;
  width:24px;height:24px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:var(--bordeaux);
  color:var(--cream-50);
}
.side__add .icon{width:12px;height:12px;stroke-width:2.2;}

/* ============================================================
   LA MAISON : bloc sombre
   ============================================================ */

.house__inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
  align-items:center;
}
.house__text{
  margin-top:24px;
  font-size:15.5px;
  line-height:1.7;
  color:rgba(234,220,192,.75);
  max-width:440px;
}
.house__stats{
  margin-top:32px;
  display:flex;
  flex-wrap:wrap;
  gap:32px;
}
.house__stat-num{
  font-family:var(--font-display);
  font-size:28px;
  font-weight:var(--display-weight);
  line-height:1;
  color:var(--cream-50);
  font-variant-numeric:tabular-nums;
}
.house__stat-label{
  margin-top:6px;
  font-size:12.5px;
  color:rgba(234,220,192,.6);
}
.house__actions{
  margin-top:36px;
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}
.house__social{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:600;
  color:rgba(243,233,212,.8);
  transition:color .2s;
}
.house__social:hover{color:var(--cream-50);}
.house__photo img{
  border-radius:var(--r-2xl);
  width:100%;
  height:440px;
  object-fit:cover;
  box-shadow:var(--shadow-lg);
}
@media (max-width:1023px){
  .house__inner{grid-template-columns:1fr;gap:36px;}
  .house__photo img{height:300px;}
}

/* ============================================================
   INFOS & ACCÈS
   ============================================================ */

.infos__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  align-items:stretch;
}
@media (max-width:1023px){.infos__grid{grid-template-columns:1fr;}}

.infos__card{
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-2xl);
  padding:40px;
}
@media (max-width:600px){.infos__card{padding:28px;}}
.infos__items{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px 32px;
}
@media (max-width:600px){.infos__items{grid-template-columns:1fr;}}
.infos__item{display:flex;gap:16px;}
.infos__icon{
  width:48px;height:48px;
  flex:none;
  display:grid;place-items:center;
  border-radius:var(--r-lg);
  background:var(--cream-200);
  color:var(--bordeaux);
}
.infos__label{font-weight:600;font-size:15px;}
.infos__value{
  margin-top:2px;
  font-size:14px;
  color:var(--ink-65);
  white-space:pre-line;
}
.infos__value a:hover{color:var(--bordeaux);text-decoration:underline;}

.infos__pay{
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
}
.pay-pill{
  font-size:12.5px;
  font-weight:600;
  color:var(--ink-65);
  border:1px solid rgba(36,24,19,.12);
  border-radius:var(--r-sm);
  padding:6px 12px;
}
.infos__pay-note{font-size:12.5px;color:var(--ink-55);}

.infos__map{
  border-radius:var(--r-2xl);
  overflow:hidden;
  border:1px solid var(--line);
  min-height:300px;
  background:linear-gradient(135deg,#FFEFD3,#FFE3B8);
}
.infos__map iframe{width:100%;height:100%;min-height:300px;border:0;display:block;}

/* ============================================================
   CTA FINAL
   ============================================================ */

.cta-band{
  position:relative;
  overflow:hidden;
  border-radius:var(--r-2xl);
  color:var(--cream-50);
}
.cta-band__img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
}
.cta-band__veil{
  position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(46,13,7,.95), rgba(46,13,7,.8) 55%, rgba(67,20,12,.3));
}
.cta-band__inner{
  position:relative;
  padding:clamp(40px,6vw,80px) clamp(28px,5vw,64px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}
.cta-band__title{
  font-family:var(--font-display);
  font-size:clamp(26px,3.6vw,42px);
  line-height:1.05;
  max-width:520px;
}
.cta-band__title em{color:var(--gold);font-style:normal;font-weight:inherit;}
.cta-band__lead{
  margin-top:16px;
  max-width:380px;
  font-size:15px;
  color:rgba(234,220,192,.8);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer{
  background:var(--bordeaux-900);
  color:rgba(234,220,192,.8);
}
.footer__inner{padding-block:56px;}
.footer__cols{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:36px;
  padding-bottom:40px;
  border-bottom:1px solid var(--cream-line);
}
@media (max-width:900px){.footer__cols{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer__cols{grid-template-columns:1fr;gap:28px;}}
/* Le logo contient déjà le mot-symbole : sur bordeaux on le pose sur une
   pastille crème plutôt que de l'inverser en blanc (il devient illisible). */
.logo-pad--footer{
  display:inline-grid;
  padding:8px 12px;
  border-radius:var(--r-md);
}
.logo-pad--footer img{height:38px;width:auto;}
.footer__tag{
  margin-top:16px;
  max-width:300px;
  font-size:14px;
  line-height:1.65;
  color:rgba(234,220,192,.6);
}
.footer__title{
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold-300);
  margin-bottom:16px;
}
.footer__links li + li{margin-top:10px;}
.footer__links a{font-size:14px;transition:color .2s;}
.footer__links a:hover{color:var(--cream-50);}
.footer__bottom{
  padding-top:24px;
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  font-size:12.5px;
  color:rgba(234,220,192,.5);
}
.footer__bottom a:hover{color:var(--cream-50);}

/* Réseaux sociaux */
.socials{display:flex;gap:10px;margin-top:20px;}
.socials a{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius:var(--r-btn);
  border:1px solid var(--cream-line);
  color:rgba(234,220,192,.75);
  transition:color .2s, border-color .2s, background-color .2s;
}
.socials a:hover{
  color:var(--bordeaux-900);
  background:var(--gold);
  border-color:var(--gold);
}

/* ============================================================
   PANIER (drawer)
   ============================================================ */

.drawer{
  position:fixed;
  inset:0;
  z-index:90;
  visibility:hidden;
  pointer-events:none;
}
.drawer[aria-hidden="false"]{visibility:visible;pointer-events:auto;}
.drawer__overlay{
  position:absolute;inset:0;
  background:rgba(46,13,7,.45);
  backdrop-filter:blur(2px);
  opacity:0;
  transition:opacity .3s;
}
.drawer[aria-hidden="false"] .drawer__overlay{opacity:1;}
.drawer__panel{
  position:absolute;
  top:0;right:0;bottom:0;
  width:min(440px,100%);
  display:flex;
  flex-direction:column;
  background:var(--cream-100);
  box-shadow:-24px 0 60px -30px rgba(67,20,12,.6);
  transform:translateX(100%);
  transition:transform .35s var(--ease);
}
.drawer[aria-hidden="false"] .drawer__panel{transform:none;}
.drawer__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 24px;
  border-bottom:1px solid var(--line);
}
.drawer__header h2{font-family:var(--font-display);font-size:22px;}
.drawer__close{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:var(--r-btn);
  transition:background-color .2s;
}
.drawer__close:hover{background:rgba(36,24,19,.05);}
.drawer__body{flex:1;overflow-y:auto;padding:24px;}
.drawer__footer{
  padding:20px 24px 24px;
  border-top:1px solid var(--line);
  background:var(--cream-50);
}
.drawer__row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  font-size:14.5px;
  padding-block:6px;
}
.drawer__row--mute{color:var(--ink-55);font-size:13px;}
.drawer__row--total{
  margin-top:8px;
  padding-top:12px;
  border-top:1px solid var(--line);
  font-family:var(--font-display);
  font-size:18px;
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
}
.drawer__footer .btn{margin-top:16px;}

.cart-empty{
  text-align:center;
  padding:48px 16px;
}
.cart-empty__icon{
  width:64px;height:64px;
  margin:0 auto 20px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:var(--cream-200);
  color:var(--bordeaux);
}
.cart-empty__icon .icon{width:28px;height:28px;}
.cart-empty h3{font-family:var(--font-display);font-size:20px;}
.cart-empty p{margin-top:8px;color:var(--ink-55);font-size:14px;}
.cart-empty .btn{margin-top:20px;}

.cart-item{
  display:grid;
  grid-template-columns:64px 1fr auto;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.cart-item:last-child{border-bottom:0;}
.cart-item__img{
  width:64px;height:64px;
  border-radius:var(--r-sm);
  overflow:hidden;
  background:radial-gradient(circle at 50% 45%, #fff, #FFEBCB);
}
.cart-item__img img{width:100%;height:100%;object-fit:cover;}
.cart-item__name{font-family:var(--font-display);font-size:16px;font-weight:var(--display-weight);line-height:1.25;}
.cart-item__detail{margin-top:4px;font-size:12.5px;color:var(--ink-55);line-height:1.4;}
.cart-item__price{
  margin-top:6px;
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
  color:var(--bordeaux);
}
.cart-item__right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.qty{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line-strong);
  border-radius:var(--r-pill);
  overflow:hidden;
}
.qty button{
  width:32px;height:32px;
  display:grid;place-items:center;
  font-size:16px;
  color:var(--ink-65);
  transition:background-color .18s, color .18s;
}
.qty button:hover{background:rgba(36,24,19,.05);color:var(--bordeaux);}
.qty span{
  min-width:26px;
  text-align:center;
  font-size:14px;
  font-weight:600;
  font-variant-numeric:tabular-nums;
}
.cart-item__remove{
  font-size:12.5px;
  color:var(--ink-55);
  text-decoration:underline;
  text-underline-offset:2px;
  transition:color .18s;
}
.cart-item__remove:hover{color:var(--st-red);}

/* ============================================================
   MODALES (compose, checkout)
   ============================================================ */

.modal{
  position:fixed;
  inset:0;
  z-index:100;
  visibility:hidden;
  pointer-events:none;
  display:grid;
  place-items:center;
  padding:20px;
}
.modal[aria-hidden="false"]{visibility:visible;pointer-events:auto;}
.modal__overlay{
  position:absolute;inset:0;
  background:rgba(46,13,7,.5);
  backdrop-filter:blur(3px);
  opacity:0;
  transition:opacity .3s;
}
.modal[aria-hidden="false"] .modal__overlay{opacity:1;}
.modal__panel{
  position:relative;
  width:min(640px,100%);
  max-height:min(90vh,900px);
  overflow-y:auto;
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-2xl);
  box-shadow:var(--shadow-lg);
  transform:translateY(16px) scale(.98);
  opacity:0;
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.modal[aria-hidden="false"] .modal__panel{transform:none;opacity:1;}
.modal__panel--wide{width:min(820px,100%);}
.modal__close{
  position:absolute;
  top:16px;right:16px;
  z-index:2;
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:rgba(251,246,236,.9);
  border:1px solid var(--line);
  backdrop-filter:blur(6px);
  transition:border-color .2s;
}
.modal__close:hover{border-color:var(--line-strong);}
.modal__body{padding:32px;}
@media (max-width:600px){.modal__body{padding:24px 20px;}}

/* Compose : photo + options */
.compose__head{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:24px;
  align-items:center;
  margin-bottom:28px;
}
@media (max-width:600px){.compose__head{grid-template-columns:1fr;}}
.compose__photo{
  border-radius:var(--r-lg);
  overflow:hidden;
  aspect-ratio:5/4;
  background:radial-gradient(circle at 50% 45%, #fff, #FFEBCB);
}
.compose__photo img{width:100%;height:100%;object-fit:cover;}
.compose__title{font-family:var(--font-display);font-size:26px;line-height:1.1;}
.compose__desc{margin-top:8px;font-size:14px;color:var(--ink-65);}
.compose__group + .compose__group{margin-top:24px;}
.compose__legend{
  font-size:11px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brick);
  margin-bottom:12px;
}
.compose__chips{display:flex;flex-wrap:wrap;gap:8px;}
.chip__price{
  font-weight:600;
  color:var(--bordeaux);
  padding-left:8px;
  margin-left:2px;
  border-left:1px solid var(--line-strong);
}
.chip.is-active .chip__price{
  color:var(--gold-300);
  border-left-color:rgba(243,233,212,.3);
}
.compose__hint{
  margin-top:10px;
  font-size:13px;
  color:var(--ink-55);
}
.compose__substep{
  margin-top:16px;
  padding:18px;
  background:var(--cream-100);
  border:1px solid var(--line);
  border-radius:var(--r-md);
}
.compose__substep .compose__legend{margin-bottom:10px;}
.compose__total{
  margin-top:28px;
  padding-top:20px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.compose__total-value{
  font-family:var(--font-display);
  font-size:26px;
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
}

/* ============================================================
   CHECKOUT : auth, méthode, OTP, récap, suivi
   (les noms de classes viennent d'app.js : on les ré-habille,
   on ne touche pas aux gabarits ni à la logique)
   ============================================================ */

/* Alias historiques encore émis par app.js */
.btn--ghost{
  background:transparent;
  color:var(--ink);
  border-color:var(--line-strong);
}
.btn--ghost:hover{border-color:rgba(36,24,19,.6);background:rgba(36,24,19,.03);}
.btn--small{font-size:14px;padding:10px 18px;min-height:40px;}

.modal__body > h2{
  font-family:var(--font-display);
  font-size:clamp(24px,3vw,30px);
  line-height:1.1;
  padding-right:48px;
}
.modal__sub{
  margin-top:10px;
  font-size:14.5px;
  color:var(--ink-65);
}

/* Onglets connexion / création */
.auth-tabs{
  display:flex;
  gap:4px;
  margin-top:24px;
  padding:4px;
  background:var(--cream-100);
  border:1px solid var(--line);
  border-radius:var(--r-btn);
}
.auth-tab{
  flex:1;
  padding:11px 12px;
  border-radius:var(--r-sm);
  font-size:14px;
  font-weight:600;
  color:var(--ink-65);
  transition:background-color .2s, color .2s;
}
.auth-tab.is-active{
  background:var(--cream-50);
  color:var(--bordeaux);
  box-shadow:var(--shadow-sm);
}

.oauth-row{margin-top:20px;}
.oauth-btn{
  width:100%;
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 20px;
  border-radius:var(--r-btn);
  border:1px solid var(--line-strong);
  background:var(--card);
  font-size:15px;
  font-weight:600;
  transition:border-color .2s, background-color .2s;
}
.oauth-btn:hover{border-color:rgba(36,24,19,.4);}

.auth-sep{
  display:flex;
  align-items:center;
  gap:14px;
  margin:22px 0 18px;
  font-size:12.5px;
  color:var(--ink-55);
}
.auth-sep::before,.auth-sep::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--line);
}

/* Formulaires */
.auth-form,.checkout-form{display:flex;flex-direction:column;gap:16px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
@media (max-width:520px){.form-row{grid-template-columns:1fr;}}
.form-group{display:flex;flex-direction:column;gap:7px;}
.form-group label{font-size:13px;font-weight:600;color:var(--ink-65);}
.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border-radius:var(--r-btn);
  border:1px solid var(--line-strong);
  background:var(--cream-50);
  color:var(--ink);
  transition:border-color .18s, box-shadow .18s;
}
.form-group input::placeholder{color:var(--ink-40);}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--bordeaux);
  box-shadow:0 0 0 3px rgba(122,42,29,.12);
}
.form-hint{font-size:12.5px;color:var(--ink-55);}

.pwd-wrap{position:relative;display:flex;align-items:center;}
.pwd-eye{
  position:absolute;
  right:6px;
  width:40px;height:40px;
  display:grid;place-items:center;
  border-radius:var(--r-sm);
  color:var(--ink-55);
  transition:color .18s, background-color .18s;
}
.pwd-eye:hover{color:var(--bordeaux);background:rgba(36,24,19,.05);}
.pwd-eye .icon{width:18px;height:18px;}
/* Mot de passe visible : l'œil passe en bordeaux plutôt que de changer d'icône. */
.pwd-eye.is-on{color:var(--bordeaux);}

.loyalty-gain{
  display:flex;
  align-items:center;
  gap:9px;
  margin:0 0 18px;
  font-size:14px;
  color:var(--st-green);
}
.loyalty-gain .icon{width:18px;height:18px;flex:none;}

.pwd-strength{display:flex;align-items:center;gap:10px;}
.pwd-strength__bar{
  flex:1;
  height:5px;
  border-radius:var(--r-pill);
  background:var(--cream-200);
  overflow:hidden;
}
.pwd-strength__fill{
  height:100%;
  width:0;
  border-radius:var(--r-pill);
  background:var(--st-amber);
  transition:width .3s var(--ease), background-color .3s;
}
.pwd-strength__label{font-size:12px;color:var(--ink-55);}

.auth-keep{
  display:flex;
  align-items:center;
  gap:9px;
  font-size:13.5px;
  color:var(--ink-65);
  cursor:pointer;
}
.auth-keep input{width:17px;height:17px;accent-color:var(--bordeaux);}
.auth-forgot{
  font-size:13px;
  color:var(--bordeaux);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* Choix retrait / livraison */
.method-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media (max-width:520px){.method-row{grid-template-columns:1fr;}}
.method{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius:var(--r-md);
  border:1px solid var(--line-strong);
  background:var(--cream-50);
  text-align:left;
  transition:border-color .2s, background-color .2s, box-shadow .2s;
}
.method:hover{border-color:rgba(36,24,19,.4);}
.method.is-selected{
  border-color:var(--bordeaux);
  background:rgba(122,42,29,.04);
  box-shadow:0 0 0 1px var(--bordeaux) inset;
}
.method__icon{
  width:44px;height:44px;
  flex:none;
  display:grid;place-items:center;
  border-radius:var(--r-btn);
  background:var(--cream-200);
  color:var(--bordeaux);
}
.method.is-selected .method__icon{background:var(--bordeaux);color:var(--cream-50);}
.method__name{display:block;font-weight:600;font-size:15px;}
.method__sub{display:block;margin-top:2px;font-size:12.5px;color:var(--ink-55);}

.checkout-zone-note{
  display:flex;
  gap:10px;
  padding:14px 16px;
  border-radius:var(--r-md);
  background:rgba(185,131,43,.1);
  border:1px solid rgba(185,131,43,.25);
  font-size:13px;
  line-height:1.55;
  color:var(--ink-80);
}
.checkout-zone-note .icon{width:18px;height:18px;flex:none;color:var(--st-amber);margin-top:1px;}

/* Vérification du téléphone (OTP) */
.otp-row{display:flex;gap:10px;align-items:flex-end;flex-wrap:wrap;}
.otp-verify{display:flex;gap:10px;align-items:center;flex-wrap:wrap;}
.otp-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:4px 10px;
  border-radius:var(--r-pill);
  font-size:12px;
  font-weight:700;
  background:var(--cream-200);
  color:var(--ink-65);
}
.otp-badge--ok{background:rgba(63,122,75,.14);color:var(--st-green);}
.otp-badge .icon{width:13px;height:13px;stroke-width:2.4;}
.otp-resend{
  font-size:13px;
  color:var(--bordeaux);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* Champ de code à 6 cases */
.otp-boxes{display:flex;gap:8px;}
.otp-boxes input{
  width:46px;
  height:56px;
  text-align:center;
  font-family:var(--font-display);
  font-size:22px;
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
  border-radius:var(--r-btn);
  border:1px solid var(--line-strong);
  background:var(--cream-50);
}
.otp-boxes input:focus{
  outline:none;
  border-color:var(--bordeaux);
  box-shadow:0 0 0 3px rgba(122,42,29,.12);
}

/* Récapitulatif */
.checkout-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:28px;
  align-items:start;
}
@media (max-width:760px){.checkout-grid{grid-template-columns:1fr;}}

.summary{
  background:var(--cream-100);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:22px;
}
.summary__row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding-block:7px;
  font-size:14px;
  font-variant-numeric:tabular-nums;
}
.summary__row--discount{color:var(--st-green);}
.summary__row--total{
  margin-top:8px;
  padding-top:12px;
  border-top:1px solid var(--line);
  font-family:var(--font-display);
  font-size:19px;
  font-weight:var(--display-weight);
}
.summary__pay{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}
.stripe-note{
  margin-top:14px;
  font-size:12px;
  color:var(--ink-55);
  text-align:center;
}

/* Fidélité au paiement */
.loyalty-toggle{
  display:flex;
  align-items:center;
  gap:12px;
  width:100%;
  padding:16px 18px;
  border-radius:var(--r-md);
  border:1px dashed var(--gold);
  background:rgba(195,154,78,.08);
  text-align:left;
  transition:background-color .2s, border-style .2s;
}
.loyalty-toggle.is-on{
  border-style:solid;
  background:rgba(195,154,78,.18);
}
.loyalty-toggle .icon{width:20px;height:20px;color:var(--gold);flex:none;}

/* Référence de commande */
.order-ref-block{
  margin:24px auto;
  max-width:340px;
  padding:20px;
  border-radius:var(--r-lg);
  border:1px solid var(--line);
  background:var(--cream-100);
  text-align:center;
}
.order-ref-block__label{
  display:block;
  font-size:11px;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--brick);
}
.order-ref-block__value{
  display:block;
  margin-top:8px;
  font-family:var(--font-display);
  font-size:26px;
  font-weight:var(--display-weight);
  font-variant-numeric:tabular-nums;
  letter-spacing:.02em;
}
.order-ref-block__hint{display:block;margin-top:8px;font-size:12.5px;color:var(--ink-55);}

/* Suivi de commande */
.order-tracker{
  display:flex;
  align-items:flex-start;
  margin:28px 0;
}
.track-step{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  position:relative;
}
.track-step__dot{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:var(--cream-200);
  color:var(--ink-55);
  font-size:13px;
  font-weight:700;
  z-index:1;
}
.track-step.is-done .track-step__dot{background:var(--st-green);color:var(--cream-50);}
.track-step.is-current .track-step__dot{background:var(--bordeaux);color:var(--cream-50);}
.track-step__label{font-size:12px;color:var(--ink-55);text-align:center;}
.track-step__line{
  position:absolute;
  top:17px;
  left:50%;
  width:100%;
  height:2px;
  background:var(--cream-200);
}
.track-step.is-done .track-step__line{background:var(--st-green);}

/* Confirmation de commande */
.done{text-align:center;padding:16px 0;}
.done__icon{
  width:72px;height:72px;
  margin:0 auto 24px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:rgba(63,122,75,.12);
  color:var(--st-green);
}
.done__icon .icon{width:32px;height:32px;stroke-width:2;}
.done h3{font-family:var(--font-display);font-size:28px;}
.done p{margin-top:12px;color:var(--ink-65);}

/* ============================================================
   TOAST
   ============================================================ */

.toast{
  position:fixed;
  left:50%;
  bottom:28px;
  z-index:120;
  transform:translate(-50%,16px);
  opacity:0;
  pointer-events:none;
  max-width:min(420px,calc(100vw - 32px));
  padding:14px 20px;
  border-radius:var(--r-md);
  background:var(--bordeaux-900);
  color:var(--cream-100);
  font-size:14.5px;
  font-weight:500;
  box-shadow:var(--shadow);
  transition:opacity .25s, transform .25s var(--ease);
}
.toast.is-visible{opacity:1;transform:translate(-50%,0);}

/* ============================================================
   BANDEAU COOKIES
   ============================================================ */

.cookie-banner{
  position:fixed;
  left:16px;right:16px;bottom:16px;
  z-index:110;
  max-width:560px;
  margin-inline:auto;
  display:none;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
  padding:20px 24px;
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  box-shadow:var(--shadow);
}
.cookie-banner.is-visible{display:flex;}
.cookie-banner__text{flex:1 1 260px;font-size:13.5px;line-height:1.55;color:var(--ink-65);}
.cookie-banner__text strong{display:block;color:var(--ink);font-size:14.5px;margin-bottom:4px;}
.cookie-banner__text a{color:var(--bordeaux);text-decoration:underline;}
.cookie-banner__actions{display:flex;gap:10px;}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */

.whatsapp-fab{
  position:fixed;
  right:20px;bottom:20px;
  z-index:80;
  width:52px;height:52px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  /* Vert WhatsApp : c'est un repère reconnu, on ne le teinte pas en marque. */
  background:#25D366;
  color:#fff;
  box-shadow:var(--shadow);
  transition:background-color .2s, transform .2s;
}
.whatsapp-fab:hover{background:#1FB855;transform:translateY(-2px);}

/* ============================================================
   PAGES DE CONTENU (légal, FAQ, allergènes, SEO locale)
   ============================================================ */

.prose{max-width:760px;}
.prose h1{
  font-family:var(--font-display);
  font-size:clamp(32px,4.5vw,52px);
  line-height:1.05;
  letter-spacing:-.015em;
}
.prose h2{
  font-family:var(--font-display);
  font-size:clamp(22px,2.6vw,30px);
  margin-top:48px;
}
.prose h3{
  font-family:var(--font-display);
  font-size:20px;
  margin-top:32px;
}
.prose p,.prose li{
  font-size:16px;
  line-height:1.75;
  color:var(--ink-80);
  margin-top:16px;
}
.prose ul{list-style:disc;padding-left:22px;}
.prose ul li{margin-top:8px;}
.prose a{color:var(--bordeaux);text-decoration:underline;text-underline-offset:2px;}
.prose strong{font-weight:600;color:var(--ink);}

.table-wrap{overflow-x:auto;margin-top:24px;}
.table{
  width:100%;
  border-collapse:collapse;
  font-size:14.5px;
  min-width:520px;
}
.table th,.table td{
  text-align:left;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.table th{
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--brick);
  background:rgba(234,220,192,.4);
}
.table tbody tr:hover{background:rgba(251,246,236,.7);}

/* ============================================================
   ACCESSIBILITÉ
   ============================================================ */

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.skip-link{
  position:absolute;
  left:-9999px;
  top:8px;
  z-index:200;
  padding:12px 20px;
  background:var(--bordeaux);
  color:var(--cream-50);
  border-radius:var(--r-btn);
  font-weight:600;
}
.skip-link:focus{left:16px;}

/* ============================================================
   PAGES INTERNES (FAQ, allergènes, catering, SEO, légal)
   Ajout ciblé pour la refonte des 8 pages statiques :
   bandeau de titre + icônes du sprite dans les titres de rubrique.
   ============================================================ */

.page-head{
  background:rgba(234,220,192,.5);
  border-bottom:1px solid var(--line);
  padding-block:clamp(40px,5vw,64px);
}
.page-head__lead{
  margin-top:18px;
  max-width:620px;
  color:var(--ink-65);
  font-size:16px;
  line-height:1.7;
}
.page-head__lead a{color:var(--bordeaux);text-decoration:underline;text-underline-offset:2px;}

/* Un bouton dans .prose ne doit pas hériter du style de lien texte. */
.prose a.btn{text-decoration:none;}
.prose a.btn--primary{color:var(--cream-50);}
.prose a.btn--line{color:var(--ink);}
.prose a.btn--gold{color:var(--bordeaux-900);}

.prose h2 .icon{
  display:inline-block;
  width:22px;height:22px;
  color:var(--brick);
  vertical-align:-3px;
  margin-right:10px;
}
.prose li > .icon,
.prose p > .icon{
  display:inline-block;
  width:16px;height:16px;
  color:var(--brick);
  vertical-align:-2px;
  margin-right:8px;
}

/* ============================================================
   ESPACE COMPTE CLIENT
   ============================================================ */

/* ---------- Écran de connexion : deux volets ---------- */
.auth-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:var(--r-2xl);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--cream-50);
  box-shadow:0 30px 70px -45px rgba(67,20,12,.6);
  max-width:1120px;
  margin-inline:auto;
}
@media (max-width:820px){
  .auth-split{grid-template-columns:1fr;}
  .auth-split__brand{min-height:0 !important;}
}
.auth-split__brand{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:40px;
  padding:48px;
  min-height:480px;
  background:linear-gradient(135deg,var(--bordeaux-800),var(--bordeaux-900));
  color:var(--cream-100);
}
.auth-split__title{
  font-family:var(--font-display);
  font-size:34px;
  font-weight:var(--display-weight);
  line-height:1.15;
  color:var(--cream-50);
}
.auth-split__lead{
  margin-top:12px;
  max-width:300px;
  font-size:15px;
  line-height:1.6;
  color:rgba(234,220,192,.75);
}
.auth-split__pills{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:24px;
}
.auth-split__pills li{
  font-size:12.5px;
  padding:6px 12px;
  border:1px solid rgba(243,233,212,.25);
  border-radius:var(--r-pill);
}
.auth-split__form{
  padding:48px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
@media (max-width:600px){
  .auth-split__brand,.auth-split__form{padding:32px 24px;}
}

/* ---------- Champ de code OTP à 6 cases ---------- */
.otp-boxes{display:flex;gap:8px;justify-content:flex-start;}
@media (max-width:400px){.otp-boxes{gap:6px;}}

/* ---------- Grille tableau de bord ---------- */
.account{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:32px;
  align-items:start;
}
@media (max-width:900px){
  .account{grid-template-columns:1fr;gap:24px;}
}

.account__aside{
  position:sticky;
  top:calc(var(--header-h) + 16px);
  align-self:start;
}
@media (max-width:900px){.account__aside{position:static;}}

.account__identity{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  background:var(--cream-50);
  margin-bottom:16px;
}
.avatar{
  width:44px;height:44px;
  flex:none;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:linear-gradient(135deg,var(--bordeaux),var(--bordeaux-800));
  color:var(--cream-50);
  font-weight:700;
  font-size:15px;
  letter-spacing:.02em;
}
.account__name{font-weight:600;font-size:14.5px;line-height:1.2;}
.account__since{font-size:12px;color:var(--ink-55);margin-top:2px;}

.account__nav{display:flex;flex-direction:column;gap:6px;}
@media (max-width:900px){
  .account__nav{flex-direction:row;overflow-x:auto;padding-bottom:4px;}
  .account__nav::-webkit-scrollbar{display:none;}
}
.account__link{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  min-height:46px;
  border-radius:var(--r-btn);
  font-size:14.5px;
  font-weight:500;
  color:var(--ink-65);
  white-space:nowrap;
  text-align:left;
  transition:background-color .2s, color .2s;
}
.account__link:hover{background:rgba(234,220,192,.6);color:var(--ink);}
.account__link.is-active{background:var(--bordeaux);color:var(--cream-50);}
.account__link .icon{width:18px;height:18px;}

.account__logout{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  margin-top:12px;
  min-height:44px;
  font-size:13.5px;
  color:var(--ink-55);
  border-radius:var(--r-btn);
  transition:color .2s, background-color .2s;
}
.account__logout:hover{color:var(--st-red);background:rgba(166,58,42,.06);}
.account__logout .icon{width:18px;height:18px;}

.account__pane{display:none;}
.account__pane.is-active{display:block;}

.account__head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:24px;
}
.account__title{
  font-family:var(--font-display);
  font-size:30px;
  font-weight:var(--display-weight);
  margin-top:4px;
}
.account__sub{font-size:14.5px;color:var(--ink-55);margin-top:2px;}

/* ---------- Cartes de statistiques ---------- */
.stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-bottom:20px;
}
@media (max-width:640px){.stat-row{grid-template-columns:1fr;}}
.stat{
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:20px;
}
.stat__label{
  font-size:11.5px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--ink-55);
}
.stat__value{
  font-family:var(--font-display);
  font-size:30px;
  font-weight:var(--display-weight);
  line-height:1.1;
  margin-top:8px;
  overflow-wrap:anywhere;
}
.stat__unit{
  font-family:var(--font-body);
  font-size:15px;
  font-weight:500;
  color:var(--ink-40);
  margin-left:4px;
}

/* ---------- Carte de fidélité ---------- */
.loyalty-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--r-lg);
  background:linear-gradient(135deg,var(--bordeaux-800),var(--bordeaux-900));
  color:var(--cream-100);
  padding:28px;
  margin-bottom:20px;
}
.loyalty-card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}
.loyalty-card__title{
  font-family:var(--font-display);
  font-size:20px;
  font-weight:var(--display-weight);
  color:var(--cream-50);
}
.loyalty-card__tag{
  font-size:11.5px;
  font-weight:700;
  padding:4px 12px;
  border-radius:var(--r-pill);
  background:rgba(195,154,78,.15);
  color:var(--gold-300);
}
.loyalty-card__bar{
  height:12px;
  border-radius:var(--r-pill);
  background:rgba(243,233,212,.15);
  overflow:hidden;
}
.loyalty-card__fill{
  height:100%;
  border-radius:var(--r-pill);
  background:linear-gradient(90deg,var(--gold-300),var(--gold));
  transition:width .6s var(--ease);
}
.loyalty-card__legend{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
  font-size:13.5px;
  color:rgba(234,220,192,.75);
}
.loyalty-card__legend b{
  font-family:var(--font-display);
  color:var(--cream-50);
}
.loyalty-card__note{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
  padding:16px;
  border:1px dashed rgba(234,217,174,.4);
  border-radius:var(--r-btn);
}
.loyalty-card__note-icon{
  width:40px;height:40px;
  flex:none;
  display:grid;place-items:center;
  border-radius:var(--r-btn);
  background:rgba(234,217,174,.15);
  color:var(--gold-300);
}
.loyalty-card__note b{display:block;font-size:14px;color:var(--cream-50);}
.loyalty-card__note small{font-size:12.5px;color:rgba(234,220,192,.7);}

.loyalty-grid{
  display:grid;
  grid-template-columns:repeat(10,1fr);
  gap:10px;
  margin-top:16px;
}
@media (max-width:640px){.loyalty-grid{grid-template-columns:repeat(5,1fr);}}
.loyalty-stamp{
  aspect-ratio:1;
  display:grid;
  place-items:center;
  border-radius:var(--r-pill);
  border:1px dashed var(--line-strong);
  color:var(--ink-40);
  font-size:14px;
  font-weight:600;
  font-variant-numeric:tabular-nums;
}
.loyalty-stamp--filled{
  border:1px solid var(--bordeaux);
  background:var(--bordeaux);
  color:var(--cream-50);
}
.loyalty-stamp--gift{
  border:1px dashed var(--gold);
  color:var(--gold);
}
.loyalty-stamp--gift.is-unlocked{
  border-style:solid;
  background:var(--gold);
  color:var(--bordeaux-900);
}
.loyalty-stamp .icon{width:18px;height:18px;}

/* ---------- Panneaux ---------- */
.panel{
  background:var(--cream-50);
  border:1px solid var(--line);
  border-radius:var(--r-lg);
  padding:24px;
  margin-bottom:20px;
}
.panel__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}
.panel__title{font-family:var(--font-display);font-size:20px;font-weight:var(--display-weight);}
.panel__more{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:13px;
  font-weight:600;
  color:var(--bordeaux);
}
.panel__more .icon{width:15px;height:15px;}
.panel__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
  margin-top:20px;
}
.panel--danger{border-color:rgba(166,58,42,.3);}
.panel--danger .panel__title{color:var(--st-red);}
.btn--danger{
  background:transparent;
  color:var(--st-red);
  border-color:rgba(166,58,42,.4);
}
.btn--danger:hover{background:var(--st-red);color:var(--cream-50);border-color:var(--st-red);}

/* ---------- Liste de commandes / factures ---------- */
.order-list{display:flex;flex-direction:column;}
.order-list__empty{
  padding:32px 0;
  text-align:center;
  color:var(--ink-55);
  font-size:14.5px;
}
.order-row{
  display:grid;
  grid-template-columns:56px 1fr auto auto;
  align-items:center;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
  text-align:left;
  width:100%;
}
.order-row:last-child{border-bottom:0;}
.order-list--full .order-row{padding:18px 0;}
.order-row__thumb{
  width:56px;height:56px;
  border-radius:var(--r-btn);
  overflow:hidden;
  border:1px solid var(--line);
  background:radial-gradient(circle at 50% 45%, #fff, #FFEBCB);
}
.order-row__thumb img{width:100%;height:100%;object-fit:cover;}
.order-row__body{min-width:0;}
.order-row__name{
  font-weight:600;
  font-size:14.5px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.order-row__meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:6px;
  margin-top:3px;
  font-size:12.5px;
  color:var(--ink-55);
}
.order-row__meta .icon{width:14px;height:14px;}
.order-row__amount{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:15px;
  font-variant-numeric:tabular-nums;
  text-align:right;
  white-space:nowrap;
}
@media (max-width:560px){
  .order-row{grid-template-columns:44px 1fr;row-gap:10px;}
  .order-row__thumb{width:44px;height:44px;}
  .order-row__status{grid-column:2;justify-self:start;}
  .order-row__amount{grid-column:2;justify-self:start;text-align:left;}
}

/* Pastilles de statut : mêmes couleurs que le KDS admin */
.status{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:5px 12px;
  border-radius:var(--r-pill);
  font-size:11.5px;
  font-weight:700;
  white-space:nowrap;
  background:rgba(36,24,19,.06);
  color:var(--ink-55);
}
.status--received{background:rgba(46,90,168,.12);color:var(--st-blue);}
.status--preparing{background:rgba(185,131,43,.14);color:var(--st-amber);}
.status--ready{background:rgba(63,122,75,.14);color:var(--st-green);}
.status--done{background:rgba(36,24,19,.06);color:var(--ink-55);}
.status--cancelled{background:rgba(166,58,42,.12);color:var(--st-red);}

/* Détail d'une commande, déplié sous la ligne */
.order-detail{
  padding:4px 0 20px 72px;
  border-bottom:1px solid var(--line);
  font-size:13.5px;
  color:var(--ink-65);
}
@media (max-width:560px){.order-detail{padding-left:0;}}
.order-detail__line{display:flex;justify-content:space-between;gap:12px;padding-block:4px;}
.order-detail__sub{font-style:italic;font-size:12px;color:var(--ink-55);}

/* ---------- Formulaire de profil ---------- */
.profile-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
@media (max-width:640px){.profile-form{grid-template-columns:1fr;}}
.field--wide{grid-column:1 / -1;}
.field__label{display:flex;align-items:center;gap:8px;}

/* ---------- Préférences de notification ---------- */
.pref-list{display:flex;flex-direction:column;gap:4px;margin-top:16px;}
.pref{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:14px;
  border-radius:var(--r-btn);
  cursor:pointer;
  transition:background-color .18s;
}
.pref:hover{background:var(--cream-100);}
.pref input{
  width:18px;height:18px;
  margin-top:2px;
  flex:none;
  accent-color:var(--bordeaux);
}
.pref b{display:block;font-size:14.5px;font-weight:600;}
.pref small{display:block;margin-top:2px;font-size:12.5px;color:var(--ink-55);}

/* ---------- Modale compacte ---------- */
.modal__panel--sm{width:min(460px,100%);}
.dialog__title{
  font-family:var(--font-display);
  font-size:22px;
  font-weight:var(--display-weight);
  padding-right:44px;
}
.dialog__text{margin-top:10px;font-size:14.5px;color:var(--ink-65);line-height:1.6;}
.dialog__field{margin-top:20px;}
.dialog__actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:24px;
  flex-wrap:wrap;
}

/* ============================================================
   COMPOSITIONS DE MARQUE
   En-têtes centrés, cartes d'étapes à bloc de couleur, panneau
   rouge « Nous trouver », reprises du site Melting Pot actuel.
   ============================================================ */

/* ---------- En-tête de section centré ---------- */
.sec-head{
  text-align:center;
  max-width:720px;
  margin:0 auto clamp(36px,5vw,56px);
}
.sec-head--left{text-align:left;margin-inline:0;}

/* Chapô rouge encadré de tirets : « – NOTRE PROMESSE – » */
.eyebrow--flanked{
  display:inline-flex;
  align-items:center;
  gap:12px;
}
.eyebrow--flanked::before,
.eyebrow--flanked::after{
  content:"";
  width:18px;
  height:2px;
  background:currentColor;
  border-radius:2px;
}

.sec-head__title{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:clamp(32px,4.6vw,54px);
  line-height:1.06;
  letter-spacing:-.02em;
  margin-top:16px;
}
.sec-head__title em,
.sec-head__title .accent{
  font-style:normal;
  font-weight:inherit;
  color:var(--bordeaux);
}
.on-dark .sec-head__title em{color:var(--gold);}
.sec-head__lead{
  margin-top:14px;
  font-size:16.5px;
  color:var(--ink-55);
}
.sec-head__rule{
  display:block;
  width:64px;
  height:4px;
  margin:18px auto 0;
  border-radius:2px;
  background:var(--bordeaux);
}
.sec-head--left .sec-head__rule{margin-inline:0;}

/* ---------- Cartes d'étapes : bloc de couleur + carte blanche ---------- */
.steps{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:900px;
  margin-inline:auto;
}
.step{
  display:grid;
  grid-template-columns:170px 1fr;
  align-items:stretch;
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
}
@media (max-width:640px){
  .step{grid-template-columns:110px 1fr;}
}
.step__side{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:28px 16px;
  color:#fff;
}
.step--red .step__side{background:var(--bordeaux);}
.step--gold .step__side{background:var(--gold);color:var(--ink);}
.step--green .step__side{background:var(--olive);}
.step__num{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  border:2px solid currentColor;
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:20px;
  font-variant-numeric:tabular-nums;
}
.step__side .icon{width:52px;height:52px;stroke-width:1.4;}
@media (max-width:640px){
  .step__side{padding:20px 10px;gap:12px;}
  .step__num{width:38px;height:38px;font-size:17px;}
  .step__side .icon{width:36px;height:36px;}
}
.step__body{
  background:var(--cream-50);
  padding:28px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
@media (max-width:640px){.step__body{padding:20px;}}
.step__title{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:clamp(18px,2.2vw,23px);
  line-height:1.2;
}
.step__rule{
  display:block;
  width:44px;height:3px;
  margin:12px 0 14px;
  border-radius:2px;
}
.step--red .step__rule{background:var(--bordeaux);}
.step--gold .step__rule{background:var(--gold);}
.step--green .step__rule{background:var(--olive);}
.step__text{font-size:15px;line-height:1.6;color:var(--ink-65);}

/* ---------- Panneau rouge « Nous trouver » ---------- */
.find{
  position:relative;
  overflow:hidden;
  border-radius:var(--r-2xl);
  background:var(--bordeaux-900);
  color:#fff;
  padding:clamp(32px,5vw,56px);
}
.find__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(24px,4vw,48px);
  align-items:center;
}
@media (max-width:900px){.find__grid{grid-template-columns:1fr;}}
.find__title{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:clamp(30px,4.2vw,46px);
  line-height:1.05;
}
.find__title span{color:var(--gold);}
.find__list{margin-top:28px;}
.find__item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.14);
}
.find__item:last-child{border-bottom:0;}
.find__icon{
  width:44px;height:44px;
  flex:none;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:rgba(0,0,0,.28);
  color:var(--gold);
}
.find__label{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:17px;
}
.find__value{
  margin-top:3px;
  font-size:14.5px;
  line-height:1.55;
  color:rgba(255,255,255,.82);
  white-space:pre-line;
}
.find__value a{color:var(--gold);text-decoration:underline;text-underline-offset:3px;}
.find__value small{display:block;margin-top:4px;color:rgba(255,255,255,.55);font-size:12.5px;}
/* Photo de l'enseigne : c'est un cliché rectangulaire, pas un détourage.
   On l'encadre plutôt que d'appliquer une ombre portée qui suivrait le cadre. */
.find__photo img{
  width:100%;
  max-width:400px;
  /* La photo est un portrait très haut (l'enseigne sur fond de ciel) :
     on la recadre pour qu'elle reste alignée avec la colonne d'infos. */
  height:clamp(320px,42vw,460px);
  object-fit:cover;
  object-position:center 55%;
  margin-inline:auto;
  display:block;
  border-radius:var(--r-xl);
  box-shadow:0 26px 50px -24px rgba(0,0,0,.6);
}
@media (max-width:900px){
  .find__photo img{height:clamp(260px,55vw,360px);}
}
.find__cta{margin-top:32px;text-align:center;}

/* Séparateur « PAIEMENT 100 % EN LIGNE » */
.pay-head{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:36px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
}
.pay-head::before,.pay-head::after{
  content:"";
  flex:1;
  height:1px;
  background:rgba(255,255,255,.2);
}
.pay-head .icon{width:15px;height:15px;}
.find__pay-note{
  margin-top:10px;
  text-align:center;
  font-size:14px;
  color:rgba(255,255,255,.7);
}
.find__pay-list{
  margin-top:16px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.find__pay-list .pay-pill{
  border-color:rgba(255,255,255,.3);
  color:rgba(255,255,255,.9);
  border-radius:var(--r-pill);
  padding:9px 18px;
}
.find__map{
  margin-top:28px;
  border-radius:var(--r-xl);
  overflow:hidden;
  min-height:260px;
  background:var(--cream-200);
}
.find__map iframe{width:100%;height:100%;min-height:260px;border:0;display:block;}

/* ---------- Pastille ronde du hero ---------- */
.hero__seal{
  position:absolute;
  top:-22px;
  left:-26px;
  z-index:2;
  width:124px;height:124px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:14px;
  border-radius:var(--r-pill);
  background:var(--cream-50);
  box-shadow:var(--shadow);
}
.hero__seal b{
  display:block;
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:34px;
  line-height:1;
  color:var(--bordeaux);
}
.hero__seal span{
  display:block;
  margin-top:2px;
  font-size:10px;
  line-height:1.25;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink-65);
}
@media (max-width:1023px){
  .hero__seal{top:-16px;left:auto;right:-8px;width:88px;height:88px;}
  .hero__seal b{font-size:26px;}
  .hero__seal span{font-size:9px;}
}

/* ---------- Bandeau d'annonce avec icône ---------- */
.announce{
  background:var(--bordeaux);
  color:#fff;
  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  overflow:hidden;
}
.announce__track{
  display:flex;
  justify-content:center;
}
.announce__inner{
  display:inline-flex;
  align-items:center;
  gap:8px;
  /* Une seule ligne, jamais de retour : sur petit écran on fait défiler. */
  white-space:nowrap;
}
/* Le doublon ne sert qu'au défilement continu : masqué tant que ça tient. */
.announce__inner--dup{display:none;}
.announce .icon{width:15px;height:15px;flex:none;}
.announce strong{color:#fff;font-weight:700;}

/* Sous 720px le message ne tient pas sur une ligne : il défile en boucle
   plutôt que de se casser en trois lignes mal alignées. */
@media (max-width:720px){
  .announce{padding-inline:0;}
  .announce__track{
    justify-content:flex-start;
    width:max-content;
    animation:announce-scroll 18s linear infinite;
  }
  .announce__inner{padding-inline:20px;}
  .announce__inner--dup{display:inline-flex;}
}
@keyframes announce-scroll{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@media (prefers-reduced-motion:reduce){
  .announce__track{animation:none;}
  /* Sans animation, on garde le message lisible et centré, quitte à le tronquer. */
  @media (max-width:720px){
    .announce__track{justify-content:center;width:auto;}
    .announce__inner--dup{display:none;}
    .announce__inner{overflow:hidden;text-overflow:ellipsis;display:flex;}
  }
}

/* ============================================================
   RETOUCHES DE MARQUE : compte
   ============================================================ */

/* Soulignement tracé à la main, comme sous « Jarry ».
   Le trait est un masque : la couleur reste pilotée par un token. */
.swash{position:relative;display:inline-block;}
.swash::after{
  content:"";
  position:absolute;
  left:-2px;right:-6px;
  bottom:-.16em;
  height:.30em;
  background-color:var(--gold);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M4 14C48 5 122 5 196 11' stroke='%23000' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3Cpath d='M20 22C72 15 132 15 182 19' stroke='%23000' stroke-width='4' fill='none' stroke-linecap='round' opacity='.7'/%3E%3C/svg%3E") no-repeat center/100% 100%;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M4 14C48 5 122 5 196 11' stroke='%23000' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3Cpath d='M20 22C72 15 132 15 182 19' stroke='%23000' stroke-width='4' fill='none' stroke-linecap='round' opacity='.7'/%3E%3C/svg%3E") no-repeat center/100% 100%;
  pointer-events:none;
}
.swash--red::after{background-color:var(--bordeaux);}

/* Cartes de statistiques : liseré de couleur en tête, comme les étapes */
.stat{border-top:4px solid transparent;}
.stat--red{border-top-color:var(--bordeaux);}
.stat--gold{border-top-color:var(--gold);}
.stat--green{border-top-color:var(--olive);}

/* Champ légal restant à compléter : volontairement très visible pour qu'il
   ne puisse pas partir en production sans être vu. */
.todo{
  background:#FFE9A8;
  color:#7A5A00;
  font-weight:700;
  padding:1px 7px;
  border-radius:6px;
  border:1px dashed #C79A1E;
  white-space:normal;
}

/* Placeholder de carte : affiché tant que le consentement n'est pas donné. */
.map-placeholder{
  height:100%;
  min-height:260px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:28px 24px;
  text-align:center;
  color:var(--ink-65);
}
.map-placeholder .icon{width:26px;height:26px;color:var(--bordeaux);}
.map-placeholder strong{color:var(--ink);font-size:15px;}
.map-placeholder__text{font-size:13px;max-width:34ch;line-height:1.5;}
.map-placeholder .btn{margin-top:4px;}
.map-placeholder__link{
  font-size:12.5px;
  color:var(--bordeaux);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* Écran de bascule staff : affiché quand un membre de l'équipe se connecte
   depuis l'espace client, avant redirection vers la gestion. */
.staff-redirect{
  max-width:520px;
  margin-inline:auto;
  text-align:center;
  padding:48px 24px;
}
.staff-redirect__icon{
  width:64px;height:64px;
  margin:0 auto 24px;
  display:grid;place-items:center;
  border-radius:var(--r-pill);
  background:var(--bordeaux);
  color:#fff;
}
.staff-redirect__icon .icon{width:28px;height:28px;}
.staff-redirect__title{
  font-family:var(--font-display);
  font-weight:var(--display-weight);
  font-size:clamp(24px,3vw,32px);
}
.staff-redirect__text{
  margin-top:12px;
  color:var(--ink-65);
  font-size:15.5px;
  line-height:1.6;
}
.staff-redirect__actions{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}

/* ---------- Produit en rupture du jour ----------
   Il reste affiché, mais clairement signalé et non commandable. */
.dish--out{cursor:default;}
.dish--out .dish__media img{filter:grayscale(.85) opacity(.55);}
.dish--out:hover{border-color:var(--line);box-shadow:none;}
.dish--out:hover .dish__media img{transform:none;}
.dish--out .dish__name,
.dish--out .dish__price,
.dish--out .dish__desc{opacity:.6;}
.dish__out{
  position:absolute;
  left:12px;right:12px;bottom:12px;
  padding:7px 10px;
  border-radius:var(--r-sm);
  background:rgba(20,16,14,.82);
  color:#fff;
  font-size:11.5px;
  font-weight:700;
  text-align:center;
  letter-spacing:.01em;
}
/* Badge « Sauce du mois » sur la vignette. */
.badge--month{
  background:var(--gold);
  color:var(--bordeaux-900);
  font-weight:700;
}
