/* =====================================================================
   TOP CHICKEN — STYLE.CSS
   Charte : #171717 #D62828 #FAB040 #FFF883 #686868
   Typo   : Bebas Neue (titres) + Poppins (textes)
   ===================================================================== */

/* ----- IMPORT FONTS ----------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Bowlby+One+SC&family=DM+Sans:wght@400;500;600;700;800&display=swap');

/* ----- VARIABLES -------------------------------------------------- */
:root {
  /* Charte Top Chicken — Premium food app palette */
  --color-black:        #050505;
  --color-bg:           #050505;
  --color-bg-elevated:  #101010;
  --color-bg-card:      #161616;
  --color-bg-sunken:    #0b0b0b;
  --color-border:       rgba(255, 255, 255, 0.10);
  --color-border-strong: rgba(255, 255, 255, 0.18);
  --color-red:          #E11919;
  --color-red-bright:   #FF2A2A;
  --color-red-dark:     #A50F0F;
  --color-yellow:       #FFD21A;
  --color-yellow-light: #FFE873;
  --color-yellow-dark:  #F5B800;
  --color-gold:         #FFD21A;
  --color-gray:         #6E6E6E;
  --color-gray-light:   #AFAFAF;
  --color-white:        #F5F5F5;
  --color-white-pure:   #FFFFFF;

  /* Dérivées (overlays/glow) */
  --color-red-10:    rgba(225, 25, 25, 0.10);
  --color-red-20:    rgba(225, 25, 25, 0.20);
  --color-red-30:    rgba(225, 25, 25, 0.32);
  --color-yellow-10: rgba(255, 210, 26, 0.10);
  --color-yellow-20: rgba(255, 210, 26, 0.22);
  --color-overlay:   rgba(0, 0, 0, 0.82);
  --color-error:     #FF4444;
  --color-warning:   #FF8C00;
  --color-success:   #19D26A;

  /* Shadow tokens */
  --shadow-card:    0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-hover:   0 12px 32px rgba(0, 0, 0, 0.55);
  --shadow-red:     0 8px 28px -8px rgba(225, 25, 25, 0.55);
  --shadow-gold:    0 8px 28px -8px rgba(255, 210, 26, 0.45);

  /* Typographie */
  --font-display: 'Bowlby One SC', 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* Espacements */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow:   0.6s ease;

  /* Layout */
  --header-height-desktop: 76px;
  --header-height-mobile:  64px;
  --max-width: 1400px;
}

/* ----- RESET ------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;          /* clip = browser ignore overflow, plus fiable iOS */
  font-weight: 400;
  width: 100%;
  max-width: 100vw;
  position: relative;
  touch-action: pan-y pinch-zoom;  /* bloque pan horizontal */
  -webkit-overflow-scrolling: touch;
}

/* Tous les blocs principaux contraints largeur viewport */
header, main, footer, section, aside, nav {
  max-width: 100%;
}
/* Images jamais > viewport */
img, video, picture, svg, iframe {
  max-width: 100%;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-yellow);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-yellow-light); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol { list-style: none; }

input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ----- A11Y GLOBAL ------------------------------------------------ */
/* Skip-to-content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-display);
  padding: 0.8rem 1.2rem;
  border-radius: 0 0 12px 0;
  z-index: 9999;
  letter-spacing: 0.05em;
  transition: top var(--transition-fast);
  text-decoration: none;
}
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--color-red);
  outline-offset: 2px;
}

/* Focus visible global — anneau jaune brand pour clavier nav */
*:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

/* Cursor pointer sur tous clickables */
button:not(:disabled),
[role="button"],
a,
label,
.option-item,
.specialty-card,
.feature,
.review,
.hero-cta,
.hero-trust-pill,
.cart-icon,
.hamburger { cursor: pointer; }
button:disabled { cursor: not-allowed; }

/* prefers-reduced-motion: désactive animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Selection color brand */
::selection {
  background: var(--color-red);
  color: var(--color-white);
}

/* ----- UTILITAIRES ----------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.glow-red    { text-shadow: 0 0 10px var(--color-red),    0 0 20px var(--color-red-20); }
.glow-yellow { text-shadow: 0 0 10px var(--color-yellow), 0 0 20px var(--color-yellow-10); }

.text-red          { color: var(--color-red); }
.text-yellow       { color: var(--color-yellow); }
.text-yellow-light { color: var(--color-yellow-light); }

.divider-red {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-red), var(--color-yellow), transparent);
  margin: var(--spacing-lg) 0;
  border: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  padding-bottom: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  text-align: center;
  line-height: 1;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--color-red-20);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-align: center;
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  font-weight: 300;
}

/* =====================================================================
   PREMIUM BUTTON SYSTEM — `.btn` + variantes + tailles + états + icônes
   Aliasing: tc-cta, tc-cart-cta-btn, tc-sheet-cta-btn héritent .btn
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  min-height: 48px;                /* tap target ≥44px */
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 14px;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
}
/* Subtle gloss layer on hover */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: 0;
}
.btn:hover::before { opacity: 1; }
.btn > * { position: relative; z-index: 1; }
.btn > svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn:active { transform: translateY(0) scale(0.97); }
.btn:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}
.btn[disabled], .btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.4);
}
.btn.is-loading {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}
.btn.is-loading::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 20px; height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  border: 2.5px solid currentColor;
  border-right-color: transparent;
  opacity: 0.95;
  color: var(--color-white);
  animation: btn-spin 0.7s linear infinite;
  z-index: 2;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ----- PRIMARY (Rouge plein → hover Jaune) ----- */
.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
  box-shadow: 0 10px 24px -8px rgba(214,40,40,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.btn-primary:hover {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0 14px 32px -8px rgba(250,176,64,0.6), 0 0 0 1px rgba(0,0,0,0.05) inset;
  transform: translateY(-2px);
}

/* ----- SECONDARY (Outline jaune) ----- */
.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: var(--color-yellow);
  border-color: rgba(250,176,64,0.55);
}
.btn-secondary:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  box-shadow: 0 10px 24px -8px rgba(250,176,64,0.5);
  transform: translateY(-2px);
}

/* ----- GHOST (transparent, hover subtle) ----- */
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.35);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ----- SUCCESS (vert pour valider commande) ----- */
.btn-success {
  background: var(--color-success);
  color: var(--color-white);
  border-color: var(--color-success);
  box-shadow: 0 10px 24px -8px rgba(0,184,80,0.55);
}
.btn-success:hover {
  background: #00d35d;
  border-color: #00d35d;
  box-shadow: 0 14px 32px -8px rgba(0,184,80,0.7);
  transform: translateY(-2px);
}

/* ----- WARNING (jaune brand pour CTA secondaires impact) ----- */
.btn-warning {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  box-shadow: 0 10px 24px -8px rgba(250,176,64,0.6);
}
.btn-warning:hover {
  background: var(--color-yellow-light);
  border-color: var(--color-yellow-light);
  transform: translateY(-2px);
}

/* ----- DANGER (rouge erreur, supprimer) ----- */
.btn-danger {
  background: var(--color-error);
  color: var(--color-white);
  border-color: var(--color-error);
  box-shadow: 0 8px 22px -8px rgba(255,68,68,0.55);
}
.btn-danger:hover {
  background: #ff6b6b;
  border-color: #ff6b6b;
  box-shadow: 0 12px 28px -8px rgba(255,68,68,0.7);
  transform: translateY(-2px);
}

/* ----- SIZES ----- */
.btn-xs    { padding: 0.4rem 0.8rem;  font-size: 0.78rem; min-height: 32px;  border-radius: 10px; }
.btn-sm,
.btn-small { padding: 0.55rem 1.05rem; font-size: 0.88rem; min-height: 38px;  border-radius: 12px; }
.btn-md    { padding: 0.9rem 1.6rem;  font-size: 1.05rem; min-height: 48px; }
.btn-lg,
.btn-large { padding: 1.1rem 2.2rem;  font-size: 1.25rem; min-height: 56px; border-radius: 16px; }
.btn-xl    { padding: 1.35rem 2.8rem; font-size: 1.4rem;  min-height: 64px; border-radius: 18px; }

/* ----- BLOCK (pleine largeur) ----- */
.btn-block { display: flex; width: 100%; }

/* ----- ICONIQUE (icône seule) ----- */
.btn-icon {
  width: 44px;
  min-height: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-icon > svg { width: 22px; height: 22px; }

/* ----- PULSE (CTA principal qui attire l'œil) ----- */
.btn-pulse {
  animation: btn-pulse 2.6s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 10px 24px -8px rgba(214,40,40,0.55), 0 0 0 0    rgba(214,40,40,0.5); }
  50%      { box-shadow: 0 10px 24px -8px rgba(214,40,40,0.55), 0 0 0 14px rgba(214,40,40,0); }
}

/* ----- SPLIT (label gauche + prix droite, type cart) ----- */
.btn-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.95rem 1.4rem;
}
.btn-split > .btn-split-end {
  padding-left: 0.8rem;
  border-left: 1px solid rgba(255,255,255,0.22);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.btn-warning.btn-split > .btn-split-end,
.btn-success.btn-split > .btn-split-end { border-left-color: rgba(0,0,0,0.22); }

/* Disabled global override */
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.4);
}

/* ----- ALIAS héritage pour boutons existants ----- */
.tc-cart-cta-btn,
.tc-sheet-cta-btn,
.hero-cta,
.hero-v4-btn { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* ----- CARDS ----------------------------------------------------- */
.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-red);
  box-shadow: 0 8px 30px var(--color-red-20);
}

/* ----- BADGE ----------------------------------------------------- */
.badge {
  display: inline-block;
  padding: 0.28rem 0.78rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--color-yellow);
  color: var(--color-black);
}
.badge-new       { background: var(--color-yellow); color: var(--color-black); }
.badge-bestseller{ background: var(--color-red);    color: var(--color-white); }
.badge-spicy     { background: var(--color-error);  color: var(--color-white); }
.badge-special   { background: var(--color-warning); color: var(--color-black); }

/* ----- LOADER ---------------------------------------------------- */
.loader {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-red);
  border-right-color: var(--color-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: var(--spacing-md) auto;
  box-shadow: 0 0 20px var(--color-red-20);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----- TOAST ----------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--color-bg-elevated);
  border-left: 4px solid var(--color-red);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
  animation: toast-slide-in 0.3s ease;
  max-width: 350px;
  pointer-events: auto;
  font-weight: 500;
}
.toast-success { border-left-color: var(--color-success); }
.toast-error   { border-left-color: var(--color-error); }
.toast-info    { border-left-color: var(--color-yellow); }
@keyframes toast-slide-in {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.toast.toast-out { animation: toast-slide-out 0.3s ease forwards; }
@keyframes toast-slide-out {
  to { transform: translateX(120%); opacity: 0; }
}

/* ----- MODAL ----------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--spacing-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-red-20);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 60px var(--color-red-20);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 2;
}
.modal-close:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: rotate(90deg);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: var(--spacing-sm);
  padding-right: 40px;
  letter-spacing: 0.03em;
  color: var(--color-yellow);
}
.modal-body { margin-bottom: var(--spacing-md); }
.modal-footer {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: flex-end;
  border-top: 1px solid var(--color-border);
  padding-top: var(--spacing-sm);
}

/* ----- HEADER ---------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-desktop);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--color-red-20);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--spacing-md);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-white);
  letter-spacing: 0.04em;
  justify-self: start;
  line-height: 1;
}
.logo img {
  height: 48px;
  width: auto;
}
.logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.logo .logo-text-top    { color: var(--color-white); }
.logo .logo-text-bottom { color: var(--color-yellow); font-size: 0.6em; letter-spacing: 0.12em; }

.nav {
  display: flex;
  gap: var(--spacing-md);
  align-items: center;
  justify-self: center;
}
.header-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  justify-self: end;
}
.nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-white);
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-red);
  transition: width var(--transition-normal);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--color-yellow); }

.cart-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.cart-icon:hover {
  border-color: var(--color-red);
  box-shadow: 0 0 15px var(--color-red-20);
}
.cart-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-white);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 11px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--color-red);
  display: none;
}
.cart-badge.visible { display: flex; }

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  transition: all var(--transition-fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----- BANNIÈRE FERMETURE --------------------------------------- */
.closed-banner {
  position: fixed;
  top: var(--header-height-desktop);
  left: 0;
  right: 0;
  background: var(--color-error);
  color: var(--color-white);
  text-align: center;
  padding: 0.6rem var(--spacing-sm);
  font-weight: 500;
  z-index: 99;
  font-size: 0.95rem;
}
.closed-banner.hidden { display: none; }

/* =====================================================================
   HERO V4 — carousel food + headline animé + flame SVG + status pill
   ===================================================================== */
.hero-v4 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: calc(var(--header-height-desktop) + 1.5rem) var(--spacing-md) 4rem;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero-v4-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-v4-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(214,40,40,0.32), transparent 50%),
    radial-gradient(ellipse at 25% 85%, rgba(250,176,64,0.20), transparent 55%),
    radial-gradient(ellipse at center, #1c1010 0%, #0a0a0a 70%, #000 100%);
}
.hero-v4-flame {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-v4-flame-1 {
  width: 600px; height: 600px;
  right: -10%; top: 10%;
  background: radial-gradient(circle, rgba(255,80,30,0.45), transparent 60%);
  animation: flame-pulse 5s ease-in-out infinite alternate;
}
.hero-v4-flame-2 {
  width: 400px; height: 400px;
  left: -10%; bottom: 0;
  background: radial-gradient(circle, rgba(250,176,64,0.35), transparent 60%);
  animation: flame-pulse 6s ease-in-out infinite alternate-reverse;
}
@keyframes flame-pulse {
  0%   { transform: translate(0, 0)        scale(1);    opacity: 0.85; }
  100% { transform: translate(-20px, -10px) scale(1.08); opacity: 1; }
}
.hero-v4-spark {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 12px var(--color-yellow), 0 0 24px var(--color-red);
  animation: spark-rise 8s ease-in-out infinite;
}
.hero-v4-spark-1 { left: 20%; bottom: -20px; animation-delay: 0s;   }
.hero-v4-spark-2 { left: 60%; bottom: -20px; animation-delay: 2s;   }
.hero-v4-spark-3 { left: 80%; bottom: -20px; animation-delay: 4.5s; }
.hero-v4-spark-4 { left: 40%; bottom: -20px; animation-delay: 6s;   }
@keyframes spark-rise {
  0%   { transform: translateY(0)      scale(0.6); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(-90vh)  scale(1.4); opacity: 0; }
}
.hero-v4-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3' /></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* header transparent over hero */
body:has(.hero-v4) .header {
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0));
  border-bottom-color: transparent;
  transition: background var(--transition-normal), border-color var(--transition-normal);
}
body:has(.hero-v4.scrolled-past) .header {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--color-red-20);
}

.hero-v4-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-v4-text {
  animation: hero-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* OUVERT status pill — animated */
.hero-v4-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 184, 80, 0.12);
  border: 1px solid rgba(0, 184, 80, 0.5);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #58E08A;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
}
.hero-v4-status.is-closed {
  background: rgba(255, 68, 68, 0.12);
  border-color: rgba(255, 68, 68, 0.5);
  color: #FF6B6B;
}
.hero-v4-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00B850;
  box-shadow: 0 0 8px #00B850;
  animation: status-pulse 1.8s ease-in-out infinite;
}
.hero-v4-status.is-closed .hero-v4-status-dot {
  background: #FF4444;
  box-shadow: 0 0 8px #FF4444;
}
@keyframes status-pulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.35); opacity: 0.6; }
}

.hero-v4-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(250,176,64,0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  color: var(--color-yellow);
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}
.hero-v4-eyebrow svg { width: 16px; height: 16px; }

.hero-v4-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.hero-v4-title-1 {
  display: block;
  position: relative;
}
.hero-v4-stroke {
  color: transparent;
  -webkit-text-stroke: 3px var(--color-red);
  text-shadow: 0 0 40px rgba(214,40,40,0.5);
}
.hero-v4-title-2 {
  display: block;
  position: relative;
}
.hero-v4-chicken {
  color: var(--color-yellow);
  text-shadow: 0 0 40px rgba(250,176,64,0.55);
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #FFE600 0%, #FAB040 50%, #D62828 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(250,176,64,0.4));
}
.hero-v4-chicken-flame {
  position: absolute;
  left: -8%;
  top: -15%;
  width: 80px;
  height: 100px;
  z-index: 1;
  opacity: 0.55;
  animation: chicken-flame-flicker 2s ease-in-out infinite;
}
@keyframes chicken-flame-flicker {
  0%, 100% { transform: scale(1)    rotate(-2deg); opacity: 0.55; }
  50%      { transform: scale(1.15) rotate(2deg);  opacity: 0.75; }
}

.hero-v4-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0 0 1.3rem;
}
.hero-v4-tagline .word-w { color: var(--color-white); }
.hero-v4-tagline .word-y { color: var(--color-yellow); margin-left: 0.2em; }
.hero-v4-tagline .word-r { color: var(--color-red);    margin-left: 0.2em; }

.hero-v4-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 0 1.4rem;
  font-weight: 300;
}
.hero-v4-sub strong { color: var(--color-yellow); font-weight: 600; }

.hero-v4-pricing {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(250,176,64,0.15), rgba(214,40,40,0.1));
  border: 1px solid rgba(250,176,64,0.45);
  border-radius: 12px;
  margin-bottom: 1.6rem;
}
.hero-v4-pricing-label {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-v4-pricing-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-yellow);
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px var(--color-yellow-20);
}

.hero-v4-cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.hero-v4-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 48px;
}
.hero-v4-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.hero-v4-btn:active { transform: scale(0.97); }
.hero-v4-btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 12px 32px rgba(214,40,40,0.45), 0 0 0 0 rgba(214,40,40,0.5);
  animation: hero-v4-pulse 2.6s ease-in-out infinite;
}
@keyframes hero-v4-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(214,40,40,0.45), 0 0 0 0    rgba(214,40,40,0.5); }
  50%      { box-shadow: 0 12px 32px rgba(214,40,40,0.45), 0 0 0 18px rgba(214,40,40,0); }
}
.hero-v4-btn-primary:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-2px);
  animation: none;
}
.hero-v4-btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}
.hero-v4-btn-ghost:hover {
  background: rgba(250,176,64,0.12);
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

.hero-v4-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero-v4-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-white);
  backdrop-filter: blur(6px);
}
.hero-v4-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-yellow);
  flex-shrink: 0;
}

/* CAROUSEL VISUAL */
.hero-v4-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
  animation: hero-fade-up 1.1s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v4-stamp {
  position: absolute;
  top: 4%;
  right: 4%;
  z-index: 5;
  width: 130px;
  height: 130px;
  color: var(--color-yellow);
  filter: drop-shadow(0 6px 18px rgba(250,176,64,0.4));
  animation: stamp-spin 22s linear infinite;
}
.hero-v4-stamp svg { width: 100%; height: 100%; }
@keyframes stamp-spin { to { transform: rotate(360deg); } }

.hero-v4-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.hero-v4-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.hero-v4-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.hero-v4-slide img {
  width: 100%;
  max-width: 480px;
  height: auto;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8));
  animation: slide-float 4s ease-in-out infinite;
}
@keyframes slide-float {
  0%, 100% { transform: translateY(0)    rotate(0); }
  50%      { transform: translateY(-14px) rotate(-1deg); }
}
.hero-v4-slide-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 25%;
  left: 20%;
  background: radial-gradient(circle, rgba(250,176,64,0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.hero-v4-slide-label {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  padding: 0.4rem 1rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.hero-v4-dots {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 4;
}
.hero-v4-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}
.hero-v4-dot:hover { background: rgba(255,255,255,0.5); }
.hero-v4-dot.is-active {
  background: var(--color-yellow);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px var(--color-yellow);
}

/* scroll indicator at bottom */
.hero-v4-scroll {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 26px;
  height: 42px;
  border: 2px solid var(--color-yellow);
  border-radius: 14px;
  transform: translateX(-50%);
  z-index: 3;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  transition: all var(--transition-fast);
}
.hero-v4-scroll span {
  width: 3px;
  height: 8px;
  background: var(--color-yellow);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}
.hero-v4-scroll:hover { background: var(--color-yellow); box-shadow: 0 0 18px var(--color-yellow-20); }
.hero-v4-scroll:hover span { background: var(--color-black); }
@media (min-width: 992px) {
  .hero-v4-scroll { display: flex; }
}

@media (max-width: 992px) {
  .hero-v4 { min-height: auto; padding: calc(var(--header-height-mobile) + 1rem) var(--spacing-sm) 3rem; }
  .hero-v4-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-v4-visual { order: -1; min-height: 340px; height: 360px; }
  .hero-v4-stamp { width: 90px; height: 90px; top: 0; right: 0; }
  .hero-v4-slide img { max-height: 75%; }
  .hero-v4-slide-label { font-size: 1.1rem; }
  .hero-v4-cta-row { gap: 0.5rem; }
  .hero-v4-btn { font-size: 1rem; padding: 0.85rem 1.2rem; }
  .hero-v4-btn-primary,
  .hero-v4-btn-ghost { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-v4-trust-item { font-size: 0.72rem; padding: 0.32rem 0.65rem; }
  .hero-v4-chicken-flame { width: 50px; height: 70px; left: -4%; top: -10%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v4-text,
  .hero-v4-visual,
  .hero-v4-slide,
  .hero-v4-slide img,
  .hero-v4-flame,
  .hero-v4-spark,
  .hero-v4-btn-primary,
  .hero-v4-stamp,
  .hero-v4-chicken-flame,
  .hero-v4-status-dot { animation: none !important; }
}

/* =====================================================================
   HERO V3 — legacy (conservé pour compat, masqué si v4 présent)
   ===================================================================== */
.hero-v3 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: calc(var(--header-height-desktop) + 2rem) var(--spacing-md) 4rem;
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero-v3-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-v3-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(214,40,40,0.28), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(250,176,64,0.18), transparent 55%),
    radial-gradient(ellipse at center, #1a1010 0%, #0a0a0a 70%, #000 100%);
}
.hero-v3-flame {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(255,80,30,0.35), transparent 45%),
    radial-gradient(circle at 65% 50%, rgba(255,180,40,0.18), transparent 35%);
  mix-blend-mode: screen;
  animation: hero-flame 6s ease-in-out infinite alternate;
}
@keyframes hero-flame {
  0%   { transform: translateY(0) scale(1);   opacity: 0.9; }
  100% { transform: translateY(-12px) scale(1.04); opacity: 1; }
}
.hero-v3-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='3' /></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.4'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* Header transparent au-dessus du hero (pas de doublon de logo) */
body:has(.hero-v3) .header {
  background: linear-gradient(to bottom, rgba(10,10,10,0.55), rgba(10,10,10,0));
  border-bottom-color: transparent;
  transition: background var(--transition-normal), border-color var(--transition-normal);
}
body:has(.hero-v3.scrolled-past) .header {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--color-red-20);
}

.hero-v3-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-v3-text {
  animation: hero-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(250,176,64,0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--color-yellow);
  margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
}
.hero-v3-eyebrow svg { width: 16px; height: 16px; }

.hero-v3-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}
.hero-v3-title-line1 { display: block; color: var(--color-red); text-shadow: 0 0 30px rgba(214,40,40,0.45); }
.hero-v3-title-line2 { display: block; color: var(--color-yellow); text-shadow: 0 0 30px rgba(250,176,64,0.45); }
.hero-v3-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin: 0 0 1.4rem;
}
.hero-v3-tagline .word-w { color: var(--color-white); }
.hero-v3-tagline .word-y { color: var(--color-yellow); margin-left: 0.2em; }
.hero-v3-tagline .word-r { color: var(--color-red);    margin-left: 0.2em; }
.hero-v3-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 0 1.8rem;
  font-weight: 300;
}
.hero-v3-sub strong { color: var(--color-yellow); font-weight: 600; }

.hero-v3-cta-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.hero-v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.6rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  min-height: 48px;
}
.hero-v3-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.hero-v3-btn:active { transform: scale(0.97); }
.hero-v3-btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 12px 32px rgba(214,40,40,0.45), 0 0 0 0 rgba(214,40,40,0.5);
  animation: hero-v3-pulse 2.6s ease-in-out infinite;
}
@keyframes hero-v3-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(214,40,40,0.45), 0 0 0 0    rgba(214,40,40,0.5); }
  50%      { box-shadow: 0 12px 32px rgba(214,40,40,0.45), 0 0 0 16px rgba(214,40,40,0); }
}
.hero-v3-btn-primary:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-2px);
  animation: none;
}
.hero-v3-btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}
.hero-v3-btn-ghost:hover {
  background: rgba(250,176,64,0.12);
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

.hero-v3-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.hero-v3-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-white);
  backdrop-filter: blur(6px);
}
.hero-v3-trust-ico {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--color-yellow);
}
.hero-v3-trust-ico svg { width: 100%; height: 100%; }

/* Visuel droit — photos food + stamp 100% */
.hero-v3-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  animation: hero-fade-up 1.1s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-v3-food {
  position: absolute;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.75));
  transition: transform 0.6s ease;
}
.hero-v3-food-1 {
  width: 78%;
  bottom: 5%;
  left: 8%;
  z-index: 2;
  animation: hero-float-1 6s ease-in-out infinite;
}
.hero-v3-food-2 {
  width: 55%;
  top: 8%;
  right: 0;
  z-index: 1;
  opacity: 0.95;
  animation: hero-float-2 7s ease-in-out infinite;
}
@keyframes hero-float-1 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(-1.5deg); }
}
@keyframes hero-float-2 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
.hero-v3-stamp {
  position: absolute;
  top: 4%;
  left: 4%;
  z-index: 3;
  width: 130px;
  height: 130px;
  color: var(--color-yellow);
  filter: drop-shadow(0 6px 18px rgba(250,176,64,0.4));
  animation: hero-stamp-spin 22s linear infinite;
}
.hero-v3-stamp svg { width: 100%; height: 100%; }
@keyframes hero-stamp-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .hero-v3 { min-height: auto; padding: calc(var(--header-height-mobile) + 1.5rem) var(--spacing-sm) 3rem; }
  .hero-v3-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-v3-visual { order: -1; min-height: 280px; height: 320px; }
  .hero-v3-food-1 { width: 65%; bottom: 0; left: 18%; }
  .hero-v3-food-2 { width: 42%; top: 5%; right: 5%; }
  .hero-v3-stamp { width: 90px; height: 90px; top: 0; left: 0; }
  .hero-v3-cta-row { gap: 0.5rem; }
  .hero-v3-btn { font-size: 1rem; padding: 0.85rem 1.2rem; }
  .hero-v3-btn-primary,
  .hero-v3-btn-ghost { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-v3-trust-item { font-size: 0.75rem; padding: 0.35rem 0.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v3-text,
  .hero-v3-visual,
  .hero-v3-food-1,
  .hero-v3-food-2,
  .hero-v3-flame,
  .hero-v3-btn-primary,
  .hero-v3-stamp { animation: none !important; }
}

.hero-banner-frame {
  position: relative;
  width: 100%;
  display: block;
  line-height: 0;
}
.hero-banner-pic,
.hero-banner-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  animation: hero-banner-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes hero-banner-in {
  from { opacity: 0; transform: scale(1.015); }
  to   { opacity: 1; transform: scale(1); }
}

/* Conteneurs hit-zones (en absolute, % de la bannière) */
.hero-hits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-hits .hero-hit { pointer-events: auto; }

.hero-hit {
  position: absolute;
  display: block;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  border-radius: 14px;
  transition: transform 0.18s ease, background 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
}
.hero-hit:hover {
  background: rgba(255, 248, 131, 0.10);
  box-shadow: inset 0 0 0 2px var(--color-yellow), 0 0 22px var(--color-yellow-20);
}
.hero-hit:active { transform: scale(0.97); }
.hero-hit:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: -2px;
}

/* CTA principal : halo rouge pulsé pour signaler interactivité */
.hero-hit-cta,
.hero-hit-cta-d {
  border-radius: 12px;
  animation: hero-hit-pulse 2.6s ease-in-out infinite;
}
.hero-hit-cta:hover,
.hero-hit-cta-d:hover {
  animation: none;
  background: rgba(255, 248, 131, 0.14);
  box-shadow: inset 0 0 0 2px var(--color-yellow), 0 0 30px rgba(250,176,64,0.35);
}
@keyframes hero-hit-pulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(255,255,255,0), 0 0 0 0    rgba(255,255,255,0.45); }
  50%      { box-shadow: inset 0 0 0 0 rgba(255,255,255,0), 0 0 0 14px rgba(255,255,255,0); }
}

/* ----- POSITIONS MOBILE (banner 941 × 1672) ----- */
.hero-hits-desktop { display: none; }

.hero-hit-cta {
  left: 18%;
  width: 64%;
  top: 72.8%;
  height: 7.5%;
}
.hero-hit-trust {
  top: 81.5%;
  height: 8.8%;
  width: 28%;
}
.hero-hit-trust-1 { left: 4.5%; }
.hero-hit-trust-2 { left: 36%; }
.hero-hit-trust-3 { left: 67.5%; }

/* ----- POSITIONS DESKTOP (banner 1672 × 941) ----- */
@media (min-width: 769px) {
  .hero-hits-mobile  { display: none; }
  .hero-hits-desktop { display: block; }

  .hero-hit-cta-d {
    left: 10.5%;
    width: 26%;
    top: 52.5%;
    height: 10.5%;
  }
  .hero-hit-trust-d {
    top: 67%;
    height: 14%;
    width: 7%;
  }
  .hero-hit-trust-d-1 { left: 10.5%; }
  .hero-hit-trust-d-2 { left: 20%; }
  .hero-hit-trust-d-3 { left: 29.5%; }
}

/* ----- HERO ANCIEN (conservé pour compat, masqué) --------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--header-height-desktop) var(--spacing-md) var(--spacing-md);
  background:
    radial-gradient(ellipse at top, var(--color-red-10), transparent 65%),
    radial-gradient(ellipse at bottom, var(--color-yellow-10), transparent 65%),
    var(--color-black);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><path d='M0 50 Q 25 30 50 50 T 100 50' stroke='%23D62828' stroke-width='0.3' fill='none' opacity='0.08'/></svg>");
  opacity: 0.4;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.75) 70%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  animation: hero-fade-in 1s ease;
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo-big {
  max-width: 240px;
  margin: 0 auto var(--spacing-md);
  filter: drop-shadow(0 0 30px var(--color-red-20));
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}
.hero h1 .accent-red    { color: var(--color-red); text-shadow: 0 0 25px var(--color-red-20); }
.hero h1 .accent-yellow { color: var(--color-yellow); text-shadow: 0 0 25px var(--color-yellow-10); }

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-yellow);
  margin-bottom: var(--spacing-sm);
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin: var(--spacing-sm) 0 var(--spacing-md);
  line-height: 1.15;
}
.hero-tagline .word-1 { color: var(--color-white); }
.hero-tagline .word-2 { color: var(--color-yellow); }
.hero-tagline .word-3 { color: var(--color-red); }

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.85;
  margin-bottom: var(--spacing-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  opacity: 0.85;
}
.hero-trust-item span:first-child {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px var(--color-red));
}

/* ----- SECTION GÉNÉRIQUE ----------------------------------------- */
.section {
  padding: var(--spacing-xl) var(--spacing-md);
  position: relative;
}
.section-dark    { background: var(--color-black); }
.section-bg      { background: var(--color-bg); }
.section-elev    { background: var(--color-bg-elevated); }

/* ----- REVEAL ON SCROLL ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- SPECIALITES ----------------------------------------------- */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.specialty-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-normal);
}
.specialty-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-red);
  box-shadow: 0 20px 40px var(--color-red-20);
}
.specialty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.97));
  z-index: 1;
}
.specialty-emoji,
.specialty-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);
  font-size: 9rem;
  z-index: 0;
  opacity: 0.85;
  transition: transform var(--transition-slow), color var(--transition-slow);
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
}
.specialty-svg {
  width: 150px;
  height: 150px;
  color: var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialty-svg svg { width: 100%; height: 100%; }
.specialty-card:hover .specialty-emoji,
.specialty-card:hover .specialty-svg {
  transform: translate(-50%, -65%) scale(1.18) rotate(-3deg);
}
.specialty-card:hover .specialty-svg { color: var(--color-red); }

/* Photo réelle dans card spécialité — remplit + zoom hover */
.specialty-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: brightness(0.85) saturate(1.05);
}
.specialty-card:hover .specialty-photo {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.15);
}
.specialty-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  z-index: 2;
}
.specialty-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.specialty-desc { opacity: 0.88; font-size: 0.95rem; font-weight: 300; }
.specialty-cta {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  color: var(--color-red);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* ----- SECTION HERO MENU (visuel charte tacos) ------------------ */
.hero-menu-visual {
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-menu-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ----- POURQUOI ------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.feature {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: 0 8px 30px var(--color-yellow-10);
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  filter: drop-shadow(0 0 10px var(--color-red));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 52px;
  height: 52px;
  color: var(--color-yellow);
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.feature:hover .feature-icon svg {
  color: var(--color-red);
  transform: scale(1.08);
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-yellow);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.feature p {
  opacity: 0.8;
  font-size: 0.95rem;
  font-weight: 300;
}

/* ----- INCONTOURNABLES (SLIDER) -------------------------------- */
.slider-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.slider {
  display: flex;
  gap: var(--spacing-sm);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--spacing-sm);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-red) var(--color-bg-elevated);
  touch-action: pan-x pan-y;
}
.slider::-webkit-scrollbar { height: 6px; }
.slider::-webkit-scrollbar-track { background: var(--color-bg-elevated); border-radius: 3px; }
.slider::-webkit-scrollbar-thumb { background: var(--color-red); border-radius: 3px; }

.slider-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.slider-btn:hover {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 0 15px var(--color-red);
}

/* ----- ÉTAPES (Comment ça marche) ------------------------------ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.step {
  text-align: center;
  position: relative;
  padding: var(--spacing-md);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  background: linear-gradient(135deg, var(--color-red), var(--color-yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.step-icon {
  font-size: 2.5rem;
  margin: var(--spacing-sm) 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg {
  width: 44px;
  height: 44px;
  color: var(--color-yellow);
  filter: drop-shadow(0 0 12px rgba(250,176,64,0.4));
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--color-yellow);
}
.step p { opacity: 0.78; font-size: 0.9rem; margin-top: 0.3rem; font-weight: 300; }

/* ----- AVIS GOOGLE ---------------------------------------------- */
.reviews-header {
  text-align: center;
  margin-bottom: var(--spacing-md);
}
.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.4rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.reviews-google-badge svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.reviews-google-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
}
.reviews-google-rating strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.reviews-stars-row {
  display: inline-flex;
  gap: 2px;
  position: relative;
}
.reviews-stars-row .star {
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='12 2 15 8.5 22 9.3 17 14 18.2 21 12 17.8 5.8 21 7 14 2 9.3 9 8.5 12 2' fill='%23FBBC04'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}
.reviews-stars-row .star.half {
  background-image: linear-gradient(to right, transparent 50%, #686868 50%),
                    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='12 2 15 8.5 22 9.3 17 14 18.2 21 12 17.8 5.8 21 7 14 2 9.3 9 8.5 12 2' fill='%23FBBC04'/></svg>");
  background-blend-mode: lighten;
  background-size: contain, contain;
  background-repeat: no-repeat, no-repeat;
}
.reviews-google-sub {
  font-size: 0.78rem;
  opacity: 0.7;
  font-weight: 400;
  margin-top: 0.15rem;
  text-align: left;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
}
.review {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  position: relative;
  transition: all var(--transition-fast);
}
.review:hover {
  border-color: var(--color-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--color-yellow-10);
}
.review::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09Z'/><path fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.99.66-2.25 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84A10.99 10.99 0 0 0 12 23Z'/><path fill='%23FBBC04' d='M5.84 14.1A6.6 6.6 0 0 1 5.49 12c0-.73.13-1.44.35-2.1V7.07H2.18A11 11 0 0 0 1 12c0 1.77.42 3.45 1.18 4.93l3.66-2.83Z'/><path fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.83C6.71 7.31 9.14 5.38 12 5.38Z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.review-stars {
  color: #FBBC04;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}
.review-text {
  font-style: normal;
  margin-bottom: 1rem;
  opacity: 0.92;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.94rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-white);
  letter-spacing: 0;
  padding-top: 0.7rem;
  border-top: 1px solid var(--color-border);
}
.review-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.review-author-name {
  display: block;
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.92rem;
  line-height: 1.2;
}
.review-author-meta {
  display: block;
  font-size: 0.78rem;
  opacity: 0.6;
  font-weight: 400;
  line-height: 1.2;
}

.reviews-footer {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-md);
}
.reviews-footer .btn {
  display: inline-flex;
  align-items: center;
}

/* ----- RÉSEAUX SOCIAUX ----------------------------------------- */
.socials {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-md);
  flex-wrap: wrap;
}
.social-link {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  color: var(--color-white);
}
.social-link svg {
  width: 26px;
  height: 26px;
}
.social-link:hover {
  background: var(--color-red);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: 0 0 20px var(--color-red);
}

/* ----- HORAIRES & CONTACT --------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-border);
  font-weight: 400;
}
.hours-row.today {
  color: var(--color-yellow);
  font-weight: 600;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.05rem;
}
.contact-item span:first-child { font-size: 1.6rem; }
.contact-ico {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  background: var(--color-bg-elevated);
  border-radius: 50%;
  border: 1px solid var(--color-border);
}
.contact-ico svg { width: 18px; height: 18px; }

/* =====================================================================
   SHOWCASE VIDEO — POULET RÔTI À LA BROCHE
   ===================================================================== */
.showcase-video {
  position: relative;
  padding: var(--spacing-xl) var(--spacing-md);
  background:
    radial-gradient(ellipse at 70% 30%, rgba(214,40,40,0.25), transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(250,176,64,0.18), transparent 55%),
    linear-gradient(180deg, #0a0a0a, #1a1010);
  overflow: hidden;
  isolation: isolate;
}
.showcase-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.showcase-video-flame {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  mix-blend-mode: screen;
}
.showcase-video-flame-1 {
  width: 500px; height: 500px;
  top: -10%; right: -10%;
  background: radial-gradient(circle, rgba(255,80,30,0.4), transparent 60%);
  animation: flame-pulse 6s ease-in-out infinite alternate;
}
.showcase-video-flame-2 {
  width: 400px; height: 400px;
  bottom: -10%; left: -10%;
  background: radial-gradient(circle, rgba(250,176,64,0.35), transparent 60%);
  animation: flame-pulse 7s ease-in-out infinite alternate-reverse;
}

.showcase-video-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase-video-text {
  animation: hero-fade-up 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

.showcase-video-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(250,176,64,0.4);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--color-yellow);
  margin-bottom: 1.3rem;
  backdrop-filter: blur(8px);
}
.showcase-video-eyebrow svg { width: 16px; height: 16px; }

.showcase-video-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}
.showcase-video-title-line1 {
  display: block;
  color: var(--color-yellow);
  text-shadow: 0 0 30px rgba(250,176,64,0.4);
}
.showcase-video-title-line2 {
  display: block;
  color: var(--color-white);
  font-size: 0.55em;
  letter-spacing: 0.1em;
}

.showcase-video-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0 0 1.4rem;
  max-width: 540px;
}
.showcase-video-sub strong {
  color: var(--color-yellow);
  font-weight: 700;
}

.showcase-video-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.showcase-video-bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
}
.showcase-video-bullets svg {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
}

.showcase-video-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Media — frame + video */
.showcase-video-media {
  position: relative;
  animation: hero-fade-up 1.1s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}
.showcase-video-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-black);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(250,176,64,0.18),
    0 0 60px rgba(214,40,40,0.18);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.showcase-video-frame:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0) scale(1.015);
}
.showcase-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-video-stamp {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 100px;
  height: 100px;
  color: var(--color-yellow);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6));
  animation: stamp-spin 22s linear infinite;
  z-index: 3;
  pointer-events: none;
}
.showcase-video-stamp svg { width: 100%; height: 100%; }

.showcase-video-mute {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
  z-index: 3;
}
.showcase-video-mute:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: scale(1.08);
}
.showcase-video-mute svg { width: 20px; height: 20px; }
.showcase-video-mute .ico-unmuted { display: none; }
.showcase-video-mute.is-unmuted .ico-muted { display: none; }
.showcase-video-mute.is-unmuted .ico-unmuted { display: block; }

@media (max-width: 992px) {
  .showcase-video { padding: var(--spacing-lg) var(--spacing-sm); }
  .showcase-video-inner { grid-template-columns: 1fr; gap: 2rem; }
  .showcase-video-media { order: -1; }
  .showcase-video-frame { transform: none; aspect-ratio: 16 / 9; }
  .showcase-video-frame:hover { transform: scale(1.01); }
  .showcase-video-stamp { width: 80px; height: 80px; }
  .showcase-video-cta { gap: 0.5rem; }
  .showcase-video-cta .hero-v4-btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-video-frame,
  .showcase-video-stamp,
  .showcase-video-flame,
  .showcase-video-text,
  .showcase-video-media { animation: none !important; transform: none !important; }
  .showcase-video-el { /* respect autoplay still; users can mute */ }
}

/* ----- CTA FINAL ------------------------------------------------ */
.cta-final {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  background:
    radial-gradient(ellipse at center, var(--color-red-10), transparent 65%),
    var(--color-black);
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  line-height: 1;
}
.cta-final p {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: var(--spacing-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ----- FOOTER --------------------------------------------------- */
.footer {
  background: var(--color-black);
  padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
  border-top: 1px solid var(--color-red-20);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-yellow);
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: var(--color-white);
  opacity: 0.7;
  font-size: 0.95rem;
  transition: opacity var(--transition-fast);
}
.footer-col a:hover { opacity: 1; color: var(--color-yellow); }
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
  opacity: 0.5;
  font-size: 0.85rem;
}

/* =====================================================================
   PAGE MENU
   ===================================================================== */
.menu-page {
  padding-top: calc(var(--header-height-desktop) + var(--spacing-md));
  min-height: 100vh;
}
.menu-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md) var(--spacing-md);
}
.menu-sidebar {
  position: sticky;
  top: calc(var(--header-height-desktop) + var(--spacing-md));
  align-self: start;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  max-height: calc(100vh - var(--header-height-desktop) - var(--spacing-md) * 2);
  overflow-y: auto;
}
.menu-sidebar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--color-yellow);
  padding: var(--spacing-sm);
}
.category-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.category-link {
  padding: 0.8rem var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  text-align: left;
  width: 100%;
  font-weight: 400;
}
.category-link:hover { background: var(--color-border); }
.category-link.active {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 0 15px var(--color-red-20);
  font-weight: 500;
}

.menu-content { flex: 1; }
.menu-search {
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  transition: border-color var(--transition-fast);
}
.menu-search:focus-within { border-color: var(--color-yellow); }
.menu-search-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--color-yellow);
  flex-shrink: 0;
}
.menu-search-icon svg { width: 100%; height: 100%; }
.menu-search input {
  flex: 1;
  background: none;
  border: none;
  color: var(--color-white);
  padding: 0.5rem;
  outline: none;
}
.menu-search input::placeholder { color: rgba(255,255,255,0.4); }

.menu-category-block { margin-bottom: var(--spacing-lg); }
.menu-category-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--color-red);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-transform: uppercase;
  line-height: 1;
}
.menu-category-title::before {
  content: '';
  width: 6px;
  height: 36px;
  background: var(--color-yellow);
  border-radius: 3px;
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-sm);
}

.menu-item {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.menu-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-red);
  box-shadow: 0 8px 30px var(--color-red-20);
}
.menu-item-image {
  width: 100%;
  height: 200px;
  background:
    radial-gradient(circle at center, var(--color-red-10), transparent 70%),
    var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}
.menu-item:hover .menu-item-image img {
  transform: scale(1.06);
}
.menu-item-image .menu-item-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.menu-item-image.no-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--color-yellow-10), transparent 60%);
  pointer-events: none;
}
.menu-item-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.menu-item-image.has-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.menu-item-image.unavailable {
  filter: grayscale(1) opacity(0.5);
}
.menu-item-image.unavailable::after {
  content: 'ÉPUISÉ';
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--color-error);
  color: var(--color-white);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.menu-item-body {
  padding: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: var(--color-white);
  line-height: 1.1;
}
.menu-item-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: var(--spacing-sm);
  flex: 1;
  font-weight: 300;
}
.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-yellow);
  letter-spacing: 0.02em;
}
.menu-item-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}
.menu-item-add:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: scale(1.12);
  box-shadow: 0 0 18px var(--color-yellow);
}
.menu-item-add:disabled {
  background: var(--color-gray);
  cursor: not-allowed;
  transform: none;
}

/* =====================================================================
   MODAL PERSONNALISATION — style "Uber Eats"
   - hero image en haut
   - body scrollable
   - footer collant (qty + add-to-cart full-width avec prix intégré)
   ===================================================================== */

/* Override modal box for Uber feel — flex column with scroll body */
.modal-overlay .modal {
  padding: 0;
  max-width: 560px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  min-height: 0;
}
.modal-overlay #customize-modal-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.modal-overlay .modal-close {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 1.35rem;
  z-index: 10;
}

/* HERO IMAGE -------------------------------------------------------- */
.customize-hero {
  position: relative;
  width: 100%;
  height: 240px;
  background: var(--color-black);
  overflow: hidden;
  flex-shrink: 0;
}
.customize-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.customize-hero.no-img {
  background:
    radial-gradient(circle at center, var(--color-red-20), transparent 60%),
    var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.customize-hero-emoji { font-size: 6rem; }
.customize-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 25%, rgba(0,0,0,0.55) 60%, rgba(10,10,10,0.95));
  pointer-events: none;
}
.customize-hero-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.4rem 1.1rem;
  z-index: 2;
}
.customize-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.03em;
  margin: 0 0 0.3rem;
  color: var(--color-white);
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85);
}
.customize-desc {
  font-size: 0.92rem;
  opacity: 0.85;
  margin: 0;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.customize-price-tag {
  position: absolute;
  top: -14px;
  right: 1.4rem;
  background: var(--color-yellow);
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 3;
}

/* PROGRESS --------------------------------------------------------- */
.customize-progress {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.4rem;
  background: var(--color-black);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.customize-progress-track {
  flex: 1;
  height: 6px;
  background: var(--color-bg-elevated);
  border-radius: 3px;
  overflow: hidden;
}
.customize-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  border-radius: 3px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px var(--color-yellow-20);
}
.customize-progress-meta {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}
.customize-step-chip {
  color: var(--color-yellow);
  letter-spacing: 0.02em;
}
.customize-step-chip.all-done {
  color: var(--color-success);
}
.customize-step-total {
  color: var(--color-gray-light);
  font-weight: 400;
}

/* BODY -------------------------------------------------------------- */
.customize-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.3rem 1.4rem 1rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--color-red) var(--color-bg);
}
.customize-body::-webkit-scrollbar { width: 6px; }
.customize-body::-webkit-scrollbar-track { background: var(--color-bg); }
.customize-body::-webkit-scrollbar-thumb { background: var(--color-red); border-radius: 3px; }

/* GROUP STEP HEADER ------------------------------------------------- */
.option-group {
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--color-border);
}
.option-group:last-of-type { border-bottom: none; }

.option-group-head {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}
.option-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-yellow));
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px var(--color-red-20);
}
.option-group-title-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.option-group-title-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.option-group-icon,
.option-group-emoji { /* legacy alias */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--color-yellow);
  flex-shrink: 0;
}
.option-group-icon svg,
.option-step-num svg {
  width: 100%;
  height: 100%;
}
.option-step-num svg {
  width: 16px;
  height: 16px;
}
.option-group-title-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1;
}
.option-group-hint {
  font-size: 0.78rem;
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

/* OPTION HIDE INPUT ------------------------------------------------- */
.option-item { position: relative; cursor: pointer; display: block; }
.option-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* LAYOUT — TILES (menu, meat, topping) ----------------------------- */
.option-list-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.55rem;
}
.option-tile-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.85rem 0.95rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 14px;
  transition: all var(--transition-fast);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
}
.option-tile-name { flex: 1; line-height: 1.2; }
.option-tile-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--color-border);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}
.option-item:hover .option-tile-label {
  border-color: var(--color-yellow);
  transform: translateY(-1px);
}
.option-item input:checked + .option-tile-label {
  background: var(--color-red-10);
  border-color: var(--color-red);
  box-shadow: 0 4px 14px var(--color-red-20);
}
.option-item input:checked + .option-tile-label .option-tile-check {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}

/* LAYOUT — ICONS (crudite, drink) ---------------------------------- */
.option-list-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
}
.option-icon-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 0.5rem 0.7rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  transition: all var(--transition-fast);
  position: relative;
  text-align: center;
  min-height: 130px;
  justify-content: center;
}
.option-icon-img {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-black);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.option-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.option-icon-fallback {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
}
.option-icon-fallback svg {
  width: 36px;
  height: 36px;
}
.option-icon-name {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-white);
}
.option-icon-label .option-price {
  font-size: 0.85rem;
  margin-top: 0.1rem;
}
.option-icon-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
  transition: all var(--transition-fast);
  box-shadow: 0 0 0 3px var(--color-bg);
}
.option-item:hover .option-icon-label {
  border-color: var(--color-yellow);
  transform: translateY(-2px);
}
.option-item:hover .option-icon-img { transform: scale(1.06); }
.option-item input:checked + .option-icon-label {
  background: var(--color-red-10);
  border-color: var(--color-red);
  box-shadow: 0 6px 18px var(--color-red-20);
}
.option-item input:checked + .option-icon-label .option-icon-check {
  opacity: 1;
  transform: scale(1);
}

/* LAYOUT — CHIPS (sauces) ------------------------------------------ */
.option-list-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.option-chip-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.option-item:hover .option-chip-label {
  border-color: var(--color-yellow);
  transform: translateY(-1px);
}
.option-item input:checked + .option-chip-label {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 4px 14px var(--color-red-20);
}
.option-item input:checked + .option-chip-label::before {
  content: '✓';
  font-weight: 800;
  font-size: 0.85rem;
}

.option-price {
  font-family: var(--font-display);
  color: var(--color-yellow);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.option-item input:checked + .option-tile-label .option-price,
.option-item input:checked + .option-chip-label .option-price,
.option-item input:checked + .option-icon-label .option-price {
  color: var(--color-yellow-light);
}

/* COMMENT INPUT ----------------------------------------------------- */
.option-comment-input {
  width: 100%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  color: var(--color-white);
  min-height: 76px;
  resize: vertical;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.option-comment-input:focus { border-color: var(--color-yellow); }
.option-comment-input::placeholder { color: rgba(255,255,255,0.35); }

/* FOOTER STICKY ----------------------------------------------------- */
.customize-footer {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.4rem;
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.25rem;
  flex-shrink: 0;
}
.quantity-selector button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}
.quantity-selector button:hover {
  background: var(--color-red);
  color: var(--color-white);
}
.quantity-selector .qty-value {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.customize-add-btn {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  background: var(--color-red);
  color: var(--color-white);
  border: none;
  box-shadow: 0 6px 22px var(--color-red-20);
  transition: all var(--transition-fast);
}
.customize-add-btn:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px var(--color-yellow-20);
}
.customize-add-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.customize-add-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding-left: 0.8rem;
  border-left: 1px solid rgba(255,255,255,0.25);
  margin-left: 0.6rem;
}
.customize-add-btn:hover .customize-add-price {
  border-left-color: rgba(0,0,0,0.25);
}

@media (max-width: 540px) {
  .modal-overlay .modal { border-radius: 18px 18px 0 0; align-self: flex-end; max-height: 95vh; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .customize-hero { height: 200px; }
  .customize-title { font-size: 1.75rem; }
  .customize-price-tag { font-size: 1.3rem; padding: 0.35rem 0.8rem; }
  .customize-body { padding: 1.1rem 1rem 0.8rem; }
  .customize-footer { padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0)); }
  .option-list-icons { grid-template-columns: repeat(3, 1fr); }
  .customize-add-label { display: none; }
  .customize-add-btn::before {
    content: '🛒 Ajouter';
    font-family: var(--font-display);
    font-size: 1.05rem;
  }
}

/* =====================================================================
   PANIER
   ===================================================================== */
.cart-page {
  padding-top: calc(var(--header-height-desktop) + var(--spacing-md));
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
  padding-bottom: var(--spacing-lg);
}
.cart-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}
.cart-line {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: var(--spacing-sm);
  align-items: start;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.cart-line:hover { border-color: var(--color-yellow); }
.cart-line-media {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(214,40,40,0.18), rgba(250,176,64,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-line-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-line-media.no-img {
  background: linear-gradient(135deg, rgba(214,40,40,0.25), rgba(23,23,23,0.6));
}
.cart-line-media-emoji { font-size: 2.6rem; }

.cart-line-body { min-width: 0; }
.cart-line-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
  flex-wrap: wrap;
}
.cart-line-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0;
  line-height: 1.1;
}
.cart-line-unit {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.cart-line-preview {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.cart-line-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cart-line-group-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-yellow);
  font-weight: 700;
  opacity: 0.85;
}
.cart-line-group-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.cart-line-empty-opts {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* Chips visuels (icône + label) pour chaque option */
.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.65rem 0.28rem 0.32rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--color-white);
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
}
.cart-chip.is-muted {
  opacity: 0.55;
  font-style: italic;
  padding-left: 0.65rem;
}
.cart-chip-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-chip-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.cart-chip-img.no-img { display: none; }
.cart-chip-emoji {
  font-size: 1rem;
  line-height: 1;
}
.cart-chip-label {
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Variantes par type */
.cart-chip-meat       { background: rgba(214,40,40,0.18);  border-color: rgba(214,40,40,0.3); }
.cart-chip-sauce      { background: rgba(250,176,64,0.15); border-color: rgba(250,176,64,0.3); }
.cart-chip-topping    { background: rgba(255,248,131,0.12); border-color: rgba(255,248,131,0.28); }
.cart-chip-crudite    { background: rgba(76,217,100,0.12); border-color: rgba(76,217,100,0.28); }
.cart-chip-drink,
.cart-chip-bouteille  { background: rgba(66,133,244,0.12); border-color: rgba(66,133,244,0.28); }
.cart-chip-menu       { background: rgba(214,40,40,0.18);  border-color: rgba(214,40,40,0.32); font-weight: 600; }
.cart-chip-note       { background: rgba(255,255,255,0.04); font-style: italic; white-space: normal; }

/* Side actions (prix + qty + supprimer) */
.cart-line-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  flex-shrink: 0;
}
.cart-line-price {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-yellow);
  letter-spacing: 0.03em;
}
.cart-line-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: transparent;
  border: 1px solid rgba(255,107,107,0.35);
  color: #ff6b6b;
  font-size: 0.78rem;
  font-family: inherit;
  font-weight: 500;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cart-line-remove svg { width: 13px; height: 13px; }
.cart-line-remove:hover {
  background: rgba(255,107,107,0.12);
  border-color: rgba(255,107,107,0.55);
  color: #ff8585;
}

/* Mobile : empile media au-dessus */
@media (max-width: 640px) {
  .cart-line {
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "media body"
      "side  side";
  }
  .cart-line-media { width: 72px; height: 72px; grid-area: media; }
  .cart-line-body  { grid-area: body; }
  .cart-line-side  {
    grid-area: side;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 0.55rem;
    margin-top: 0.25rem;
  }
}

.cart-summary {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-red-20);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  position: sticky;
  bottom: var(--spacing-md);
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: var(--spacing-sm);
}
.cart-total span:last-child {
  color: var(--color-yellow);
  text-shadow: 0 0 10px var(--color-yellow-10);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  opacity: 0.85;
}
.cart-actions {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}
.cart-actions .btn { flex: 1; min-width: 180px; }

.cart-empty {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  max-width: 480px;
  margin: 0 auto;
}
.cart-empty-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(245,196,0,0.12), rgba(214,40,40,0.08));
  border: 1px solid rgba(245,196,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}
.cart-empty-icon svg { width: 44px; height: 44px; }
.cart-empty p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.5;
}

/* ----- DELIVERY MODE TOGGLE ------------------------------------ */
.delivery-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
  background: var(--color-bg);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.delivery-option {
  padding: 0.95rem 1rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  border: 2px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.delivery-option:hover { background: rgba(255,255,255,0.05); }
.delivery-option.active {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 8px 24px -8px rgba(214,40,40,0.55);
  border-color: var(--color-red);
  transform: translateY(-1px);
}
.delivery-option.active::after {
  content: '';
  position: absolute;
  top: 6px; right: 6px;
  width: 16px; height: 16px;
  background: var(--color-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.3);
}

/* ----- PAYMENT MODE TOGGLE ------------------------------------- */
.payment-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
}
.payment-option {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  background: #111;
  border: 2px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: var(--color-white);
  text-align: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  min-height: 110px;
  justify-content: center;
}
.payment-option:hover {
  border-color: var(--color-yellow);
  transform: translateY(-2px);
  background: #161616;
}
.payment-option.active {
  border-color: var(--color-yellow);
  background: linear-gradient(180deg, rgba(245,196,0,0.10), rgba(214,40,40,0.06));
  box-shadow: 0 8px 24px -8px rgba(245,196,0,0.4);
  transform: translateY(-2px);
}
.payment-option.active::after {
  content: '✓';
  position: absolute;
  top: 8px; right: 8px;
  width: 22px; height: 22px;
  background: var(--color-yellow);
  color: #050505;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px #111;
}
.payment-option-icon { font-size: 2rem; }
.payment-option-label { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.04em; }
.payment-option-desc { font-size: 0.78rem; opacity: 0.7; font-weight: 300; }

/* =====================================================================
   PAIEMENT v2 — cards verticales avec icône SVG + badge "Recommandé"
   ===================================================================== */
.pay-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.pay-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "check  icon"
    "body   body";
  gap: 0.5rem 0.75rem;
  padding: 1rem 1.05rem;
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-border);
  border-radius: 14px;
  font-family: inherit;
  color: var(--color-white);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.12s ease;
  overflow: hidden;
}
.pay-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250,176,64,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.pay-card:hover {
  border-color: rgba(250,176,64,0.55);
  transform: translateY(-2px);
}
.pay-card.is-active {
  border-color: var(--color-yellow);
  background: linear-gradient(180deg, rgba(250,176,64,0.08), var(--color-bg-elevated) 70%);
}
.pay-card.is-active::before { opacity: 1; }
.pay-card-check {
  grid-area: check;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.18s ease;
  flex-shrink: 0;
}
.pay-card-check svg { width: 14px; height: 14px; }
.pay-card.is-active .pay-card-check {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #111;
  transform: scale(1.05);
}
.pay-card-icon {
  grid-area: icon;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-yellow);
  justify-self: end;
  transition: background 0.15s ease;
}
.pay-card-icon svg { width: 22px; height: 22px; }
.pay-card.is-active .pay-card-icon {
  background: rgba(250,176,64,0.18);
}
.pay-card-body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.pay-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  line-height: 1.1;
}
.pay-card-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  line-height: 1.35;
}
.pay-card-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  background: var(--color-red, #D62828);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(214,40,40,0.45);
}

/* =====================================================================
   CHECKOUT — récap + CTA final
   ===================================================================== */
.checkout-recap {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--color-bg-sunken);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.checkout-recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  padding: 0.25rem 0;
}
.checkout-recap-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(255,255,255,0.12);
}
.checkout-recap-total-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--color-white);
}
.checkout-recap-total-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}
.checkout-recap-total-amount {
  font-family: var(--font-display);
  font-size: 1.95rem;
  letter-spacing: 0.02em;
  color: var(--color-yellow);
  line-height: 1;
}

/* CTA finale — bouton sticky en bas (mobile) + grand bouton split (desktop) */
.checkout-cta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}
.checkout-cta-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  color: rgba(255,255,255,0.75);
  font-family: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
  min-height: 64px;
}
.checkout-cta-back:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.checkout-cta-back svg { width: 18px; height: 18px; }

.checkout-cta-submit {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.2rem;
  min-height: 64px;
  background: var(--color-yellow);
  color: #1a1a1a;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 30px -8px rgba(250,176,64,0.45), 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, box-shadow 0.18s ease, filter 0.15s ease;
}
.checkout-cta-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 14px 36px -8px rgba(250,176,64,0.55), 0 4px 14px rgba(0,0,0,0.3);
}
.checkout-cta-submit:active { transform: translateY(0); }
.checkout-cta-submit.is-cash {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(22,163,74,0.5), 0 2px 10px rgba(0,0,0,0.25);
}
.checkout-cta-submit.is-cash:hover {
  box-shadow: 0 14px 36px -8px rgba(22,163,74,0.6), 0 4px 14px rgba(0,0,0,0.3);
}
.checkout-cta-submit.is-stripe {
  background: linear-gradient(135deg, var(--color-yellow), #f49b1a);
}

.checkout-cta-submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.checkout-cta-submit-icon svg { width: 24px; height: 24px; }
.checkout-cta-submit.is-cash .checkout-cta-submit-icon { background: rgba(255,255,255,0.18); }

.checkout-cta-submit-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
  min-width: 0;
}
.checkout-cta-submit-main {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.checkout-cta-submit-meta {
  font-size: 0.78rem;
  opacity: 0.75;
  font-weight: 500;
}
.checkout-cta-submit-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  background: rgba(0,0,0,0.18);
  padding: 0.45rem 0.95rem;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.checkout-cta-submit.is-cash .checkout-cta-submit-price { background: rgba(255,255,255,0.18); }

/* Spinner loading */
.checkout-cta-submit-spinner {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: inherit;
}
.checkout-cta-submit-spinner svg {
  width: 28px; height: 28px;
  animation: cta-spin 0.8s linear infinite;
}
.checkout-cta-submit.is-loading { pointer-events: none; }
.checkout-cta-submit.is-loading > :not(.checkout-cta-submit-spinner) { opacity: 0.25; }
.checkout-cta-submit.is-loading .checkout-cta-submit-spinner { display: flex; }
@keyframes cta-spin {
  to { transform: rotate(360deg); }
}

/* Petit print sécurité */
.checkout-fineprint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.checkout-fineprint svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Mobile */
@media (max-width: 640px) {
  .pay-options { grid-template-columns: 1fr; }
  .checkout-cta { grid-template-columns: 1fr; }
  .checkout-cta-back { min-height: 48px; }
  .checkout-cta-submit {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon text"
      "price price";
    padding: 0.85rem 1rem;
  }
  .checkout-cta-submit-icon  { grid-area: icon; }
  .checkout-cta-submit-text  { grid-area: text; }
  .checkout-cta-submit-price {
    grid-area: price;
    text-align: center;
    margin-top: 0.45rem;
    padding: 0.5rem;
    font-size: 1.6rem;
  }
  .checkout-recap-total-amount { font-size: 1.7rem; }
}

/* ----- FORMULAIRE COMMANDE -------------------------------------- */
.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}
.order-form-full { grid-column: 1 / -1; }
.form-group { margin-bottom: var(--spacing-sm); }
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-yellow);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--color-white);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: var(--font-body);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-yellow);
  box-shadow: 0 0 10px var(--color-yellow-10);
}
.form-group .error-message {
  color: var(--color-error);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}
.form-group.has-error .error-message { display: block; }
.form-group.has-error input,
.form-group.has-error select {
  border-color: var(--color-error);
}
.form-help {
  font-size: 0.78rem;
  color: var(--color-gray-light);
  margin-top: 0.3rem;
  font-weight: 300;
}

.delivery-info-box {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
.delivery-info-box.success { border-color: var(--color-success); color: var(--color-success); }
.delivery-info-box.error   { border-color: var(--color-error);   color: var(--color-error); }

/* =====================================================================
   CONFIRMATION
   ===================================================================== */
.confirmation-page {
  padding-top: calc(var(--header-height-desktop) + var(--spacing-lg));
  min-height: 100vh;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: var(--spacing-lg);
}
.confirmation-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-red-20);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px var(--color-red-20);
}
.success-check {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-red-10);
  border: 3px solid var(--color-red);
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--color-red);
  animation: check-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px var(--color-red-20);
}
@keyframes check-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
.confirmation-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
}
.order-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-yellow);
  margin: var(--spacing-md) 0;
  text-shadow: 0 0 20px var(--color-yellow-10);
  letter-spacing: 0.05em;
}
.confirmation-info {
  text-align: left;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin: var(--spacing-md) 0;
}
.confirmation-info p { margin-bottom: 0.5rem; }
.confirmation-info strong { color: var(--color-yellow); }

/* =====================================================================
   ADMIN
   ===================================================================== */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}
.admin-login-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-red-20);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px var(--color-red-20);
}
.admin-login-card h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--color-red);
  margin-bottom: var(--spacing-md);
}

.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  padding-top: var(--header-height-desktop);
}
.admin-sidebar {
  background: var(--color-black);
  border-right: 1px solid var(--color-border);
  padding: var(--spacing-sm);
  position: sticky;
  top: var(--header-height-desktop);
  height: calc(100vh - var(--header-height-desktop));
  overflow-y: auto;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.admin-nav button {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  background: none;
  color: var(--color-white);
  text-align: left;
  transition: all var(--transition-fast);
  position: relative;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
}
.admin-nav button:hover { background: var(--color-bg-elevated); }
.admin-nav button.active {
  background: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
}
.admin-nav button .alert-dot {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 8px var(--color-yellow);
  animation: pulse 1.5s infinite;
  display: none;
}
.admin-nav button .alert-dot.visible { display: block; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50%      { opacity: 0.5; transform: translateY(-50%) scale(1.3); }
}

.admin-main {
  padding: var(--spacing-md);
  overflow-x: auto;
}
.admin-section { display: none; }
.admin-section.active { display: block; }

.admin-section h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: var(--spacing-md);
  color: var(--color-yellow);
}

.admin-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  align-items: center;
}
.filter-pill {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-white);
}
.filter-pill:hover { border-color: var(--color-yellow); }
.filter-pill.active {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.orders-table th,
.orders-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}
.orders-table th {
  background: var(--color-black);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  color: var(--color-yellow);
  font-weight: normal;
  font-size: 1rem;
  text-transform: uppercase;
}
.orders-table tr:hover { background: var(--color-border); }
.orders-table tr.clickable { cursor: pointer; }
.orders-table tr.new-order {
  background: var(--color-red-10);
  animation: flash-new 2s ease;
}
@keyframes flash-new {
  0%, 100% { background: var(--color-red-10); }
  50%      { background: var(--color-red-20); }
}

.status-pill {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.status-new        { background: var(--color-yellow); color: var(--color-black); }
.status-preparing  { background: var(--color-warning); color: var(--color-black); }
.status-ready      { background: var(--color-success); color: var(--color-white); }
.status-out        { background: var(--color-red); color: var(--color-white); }
.status-done       { background: var(--color-gray); color: var(--color-white); }
.status-cancelled  { background: var(--color-error); color: var(--color-white); }

.mode-pill {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-border);
  color: var(--color-white);
  margin-left: 0.4rem;
}
.mode-pill.delivery { background: var(--color-red); }
.mode-pill.pickup   { background: var(--color-yellow); color: var(--color-black); }

.pay-pill {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}
.pay-pill.paid { background: var(--color-success); color: var(--color-white); border-color: var(--color-success); }
.pay-pill.on_site { background: var(--color-bg); color: var(--color-yellow); border-color: var(--color-yellow); }

/* ----- ADMIN MENU EDITOR ---------------------------------------- */
.menu-editor-category {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}
.menu-editor-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
}
.menu-editor-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--color-yellow);
}
.menu-editor-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.menu-editor-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.menu-editor-item.inactive { opacity: 0.5; }
.menu-editor-item input {
  background: var(--color-black);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  color: var(--color-white);
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.menu-editor-item input[type="number"] { width: 80px; }

/* ----- TOGGLE SWITCH -------------------------------------------- */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--color-border);
  border-radius: 13px;
  transition: background var(--transition-fast);
}
.switch-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}
.switch input:checked + .switch-slider {
  background: var(--color-red);
  box-shadow: 0 0 8px var(--color-red);
}
.switch input:checked + .switch-slider::before { transform: translateX(24px); }

/* ----- ADMIN SETTINGS ------------------------------------------- */
.settings-section {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}
.settings-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-yellow);
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-sm);
}
.hours-editor {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-editor-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 60px;
  gap: 0.7rem;
  align-items: center;
  padding: 0.5rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
}
.hours-editor-row.closed { opacity: 0.5; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 992px) {
  .menu-layout {
    grid-template-columns: 1fr;
  }
  .menu-sidebar {
    position: relative;
    top: auto;
    max-height: none;
    overflow-x: auto;
  }
  .category-list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .category-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }
  .order-form {
    grid-template-columns: 1fr;
  }
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: relative;
    top: auto;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .admin-nav {
    flex-direction: row;
    overflow-x: auto;
  }
  .admin-nav button { flex: 0 0 auto; white-space: nowrap; }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
  }
  .header { height: var(--header-height-mobile); padding: 0 var(--spacing-sm); }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .logo img { height: 40px; }
  .logo { font-size: 1.4rem; }
  .hamburger { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-height-mobile);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height-mobile));
    background: var(--color-black);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-md);
    border-left: 1px solid var(--color-red-20);
    transition: right var(--transition-normal);
    gap: var(--spacing-sm);
  }
  .nav.open { right: 0; }
  .nav a { font-size: 1.1rem; width: 100%; padding: 0.8rem 0; }
  .closed-banner { top: var(--header-height-mobile); }
  .menu-page,
  .cart-page,
  .confirmation-page { padding-top: calc(var(--header-height-mobile) + var(--spacing-sm)); }
  .admin-layout { padding-top: var(--header-height-mobile); }
  .section { padding: var(--spacing-lg) var(--spacing-sm); }
  .footer-inner { grid-template-columns: 1fr; }

  /* ----- MOBILE MENU LIST — Deliveroo/Uber Eats style dense ----- */
  /* page tight padding */
  .menu-page { padding-top: calc(var(--header-height-mobile) + 0.3rem); }
  .menu-layout { padding: 0 var(--spacing-sm) 0.5rem; gap: 0; }
  .menu-search { margin-bottom: 0.5rem; padding: 0.4rem 0.8rem; }
  .menu-search input { padding: 0.35rem; font-size: 0.92rem; }

  .menu-category-block { margin-bottom: 1.2rem; }
  .menu-category-title {
    font-size: 1.4rem;
    margin-bottom: 0.55rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--color-border);
  }
  .menu-category-title::before { width: 4px; height: 22px; }

  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .menu-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    grid-template-areas: "img body action";
    gap: 0.7rem;
    padding: 0.55rem 0.2rem;
    align-items: center;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-fast);
  }
  .menu-item:last-child { border-bottom: none; }
  .menu-item:hover, .menu-item:active {
    transform: none;
    background: rgba(255,255,255,0.025);
    box-shadow: none;
  }
  .menu-item-image {
    grid-area: img;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    font-size: 2rem;
    background: var(--color-bg-elevated);
  }
  .menu-item-image::before,
  .menu-item-image.has-img::after { display: none; }
  .menu-item-image .badge {
    top: 4px;
    left: 4px;
    padding: 0.12rem 0.4rem;
    font-size: 0.6rem;
  }
  .menu-item-image .menu-item-emoji { font-size: 2rem; }
  .menu-item-body {
    grid-area: body;
    padding: 0;
    min-width: 0;
  }
  .menu-item-name {
    font-size: 0.95rem;
    line-height: 1.15;
    margin-bottom: 0.15rem;
    letter-spacing: 0.01em;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .menu-item-desc {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-bottom: 0;
    opacity: 0.55;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .menu-item-footer {
    grid-area: action;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.3rem;
    margin: 0;
    min-width: 56px;
  }
  .menu-item-price {
    font-size: 1rem;
    line-height: 1;
    color: var(--color-yellow);
    font-family: var(--font-display);
    letter-spacing: 0.01em;
  }
  .menu-item-add {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px var(--color-red-20);
  }
  @media (max-width: 380px) {
    .menu-item { grid-template-columns: 60px 1fr auto; gap: 0.55rem; }
    .menu-item-image { width: 60px; height: 60px; }
    .menu-item-desc { display: none; }
    .menu-item-name { font-size: 0.9rem; }
  }

  /* Sticky category strip mobile */
  .menu-sidebar {
    position: sticky;
    top: var(--header-height-mobile);
    z-index: 50;
    margin: 0 calc(-1 * var(--spacing-sm)) 0.5rem;
    border-radius: 0;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(10px);
    border: none;
    border-bottom: 1px solid var(--color-red-20);
    padding: 0.45rem var(--spacing-sm);
  }
  .menu-sidebar h3 { display: none; }
  .category-list {
    gap: 0.35rem;
    padding-bottom: 0.15rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .category-list::-webkit-scrollbar { display: none; }
  .category-link {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid transparent;
    white-space: nowrap;
    flex: 0 0 auto;
    gap: 0.3rem;
  }
  .category-link:hover { background: rgba(255,255,255,0.08); }
  .category-link.active {
    background: var(--color-red);
    color: var(--color-white);
    border-color: var(--color-red);
    box-shadow: 0 2px 10px var(--color-red-20);
  }

  .orders-table { font-size: 0.8rem; }
  .orders-table th, .orders-table td { padding: 0.6rem 0.4rem; }
  .hours-editor-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .menu-editor-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .cart-actions .btn { width: 100%; flex: none; }
  .modal { padding: var(--spacing-sm); }
  .payment-toggle { grid-template-columns: 1fr; }
  .delivery-toggle { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 3rem; }
  .hero p  { font-size: 1rem; }
  .btn-large { padding: 1rem 1.5rem; font-size: 1.1rem; }
  .specialty-card { height: 300px; }
  .order-number { font-size: 2.2rem; }
  .hero-logo-big { max-width: 180px; }
}

/* =====================================================================
   HERO IMG — full-bleed image, sobre, mobile + PC via <picture>
   ===================================================================== */
.hero-img {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  isolation: isolate;
  background: var(--color-black);
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  animation: hero-img-kenburns 22s ease-in-out infinite alternate;
}
@keyframes hero-img-kenburns {
  from { transform: scale(1) translateX(0); }
  to   { transform: scale(1.06) translateX(-1.5%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img-bg img { animation: none; }
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.78) 28%,
      rgba(10,10,10,0.35) 52%,
      rgba(10,10,10,0)    70%),
    linear-gradient(to top, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0) 35%);
  pointer-events: none;
}

.hero-img-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  width: 100%;
  margin: 0 auto 0 0;
  padding: calc(var(--header-height-desktop) + 2rem) var(--spacing-md) var(--spacing-xl) var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
  animation: hero-img-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-img-text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
  width: 100%;
}
@keyframes hero-img-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----- Status pill (Ouvert / Fermé) ----- */
.hero-img-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
}
.hero-img-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(0,184,80,0.18);
  animation: hero-img-pulse 2s ease-in-out infinite;
}
.hero-img-status.is-closed .hero-img-status-dot {
  background: var(--color-error);
  box-shadow: 0 0 0 4px rgba(255,68,68,0.18);
}
@keyframes hero-img-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.6; }
}

/* ----- Titre ----- */
.hero-img-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.hero-img-title-top {
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--color-white);
  text-shadow:
    0 4px 0 rgba(0,0,0,0.55),
    0 8px 32px rgba(0,0,0,0.6);
}
.hero-img-title-bot {
  font-size: clamp(6rem, 14.5vw, 11.5rem);
  background: linear-gradient(180deg, var(--color-yellow-light) 0%, var(--color-yellow) 50%, var(--color-red) 105%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 0 rgba(0,0,0,0.55)) drop-shadow(0 8px 30px rgba(214,40,40,0.45));
}

/* ----- Tagline 3 mots ----- */
.hero-img-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.5vw, 2.05rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.7rem 0 0.3rem;
  line-height: 1.05;
}
.hero-img-tagline span {
  position: relative;
  color: var(--color-white);
  opacity: 0;
  animation: hero-img-word 0.55s ease-out forwards;
}
.hero-img-tagline span:nth-child(1) { animation-delay: 0.4s; }
.hero-img-tagline span:nth-child(2) { animation-delay: 0.6s; color: var(--color-yellow); }
.hero-img-tagline span:nth-child(3) { animation-delay: 0.8s; color: var(--color-red); }
@keyframes hero-img-word {
  from { opacity: 0; transform: translateY(8px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ----- Sous-titre ----- */
.hero-img-sub {
  margin: 0.3rem 0 1rem;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  letter-spacing: 0.015em;
}

/* ----- CTAs ----- */
.hero-img-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.hero-img-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.hero-img-btn svg { width: 20px; height: 20px; }

.hero-img-btn-primary {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow:
    0 10px 28px -8px rgba(214,40,40,0.55),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.hero-img-btn-primary:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px -8px rgba(250,176,64,0.6),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
.hero-img-btn-primary:active { transform: translateY(0); }

.hero-img-btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-img-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  transform: translateY(-2px);
}

/* ----- Scroll indicator ----- */
.hero-img-scroll {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  transition: border-color 0.18s ease;
}
.hero-img-scroll:hover { border-color: var(--color-yellow); }
.hero-img-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--color-white);
  border-radius: 2px;
  animation: hero-img-scroll 1.6s ease-in-out infinite;
}
@keyframes hero-img-scroll {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img-scroll span { animation: none; }
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .hero-img {
    align-items: stretch;
  }
  .hero-img-bg img {
    object-position: center center;
  }
  .hero-img-overlay {
    background:
      linear-gradient(to bottom,
        rgba(10,10,10,0.88) 0%,
        rgba(10,10,10,0.55) 22%,
        rgba(10,10,10,0)    42%,
        rgba(10,10,10,0)    58%,
        rgba(10,10,10,0.85) 78%,
        rgba(10,10,10,0.96) 100%);
  }
  .hero-img-content {
    padding: calc(var(--header-height-mobile) + 1.4rem) var(--spacing-sm) calc(env(safe-area-inset-bottom, 0px) + 1.4rem);
    max-width: 100%;
    gap: 1rem;
    justify-content: space-between;
    min-height: 100svh;
  }
  .hero-img-text {
    gap: 0.85rem;
  }
  .hero-img-cta {
    width: 100%;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0;
  }
  .hero-img-cta .hero-img-btn {
    width: 100%;
    justify-content: center;
    padding: 1.05rem 1.2rem;
  }
  .hero-img-btn-primary {
    box-shadow:
      0 12px 30px -8px rgba(214,40,40,0.7),
      inset 0 1px 0 rgba(255,255,255,0.22);
  }
  .hero-img-scroll { display: none; }
}

@media (max-width: 480px) {
  .hero-img-title-top { font-size: 4.2rem; }
  .hero-img-title-bot { font-size: 5.2rem; }
  .hero-img-tagline   { font-size: 1.25rem; gap: 0.3rem 0.65rem; }
  .hero-img-sub       { font-size: 1rem; }
  .hero-img-btn       { padding: 1.05rem 1.2rem; font-size: 1.05rem; }
}

@media (max-width: 360px) {
  .hero-img-title-top { font-size: 3.6rem; }
  .hero-img-title-bot { font-size: 4.4rem; }
  .hero-img-tagline   { font-size: 1.1rem; }
}

/* =====================================================================
   FOOD APP — Premium UI components (Uber Eats-style)
   ===================================================================== */

/* ---------- HEADER V2 ---------- */
.tc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height-desktop);
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-md);
}
.tc-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--spacing-md);
}
.tc-header-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1;
}
.tc-header-logo img { height: 44px; width: auto; display: block; }
.tc-header-logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
}
.tc-header-logo-text-1 { font-size: 1.05rem; color: var(--color-white); letter-spacing: 0.02em; }
.tc-header-logo-text-2 { font-size: 0.62rem; color: var(--color-yellow); letter-spacing: 0.18em; }

.tc-header-nav {
  display: flex;
  gap: 0.4rem;
  justify-self: center;
}
.tc-header-nav a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-white);
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  position: relative;
}
.tc-header-nav a:hover { color: var(--color-yellow); background: rgba(255,210,26,0.06); }
.tc-header-nav a.is-active { color: var(--color-yellow); }
.tc-header-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 18%; right: 18%; bottom: 0.3rem;
  height: 2px;
  background: var(--color-red);
  border-radius: 1px;
}

.tc-header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}

.tc-loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.tc-loc:hover { border-color: var(--color-yellow); transform: translateY(-1px); }
.tc-loc svg { width: 14px; height: 14px; color: var(--color-red); }

.tc-acct {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, transform 0.15s;
}
.tc-acct:hover { border-color: var(--color-yellow); color: var(--color-yellow); transform: translateY(-1px); }
.tc-acct svg { width: 16px; height: 16px; }

.tc-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem 0.55rem 0.7rem;
  background: var(--color-red);
  border: 0;
  border-radius: 999px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-red);
  position: relative;
}
.tc-cart-btn:hover {
  background: var(--color-red-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -8px rgba(225,25,25,0.7);
}
.tc-cart-btn svg { width: 18px; height: 18px; }
.tc-cart-btn-count {
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 10px;
  margin-right: 0.1rem;
}
.tc-cart-btn-amount {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Mobile header */
.tc-header-hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  cursor: pointer;
}
.tc-header-hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--color-white);
  position: relative;
}
.tc-header-hamburger span::before,
.tc-header-hamburger span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-white);
}
.tc-header-hamburger span::before { top: -6px; }
.tc-header-hamburger span::after  { top:  6px; }

.tc-header-cart-mobile {
  display: none;
  position: relative;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  text-decoration: none;
}
.tc-header-cart-mobile svg { width: 18px; height: 18px; }
.tc-header-cart-mobile-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.7rem;
  font-weight: 800;
  display: none;
  align-items: center; justify-content: center;
}
.tc-header-cart-mobile-badge.is-visible { display: flex; }

@media (max-width: 992px) {
  .tc-header-inner { grid-template-columns: auto auto auto; }
  .tc-header-nav { display: none; }
  .tc-header-actions .tc-acct,
  .tc-header-actions .tc-loc { display: none; }
  .tc-header-hamburger { display: inline-flex; }
  .tc-header-cart-mobile { display: inline-flex; }
  .tc-header-actions .tc-cart-btn { display: none; }
  .tc-header { height: var(--header-height-mobile); padding: 0 var(--spacing-sm); }
  .tc-header-logo img { height: 36px; }
}

/* ---------- MOBILE DRAWER ---------- */
.tc-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: opacity 0.25s;
}
.tc-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.tc-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(85vw, 340px);
  background: var(--color-bg-elevated);
  border-right: 1px solid var(--color-border);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  padding: calc(env(safe-area-inset-top) + 1.2rem) 0 calc(env(safe-area-inset-bottom) + 1.2rem);
  pointer-events: none;
}
.tc-drawer.is-open { transform: translateX(0); pointer-events: auto; }

.tc-drawer-header {
  padding: 0 1.25rem 1.2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.tc-drawer-header img { height: 44px; }
.tc-drawer-close {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
}
.tc-drawer-loc {
  margin: 1rem 1.25rem 0.4rem;
  padding: 0.7rem 0.9rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-white);
}
.tc-drawer-loc svg { width: 16px; height: 16px; color: var(--color-red); }
.tc-drawer-nav {
  flex: 1;
  padding: 0.8rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.tc-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.tc-drawer-nav a:hover { background: var(--color-bg-card); color: var(--color-yellow); }
.tc-drawer-nav a.is-active { background: var(--color-red-10); color: var(--color-yellow); }
.tc-drawer-nav a svg { width: 20px; height: 20px; opacity: 0.85; }
.tc-drawer-footer {
  padding: 1rem 1.25rem 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  color: var(--color-gray-light);
  text-align: center;
}

/* ---------- BOTTOM NAVIGATION ---------- */
.tc-bottomnav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid var(--color-border);
  padding: 0.4rem 0.3rem calc(env(safe-area-inset-bottom) + 0.4rem);
}
.tc-bottomnav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.1rem;
}
.tc-bottomnav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18rem;
  padding: 0.45rem 0.2rem;
  color: var(--color-gray-light);
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s, transform 0.15s;
  border-radius: 10px;
}
.tc-bottomnav a svg { width: 22px; height: 22px; transition: transform 0.15s; }
.tc-bottomnav a:hover { color: var(--color-white); }
.tc-bottomnav a.is-active {
  color: var(--color-yellow);
}
.tc-bottomnav a.is-active svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 12px var(--color-yellow));
}
.tc-bottomnav a.is-active::before {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-red);
  margin-top: -4px;
}

@media (max-width: 992px) {
  .tc-bottomnav { display: block; }
  body { padding-bottom: 70px; }
}

/* ---------- ORDER MODE SWITCH ---------- */
.tc-mode {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tc-mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--color-bg-sunken);
  padding: 0.35rem;
  border-radius: 14px;
}
.tc-mode-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--color-white);
  text-align: left;
  transition: background 0.15s, color 0.15s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.tc-mode-tab:hover { background: rgba(255,255,255,0.04); }
.tc-mode-tab.is-active {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}
.tc-mode-tab-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tc-mode-tab-top svg { width: 18px; height: 18px; }
.tc-mode-tab-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-gray-light);
}
.tc-mode-tab.is-active .tc-mode-tab-sub { color: rgba(255,255,255,0.85); }
.tc-mode-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  background: var(--color-bg-sunken);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--color-white);
}
.tc-mode-address-left {
  display: flex; align-items: center; gap: 0.55rem;
  min-width: 0;
}
.tc-mode-address-left svg { width: 16px; height: 16px; color: var(--color-yellow); flex-shrink: 0; }
.tc-mode-address-left span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tc-mode-address a {
  color: var(--color-yellow);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  flex-shrink: 0;
}
.tc-mode-address a:hover { text-decoration: underline; }

/* Boutons action (Changer / Itinéraire) */
.tc-mode-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  background: var(--color-yellow);
  color: #1a1a1a;
  border: none;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.12s ease, filter 0.12s ease;
  letter-spacing: 0.01em;
}
.tc-mode-action svg { width: 14px; height: 14px; }
.tc-mode-action:hover { filter: brightness(1.08); transform: translateY(-1px); }
.tc-mode-action:active { transform: translateY(0); }
.tc-mode-action-route {
  background: var(--color-red, #D62828);
  color: #fff;
}

/* Formulaire saisie adresse (livraison inline) */
.tc-mode-addrform {
  margin-top: 0.6rem;
  padding: 0.85rem;
  background: var(--color-bg-sunken);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  animation: tc-addrform-in 0.18s ease;
}
@keyframes tc-addrform-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tc-mode-addrform-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.tc-mode-addrform-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.tc-mode-addrform-field-full { grid-column: 1 / -1; }
.tc-mode-addrform-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.tc-mode-addrform input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 0.92rem;
  font-family: inherit;
}
.tc-mode-addrform input:focus {
  outline: none;
  border-color: var(--color-yellow);
  background: rgba(255,255,255,0.07);
}
.tc-mode-addrform input::placeholder { color: rgba(255,255,255,0.35); }
.tc-mode-addrform-actions {
  margin-top: 0.65rem;
  display: flex;
  justify-content: flex-end;
}
.tc-mode-addrform-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  background: var(--color-yellow);
  color: #1a1a1a;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.12s ease, transform 0.12s ease;
}
.tc-mode-addrform-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.tc-mode-addrform-btn:active { transform: translateY(0); }
.tc-mode-addrform-btn svg { width: 16px; height: 16px; }
.tc-mode-addrform-msg {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: var(--color-gray-light);
  min-height: 1.1em;
}
.tc-mode-addrform-msg.is-loading { color: var(--color-gray-light); }
.tc-mode-addrform-msg.is-success { color: #4ade80; }
.tc-mode-addrform-msg.is-error   { color: #ff6b6b; }
.tc-mode-addrform-help {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
}

/* Mobile responsive */
@media (max-width: 560px) {
  .tc-mode-address { flex-wrap: wrap; }
  .tc-mode-action  { padding: 0.4rem 0.75rem; font-size: 0.78rem; }
  .tc-mode-addrform-fields { grid-template-columns: 1fr; }
  .tc-mode-addrform-actions { justify-content: stretch; }
  .tc-mode-addrform-btn { width: 100%; justify-content: center; }
}

/* ===== PANIER : grille adresse split (rue / cp / ville) ===== */
.addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.3rem;
}
.addr-grid > div { display: flex; flex-direction: column; gap: 0.3rem; }
.addr-grid-full  { grid-column: 1 / -1; }
.addr-sublabel {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin: 0;
}
.addr-grid input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: inherit;
}
.addr-grid input:focus {
  outline: none;
  border-color: var(--color-yellow);
  background: rgba(255,255,255,0.07);
}
.addr-grid input::placeholder { color: rgba(255,255,255,0.35); }
@media (max-width: 560px) {
  .addr-grid { grid-template-columns: 1fr; }
}

/* ---------- ADDRESS AUTOCOMPLETE (BAN data.gouv.fr) ---------- */
.addr-autocomplete-wrap {
  position: relative;
}
.addr-suggest {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid rgba(245,196,0,0.3);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.65);
  z-index: 50;
  max-height: 320px;
  overflow-y: auto;
  padding: 0.3rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  backdrop-filter: blur(8px);
}
.addr-suggest[hidden] { display: none; }
.addr-suggest-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  background: transparent;
  border: 0;
  color: var(--color-white);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.92rem;
  width: 100%;
  transition: background 0.12s, color 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.addr-suggest-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}
.addr-suggest-item:hover,
.addr-suggest-item.is-active {
  background: rgba(245,196,0,0.12);
}
.addr-suggest-label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.25;
  min-width: 0;
}
.addr-suggest-label strong {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
}
.addr-suggest-label span {
  color: var(--color-gray-light);
  font-size: 0.78rem;
}

/* ---------- CATEGORY RAIL IMMERSIVE ----------
   Sticky nav. Tile cards, prev/next arrows, drag/wheel scroll, scroll-snap,
   fade-edges, progress bar.
*/
.tc-cats {
  position: sticky;
  top: var(--header-height-desktop);
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.9rem 0 0.55rem;
  border-bottom: 1px solid rgba(214,40,40,0.22);
  margin: 0 calc(var(--spacing-md) * -1);
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  column-gap: 0;
  position: sticky;
}
.tc-cats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(214,40,40,0.10), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.tc-cats-rail {
  grid-column: 2;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.4rem var(--spacing-md);
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.tc-cats-rail::-webkit-scrollbar { display: none; }
.tc-cats-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.tc-cats-rail.is-dragging .tc-cat { pointer-events: none; }

/* Fade gradients sur bords pour signaler scroll */
.tc-cats-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 2;
}
.tc-cats-fade-left {
  left: 44px;
  background: linear-gradient(90deg, rgba(5,5,5,0.95), transparent);
}
.tc-cats-fade-right {
  right: 44px;
  background: linear-gradient(270deg, rgba(5,5,5,0.95), transparent);
}

/* Arrows prev / next */
.tc-cats-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  z-index: 3;
  margin: 0 auto;
}
.tc-cats-arrow svg { width: 18px; height: 18px; }
.tc-cats-arrow:hover:not(.is-disabled) {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
  transform: scale(1.08);
  box-shadow: 0 4px 14px var(--color-red-20);
}
.tc-cats-arrow.is-disabled { opacity: 0.25; cursor: default; pointer-events: none; }
.tc-cats-arrow-prev { grid-column: 1; }
.tc-cats-arrow-next { grid-column: 3; }

/* TILE CARD CATEGORY */
.tc-cat {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.7rem 1.1rem 0.75rem;
  min-width: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  color: var(--color-white);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), background 0.25s, border-color 0.25s, box-shadow 0.25s;
  scroll-snap-align: center;
  overflow: hidden;
  font-family: inherit;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}
.tc-cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,40,40,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.tc-cat:hover {
  border-color: var(--color-yellow);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}
.tc-cat:hover::before { opacity: 0.55; }

.tc-cat-icon {
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.tc-cat:hover .tc-cat-icon { transform: scale(1.15) rotate(-4deg); }
.tc-cat-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-white);
}
.tc-cat-count {
  font-size: 0.65rem;
  color: var(--color-gray-light);
  opacity: 0.7;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1;
}
.tc-cat-active-bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  border-radius: 3px 3px 0 0;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}

/* Active state — gradient + glow */
.tc-cat.is-active {
  background:
    linear-gradient(135deg, rgba(214,40,40,0.95), rgba(214,40,40,0.7));
  border-color: var(--color-red);
  box-shadow:
    0 8px 24px rgba(214,40,40,0.45),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-3px) scale(1.04);
}
.tc-cat.is-active::before { opacity: 0; }
.tc-cat.is-active .tc-cat-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 12px rgba(255,200,80,0.65));
}
.tc-cat.is-active .tc-cat-name { color: var(--color-white); }
.tc-cat.is-active .tc-cat-count { color: rgba(255,255,255,0.85); opacity: 1; }
.tc-cat.is-active .tc-cat-active-bar { transform: translateX(-50%) scaleX(1); }

/* Progress bar bas du rail */
.tc-cats-progress {
  grid-column: 1 / -1;
  grid-row: 2;
  height: 3px;
  background: rgba(255,255,255,0.05);
  margin: 0.5rem var(--spacing-md) 0;
  border-radius: 2px;
  overflow: hidden;
}
.tc-cats-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  border-radius: 2px;
  transition: width 0.2s ease;
  box-shadow: 0 0 8px rgba(214,40,40,0.5);
}

@media (max-width: 992px) {
  .tc-cats {
    top: var(--header-height-mobile);
    margin: 0 calc(var(--spacing-sm) * -1);
    grid-template-columns: 36px 1fr 36px;
    padding: 0.7rem 0 0.5rem;
  }
  .tc-cats-arrow {
    width: 32px;
    height: 32px;
  }
  .tc-cats-arrow svg { width: 14px; height: 14px; }
  .tc-cats-rail { padding: 0.35rem var(--spacing-sm); gap: 0.45rem; }
  .tc-cats-fade-left  { left: 36px; width: 30px; }
  .tc-cats-fade-right { right: 36px; width: 30px; }
  .tc-cat {
    min-width: 78px;
    padding: 0.55rem 0.85rem 0.6rem;
  }
  .tc-cat-icon { font-size: 1.3rem; }
  .tc-cat-name { font-size: 0.74rem; }
  .tc-cat-count { font-size: 0.6rem; }
  .tc-cats-progress { margin: 0.35rem var(--spacing-sm) 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tc-cat,
  .tc-cat-icon,
  .tc-cat-active-bar,
  .tc-cats-arrow,
  .tc-cats-progress-fill { transition: none !important; transform: none !important; }
}

/* ---------- SEARCH BAR ---------- */
.tc-search-row {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}
.tc-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: border-color 0.15s;
}
.tc-search:focus-within { border-color: var(--color-yellow); }
.tc-search svg { width: 18px; height: 18px; color: var(--color-gray-light); flex-shrink: 0; }
.tc-search input {
  flex: 1;
  background: none;
  border: 0;
  outline: 0;
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.tc-search input::placeholder { color: var(--color-gray); }
.tc-search-filter {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.tc-search-filter:hover { border-color: var(--color-yellow); }
.tc-search-filter svg { width: 18px; height: 18px; }

/* ---------- HERO BANNER (menu page) ---------- */
.tc-hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: var(--spacing-md) 0;
  min-height: 200px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
}
.tc-hero-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.tc-hero-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.tc-hero-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg,
      rgba(5,5,5,0.92) 0%,
      rgba(5,5,5,0.7) 35%,
      rgba(5,5,5,0.3) 60%,
      rgba(5,5,5,0) 80%);
}
.tc-hero-banner-content {
  position: relative;
  z-index: 2;
  padding: 2.2rem 2rem;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.tc-hero-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,210,26,0.14);
  border: 1px solid rgba(255,210,26,0.35);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-yellow);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  align-self: flex-start;
}
.tc-hero-banner-badge svg { width: 12px; height: 12px; }
.tc-hero-banner h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}
.tc-hero-banner-sub {
  font-size: 0.95rem;
  color: var(--color-gray-light);
  max-width: 380px;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .tc-hero-banner { min-height: 240px; border-radius: 16px; }
  .tc-hero-banner-content { padding: 1.4rem 1.2rem; }
  .tc-hero-banner-overlay {
    background:
      linear-gradient(to bottom,
        rgba(5,5,5,0.92) 0%,
        rgba(5,5,5,0.7) 35%,
        rgba(5,5,5,0.4) 65%,
        rgba(5,5,5,0.9) 100%);
  }
  .tc-hero-banner-bg img { object-position: center; }
}

/* ---------- MENU LAYOUT V2 (catalog + cart sidebar) ---------- */
.tc-menu-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--spacing-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md) var(--spacing-lg);
}
.tc-menu-main { min-width: 0; overflow-x: clip; }
.tc-menu-aside {
  position: sticky;
  top: calc(var(--header-height-desktop) + var(--spacing-md));
  align-self: start;
  height: fit-content;
  max-height: calc(100vh - var(--header-height-desktop) - var(--spacing-md) * 2);
}

@media (max-width: 1100px) {
  .tc-menu-layout { grid-template-columns: 1fr 340px; }
}
@media (max-width: 992px) {
  .tc-menu-layout { grid-template-columns: 1fr; padding: 0 var(--spacing-sm) 100px; }
  .tc-menu-aside { display: none; }
}

/* ---------- PRODUCT CARD GRID (desktop) ---------- */
.tc-products-section { margin-bottom: 2.5rem; }
.tc-products-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.tc-products-title-bar {
  width: 4px;
  height: 26px;
  background: var(--color-red);
  border-radius: 2px;
}
.tc-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.tc-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.tc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 25, 25, 0.4);
  box-shadow: var(--shadow-hover), 0 0 24px -8px var(--color-red-30);
}
.tc-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at center, var(--color-bg-elevated), var(--color-bg-sunken));
}
.tc-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.tc-card:hover .tc-card-img img { transform: scale(1.06); }
.tc-card-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.55;
}
.tc-card-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; gap: 0.3rem; flex-wrap: wrap;
  z-index: 2;
}
.tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tc-badge-popular  { background: var(--color-red); color: var(--color-white); }
.tc-badge-new      { background: var(--color-yellow); color: var(--color-black); }
.tc-badge-best     { background: var(--color-white); color: var(--color-black); }
.tc-badge-spicy    { background: linear-gradient(135deg, var(--color-red), #FF5500); color: var(--color-white); }
.tc-badge-signature{ background: rgba(255,210,26,0.18); color: var(--color-yellow); border: 1px solid var(--color-yellow); }

.tc-card-body {
  padding: 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.4rem;
}
.tc-card-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--color-white);
  line-height: 1.1;
  text-transform: uppercase;
}
.tc-card-desc {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.tc-card-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--color-yellow);
  letter-spacing: 0.01em;
}
.tc-card-add {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--color-red);
  color: var(--color-white);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px -4px rgba(225,25,25,0.55);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.tc-card-add:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(255,210,26,0.55);
}
.tc-card-add svg { width: 14px; height: 14px; }
.tc-card.is-unavailable { opacity: 0.5; pointer-events: none; }
.tc-card.is-unavailable::after {
  content: 'ÉPUISÉ';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: var(--color-red);
  color: var(--color-white);
  padding: 0.3rem 1rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

/* ---------- PRODUCT CARD MOBILE (horizontal) ---------- */
@media (max-width: 768px) {
  .tc-products-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .tc-card {
    flex-direction: row;
    align-items: stretch;
  }
  .tc-card-img {
    width: 130px;
    flex-shrink: 0;
    aspect-ratio: auto;
    border-radius: 16px 0 0 16px;
  }
  .tc-card-body {
    padding: 0.85rem 0.9rem;
    min-width: 0;
  }
  .tc-card-name { font-size: 1.05rem; }
  .tc-card-desc {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }
  .tc-card-price { font-size: 1.2rem; }
  .tc-card-add {
    width: 36px; height: 36px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .tc-card-add svg { width: 16px; height: 16px; }
  .tc-card-add span { display: none; }
}

/* ---------- CART SIDEBAR DESKTOP ---------- */
.tc-cart {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: calc(100vh - var(--header-height-desktop) - var(--spacing-md) * 2);
}
.tc-cart-header {
  padding: 1.1rem 1.1rem 0.8rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-cart-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0;
}
.tc-cart-count {
  background: var(--color-red);
  color: var(--color-white);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}
.tc-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.6rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.tc-cart-empty {
  text-align: center;
  padding: 2.2rem 1rem;
  color: var(--color-gray-light);
}
.tc-cart-empty-emoji { font-size: 2.6rem; opacity: 0.5; margin-bottom: 0.6rem; }
.tc-cart-empty p { font-size: 0.92rem; margin-bottom: 1rem; }

.tc-cart-line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.6rem;
  padding: 0.6rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
}
.tc-cart-line-img {
  width: 56px; height: 56px;
  border-radius: 9px;
  background: var(--color-bg-sunken);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}
.tc-cart-line-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.tc-cart-line-info { min-width: 0; }
.tc-cart-line-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--color-white);
  letter-spacing: 0.01em;
  margin: 0 0 0.15rem;
  line-height: 1.15;
}
.tc-cart-line-opts {
  font-size: 0.72rem;
  color: var(--color-gray-light);
  line-height: 1.35;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.tc-cart-line-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.3rem;
}
.tc-cart-line-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-yellow);
}
.tc-cart-line-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-bg-sunken);
  border-radius: 999px;
  padding: 0.18rem;
}
.tc-cart-line-qty button {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  color: var(--color-white);
  border: 0;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.tc-cart-line-qty button:hover { background: var(--color-red); }
.tc-cart-line-qty span {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--color-white);
}

.tc-cart-promo {
  padding: 0.6rem 1rem;
  display: flex;
  gap: 0.4rem;
  border-top: 1px solid var(--color-border);
}
.tc-cart-promo input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  background: var(--color-bg-sunken);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-white);
  font-size: 0.85rem;
  outline: none;
}
.tc-cart-promo input:focus { border-color: var(--color-yellow); }
.tc-cart-promo button {
  padding: 0.55rem 0.95rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}
.tc-cart-promo button:hover { border-color: var(--color-yellow); color: var(--color-yellow); }

.tc-cart-totals {
  padding: 0.85rem 1.1rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
}
.tc-cart-totals-row {
  display: flex;
  justify-content: space-between;
  color: var(--color-gray-light);
}
.tc-cart-totals-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.5rem;
  margin-top: 0.2rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--color-white);
}
.tc-cart-totals-total b { color: var(--color-yellow); font-weight: 400; }

.tc-cart-cta {
  padding: 0 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.tc-cart-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--color-red);
  border: 0;
  border-radius: 14px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-red);
}
.tc-cart-cta-btn:hover {
  background: var(--color-red-bright);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -8px rgba(225,25,25,0.7);
}
.tc-cart-cta-btn svg { width: 16px; height: 16px; }
.tc-cart-secure {
  font-size: 0.74rem;
  color: var(--color-gray-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.tc-cart-secure svg { width: 12px; height: 12px; color: var(--color-success); }

/* ---------- MOBILE CART BAR ---------- */
.tc-mcart {
  position: fixed;
  left: 0; right: 0;
  bottom: 70px;
  margin: 0 0.7rem;
  display: none;
  z-index: 88;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(255,210,26,0.45);
  border-radius: 16px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-white);
  transform: translateY(140%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.tc-mcart.is-visible { transform: translateY(0); }
@media (max-width: 992px) { .tc-mcart { display: flex; } }
.tc-mcart-icon {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-red);
  border-radius: 50%;
  flex-shrink: 0;
}
.tc-mcart-icon svg { width: 18px; height: 18px; color: var(--color-white); }
.tc-mcart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.66rem;
  font-weight: 800;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.tc-mcart-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.tc-mcart-text-1 { font-size: 0.78rem; color: var(--color-gray-light); }
.tc-mcart-text-2 { font-size: 0.95rem; font-weight: 700; color: var(--color-white); }
.tc-mcart-arrow {
  width: 30px; height: 30px;
  background: var(--color-yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-black);
  flex-shrink: 0;
}
.tc-mcart-arrow svg { width: 14px; height: 14px; }

/* ---------- BOTTOM SHEET (mobile product modal) ---------- */
.tc-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.tc-sheet-backdrop.is-open { opacity: 1; pointer-events: auto; }
/* ---------- SHEET / MODAL — mobile bottom-sheet + desktop centered 2-col ----------
   Bulletproof scroll: explicit height, min-height:0 on flex/grid scroll children.
*/
.tc-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 301;
  background: #0b0b0b;
  border-radius: 22px 22px 0 0;
  border-top: 1px solid rgba(245,196,0,0.18);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  height: 94vh;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;          /* off — hit-test ignore quand fermé */
}
.tc-sheet.is-open {
  transform: translateY(0);
  pointer-events: auto;          /* on — interactif quand ouvert */
}
.tc-sheet-handle {
  display: block;
  width: 48px;
  height: 4px;
  background: rgba(255,255,255,0.22);
  border-radius: 3px;
  margin: 0.55rem auto 0.3rem;
  flex: 0 0 auto;
}

/* CRITICAL — wrapper #tc-sheet-content must propagate flex/grid layout */
#tc-sheet-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tc-sheet-img {
  position: relative;
  width: 100%;
  height: 220px;
  max-height: 28vh;
  background: var(--color-bg-sunken);
  overflow: hidden;
  flex: 0 0 auto;
}
.tc-sheet-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.tc-sheet-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--color-white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  z-index: 5;
  transition: background 0.15s, transform 0.15s;
}
.tc-sheet-close:hover { background: #d90000; transform: scale(1.08); }

.tc-sheet-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 1.2rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.tc-sheet-body::-webkit-scrollbar { width: 6px; }
.tc-sheet-body::-webkit-scrollbar-track { background: transparent; }
.tc-sheet-body::-webkit-scrollbar-thumb {
  background: rgba(245,196,0,0.35);
  border-radius: 3px;
}

.tc-sheet-cta {
  flex: 0 0 auto;
  padding: 0.9rem 1.1rem calc(env(safe-area-inset-bottom) + 0.9rem);
  border-top: 1px solid var(--color-border);
  background: #0b0b0b;
}

/* ===== DESKTOP ≥769px — centered modal 2 cols, explicit height ===== */
@media (min-width: 769px) {
  .tc-sheet {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), opacity 0.2s;
    width: min(1100px, 94vw);
    height: min(720px, 86vh);
    max-height: 86vh;
    border-radius: 22px;
    border: 1px solid rgba(245,196,0,0.22);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .tc-sheet.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  /* Wrapper devient grid 2-col sur desktop */
  #tc-sheet-content {
    flex: 1 1 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
      "img body"
      "img cta";
    overflow: hidden;
  }
  .tc-sheet-img {
    grid-area: img;
    width: 100%;
    height: 100%;
    max-height: none;
  }
  .tc-sheet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tc-sheet-body {
    grid-area: body;
    min-height: 0;
    min-width: 0;
    padding: 1.5rem 1.5rem 1.2rem;
  }
  .tc-sheet-cta {
    grid-area: cta;
    min-width: 0;
    padding: 1rem 1.5rem 1.3rem;
    border-top: 1px solid var(--color-border);
  }
}

/* Lock body scroll on iOS without breaking modal scroll */
body.tc-sheet-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
.tc-sheet-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--color-red);
  color: var(--color-white);
  border: 0;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: var(--shadow-red);
}
.tc-sheet-cta-btn:hover { background: var(--color-red-bright); }

/* =====================================================================
   PREMIUM CUSTOMIZATION MODAL — sections + cards Top Chicken
   ===================================================================== */
.opt-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.opt-section:last-of-type { border-bottom: none; padding-bottom: 0; }

.opt-section-head {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.9rem;
}
.opt-step {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #d90000, #f5c400);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(217, 0, 0, 0.45);
}
.opt-section-titles { flex: 1; min-width: 0; }
.opt-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
  line-height: 1.1;
}
.opt-section-hint {
  font-size: 0.78rem;
  color: #b8b8b8;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.opt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
}

/* ===== CARD ===== */
.opt-card {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}
/* sr-only hidden input — accessible + label-toggle natif fonctionne */
.opt-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}
.opt-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.55rem 0.7rem;
  background: #111111;
  border: 2px solid #2a2a2a;
  border-radius: 14px;
  transition: all 0.2s ease;
  height: 100%;
  text-align: center;
  overflow: hidden;
}
.opt-card-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #050505;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.25s ease;
}
.opt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opt-card-img-fallback {
  font-size: 2rem;
  filter: grayscale(0.2);
}
.opt-card-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.opt-card-price {
  font-family: var(--font-display);
  color: #f5c400;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.opt-card-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f5c400;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 0 3px #111111;
  pointer-events: none;
  z-index: 2;
}
.opt-card-img,
.opt-card-img img,
.opt-card-label,
.opt-card-price,
.opt-card-inner { pointer-events: none; }
.opt-card { pointer-events: auto; }
.opt-card-check svg { width: 14px; height: 14px; }

.opt-card:hover .opt-card-inner {
  border-color: #f5c400;
  transform: translateY(-2px);
  background: #161616;
}
.opt-card:hover .opt-card-img { transform: scale(1.05); }

/* SELECTED state */
.opt-card input:checked + .opt-card-inner,
.opt-card.is-selected .opt-card-inner {
  border-color: #f5c400;
  background: linear-gradient(180deg, rgba(245,196,0,0.07), rgba(217,0,0,0.06));
  box-shadow:
    0 6px 20px rgba(217, 0, 0, 0.18),
    inset 0 0 0 1px rgba(245, 196, 0, 0.25);
}
.opt-card input:checked ~ .opt-card-inner .opt-card-check,
.opt-card.is-selected .opt-card-check {
  opacity: 1;
  transform: scale(1);
}
.opt-card input:checked + .opt-card-inner .opt-card-label,
.opt-card.is-selected .opt-card-label {
  color: #f5c400;
}

/* UNAVAILABLE */
.opt-card.is-unavailable .opt-card-inner {
  opacity: 0.4;
  cursor: not-allowed;
}
.opt-card.is-unavailable input { pointer-events: none; }

/* LOCKED MEAT card (kebab) */
.opt-section-locked .opt-grid { grid-template-columns: minmax(180px, 220px); }
.opt-card-locked {
  position: relative;
  cursor: default !important;
}
.opt-card-locked .opt-card-inner {
  border: 2px solid #f5c400;
  background: linear-gradient(180deg, rgba(245,196,0,0.08), rgba(217,0,0,0.06));
  padding-bottom: 1.6rem;
}
.opt-card-locked .opt-card-img {
  width: 88px;
  height: 88px;
}
.opt-card-locked-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f5c400;
  color: #050505;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(245, 196, 0, 0.35);
}
.opt-card-locked-badge svg { width: 12px; height: 12px; }
.opt-card-locked .opt-card-check { display: none; }

/* DRINK section toggle smooth */
.opt-section-drink {
  transition: opacity 0.25s ease;
}

/* Ember particles in sheet — feu fast-food */
.tc-sheet { isolation: isolate; }
.tc-sheet::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(245,196,0,0.06), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(217,0,0,0.08),   transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.tc-sheet > * { position: relative; z-index: 1; }

@media (max-width: 540px) {
  .opt-grid { grid-template-columns: repeat(3, 1fr); }
  .opt-card-img { width: 60px; height: 60px; }
  .opt-card-label { font-size: 0.74rem; }
  .opt-card-price { font-size: 0.82rem; }
  .opt-section-title { font-size: 1.1rem; }
  .opt-step { width: 26px; height: 26px; font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {
  .opt-card-inner,
  .opt-card-img,
  .opt-card-check { transition: none !important; transform: none !important; }
}

/* Page padding adjustments when bottom nav + mcart present */
@media (max-width: 992px) {
  body.has-mcart { padding-bottom: 140px; }
}

/* ----- IMPRESSION ----------------------------------------------- */
@media print {
  .tc-header, .tc-bottomnav, .tc-mcart, .tc-cart, .footer, .nav, .cart-icon { display: none !important; }
  body { background: white; color: black; }
}
