/* ============================================================
   CROUSTY FOOD — Responsive Stylesheet
   Retrofit mobile + tablette — Desktop (≥ 1024px) reste intact
   ------------------------------------------------------------
   Structure :
     0. Variables + wrappers (mobile-group/mobile-item) desktop-neutral
     1. Nav mobile (hamburger) — masqué par défaut
     2. Breakpoint TABLETTE + MOBILE (< 1024px)
     3. Breakpoint TABLETTE (768px - 1023px)
     4. Breakpoint MOBILE petit (< 400px)
   ============================================================ */


/* ============================================================
   0. VARIABLES + WRAPPERS DESKTOP-NEUTRAL
   ------------------------------------------------------------
   Les wrappers .mobile-group / .mobile-item sont rendus transparents
   en desktop via `display: contents`, pour que le layout absolu
   original continue de fonctionner comme s'ils n'existaient pas.
   En mobile, ils deviennent des vrais conteneurs flex/grid.
   ============================================================ */

:root {
  --mobile-padding: 20px;
  --mobile-gap: 32px;
}

/* Wrappers neutres en desktop (ne cassent pas le layout absolu 1920px) */
.mobile-group,
.mobile-item {
  display: contents;
}

/* Contenu hero mobile : masqué par défaut (desktop ne le voit pas) */
.hero-mobile-content {
  display: none;
}


/* ============================================================
   1. NAVBAR MOBILE — HAMBURGER
   Masqué par défaut (desktop ≥ 1024px), visible sous 1024px
   ============================================================ */

.mobile-nav-toggle,
.mobile-nav-overlay {
  display: none;
}


/* ============================================================
   2. BREAKPOINT TABLETTE + MOBILE (< 1024px)
   Tout ce qui casse le layout 1920px fixe
   ============================================================ */

@media (max-width: 1023px) {

  /* ----- Reset structurel global ----- */
  html, body {
    overflow-x: hidden;
  }

  .page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-background {
    display: none; /* fond palmiers en boucle cassé sur mobile */
  }

  body {
    background:
      radial-gradient(circle at 20% 10%, rgba(51, 68, 111, 0.22) 0%, transparent 50%),
      radial-gradient(circle at 80% 90%, rgba(82, 32, 173, 0.18) 0%, transparent 50%),
      var(--color-bg-dark);
    background-attachment: fixed;
  }

  /* Toutes les sections : plus de hauteur fixe, overflow visible, width 100% */
  .section {
    width: 100%;
    min-height: auto;
    height: auto;
    position: relative;
    overflow: visible;
  }

  /* Reset de tous les éléments absolus : on les repasse en flow */
  .section img {
    max-width: 100%;
    height: auto;
  }


  /* ============================================================
     SECTION 1 — HERO (mobile amélioré)
     Image fixée en fond, logo + tagline + CTA en overlay
     ============================================================ */

  .section-accueil {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    z-index: 7000;
    isolation: isolate;
  }

  .section-accueil__sticky {
    position: relative;
    height: 100vh;
    z-index: 1;
  }

  .section-accueil__scroll-track {
    display: none;
  }

  /* Canvas animation désactivée : on garde juste le fallback */
  .canvas-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    left: 0;
    transform: none;
    clip-path: none !important;
    z-index: 1;
  }

  #canvas {
    display: none;
  }

  /* Image hero : centrée, cover, légèrement zoomée pour éviter les bords vides */
  .canvas-fallback {
    display: block !important;
    opacity: 1 !important;
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    transform: scale(1.08);
  }

  /* Voile renforcé pour la lisibilité du contenu hero */
  .hero-standalone,
  .hero-standalone__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1 !important;
    transform: none;
    left: 0;
    pointer-events: none;
    z-index: 3;
  }

  .hero-standalone__veil {
    background:
      radial-gradient(ellipse at 50% 45%, rgba(7, 5, 12, 0.1) 0%, rgba(7, 5, 12, 0.55) 55%, rgba(7, 5, 12, 0.9) 100%),
      linear-gradient(180deg, rgba(7, 5, 12, 0.85) 0%, rgba(7, 5, 12, 0.25) 30%, rgba(7, 5, 12, 0.6) 70%, rgba(7, 5, 12, 0.95) 100%);
  }

  /* Scroll indicator masqué (on a un CTA à la place) */
  .hero-scroll-indicator {
    display: none !important;
  }

  #dark-overlay {
    opacity: 0 !important;
  }

  /* Ellipses lumière : on les remet en radial-gradient CSS propre */
  .section-accueil__light-purple,
  .section-accueil__light-blue {
    display: none;
  }

  /* Glows atmosphériques via pseudo-éléments (remplacent les ellipses PNG) */
  .section-accueil__sticky::before,
  .section-accueil__sticky::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
    filter: blur(40px);
  }

  .section-accueil__sticky::before {
    width: 500px;
    height: 500px;
    top: -120px;
    left: -180px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.55) 0%, rgba(82, 32, 173, 0.3) 40%, transparent 70%);
  }

  .section-accueil__sticky::after {
    width: 500px;
    height: 500px;
    bottom: -140px;
    right: -180px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.5) 0%, rgba(51, 82, 223, 0.3) 40%, transparent 70%);
  }

  /* ---- CONTENU HERO MOBILE (logo + tagline + CTA) ---- */
  .hero-mobile-content {
    display: flex !important;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 72px 24px 80px;
    z-index: 10;
    text-align: center;
    pointer-events: none;
  }

  .hero-mobile-content__logo {
    width: 130px;
    height: 130px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.25)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: hero-logo-float 4s ease-in-out infinite;
  }

  @keyframes hero-logo-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }

  .hero-mobile-content__tagline {
    margin: 8px 0 0;
    font-family: 'Pricedown', 'Impact', sans-serif;
    font-size: 48px;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
      0 0 30px rgba(168, 85, 247, 0.5),
      0 2px 20px rgba(0, 0, 0, 0.6);
  }

  .hero-mobile-content__tagline span {
    display: block;
    font-size: 28px;
    letter-spacing: 2px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  }

  .hero-mobile-content__subtitle {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  }

  .hero-mobile-content__cta {
    margin-top: 20px;
    padding: 16px 40px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.95) 0%, rgba(56, 189, 248, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #ffffff;
    font-family: 'Pricedown', 'Impact', sans-serif;
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow:
      0 8px 30px rgba(168, 85, 247, 0.5),
      0 0 60px rgba(56, 189, 248, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-mobile-content__cta:active {
    transform: scale(0.96);
    box-shadow:
      0 4px 20px rgba(168, 85, 247, 0.5),
      0 0 40px rgba(56, 189, 248, 0.3);
  }


  /* ============================================================
     NAVBAR MOBILE — HAMBURGER
     Position fixed + toggle overlay plein écran
     ============================================================ */

  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: rgba(7, 5, 12, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 6100;
    isolation: isolate;
    pointer-events: auto;
  }

  .navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 16px;
    position: relative;
  }

  /* Logo : petit, à gauche */
  .navbar__logo-bg {
    display: none;
  }

  .navbar__logo {
    position: static !important;
    left: auto;
    top: auto;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }

  /* Liens desktop masqués, affichés dans overlay */
  .navbar__link {
    display: none;
  }

  /* Bouton hamburger — visible sur mobile */
  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 6200;
    position: relative;
    pointer-events: auto;
  }

  .mobile-nav-toggle__bars,
  .mobile-nav-toggle__bars::before,
  .mobile-nav-toggle__bars::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
    position: relative;
  }

  .mobile-nav-toggle__bars::before,
  .mobile-nav-toggle__bars::after {
    content: '';
    position: absolute;
    left: 0;
  }

  .mobile-nav-toggle__bars::before { top: -8px; }
  .mobile-nav-toggle__bars::after  { top: 8px; }

  /* Hamburger transformé en croix quand menu ouvert */
  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bars {
    background: transparent;
  }
  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
  }
  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* Overlay plein écran */
  .mobile-nav-overlay {
    display: flex !important;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 96px 24px 32px;
    background:
      linear-gradient(180deg, rgba(9, 7, 18, 0.985) 0%, rgba(7, 5, 12, 0.975) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 6000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    isolation: isolate;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-overlay__link {
    font-family: 'Pricedown', 'Impact', sans-serif;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 12px 24px;
    border-radius: 12px;
    transition: color 0.3s ease, transform 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-overlay__link:hover,
  .mobile-nav-overlay__link:active {
    color: #ffffff;
    transform: scale(1.05);
  }

}


/* ============================================================
   3. BREAKPOINT TABLETTE (768px - 1023px)
   Layout 2 colonnes pour cartes, tailles intermédiaires
   ============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {

  .section-accueil__sticky {
    height: 100vh;
  }

}


/* ============================================================
   4. SECTIONS 2 À 7 — MOBILE + TABLETTE (< 1024px)
   Tout en flux normal, fini les coordonnées Figma absolues
   ============================================================ */

@media (max-width: 1023px) {

  /* ============================================================
     SECTION 2 — CROUSTY (layout vertical mobile, swipeable)
     Image centrée grande avec glow derrière, puis infos en dessous
     ============================================================ */

  .section-crousty {
    height: auto;
    min-height: 100vh;
    padding: 100px 16px 40px;
    overflow: hidden;
    position: relative;
    /* Désactive le scroll-chaining pendant le swipe */
    touch-action: pan-y;
  }

  /* Glow atmosphérique global derrière toute la section */
  .section-crousty::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 70%;
    max-width: 800px;
    max-height: 600px;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(168, 85, 247, 0.35) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 50%, rgba(56, 189, 248, 0.3) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
  }

  /* Slides : layout vertical centré. Image en haut (avec glow), infos en dessous */
  .crousty-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 85px 16px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    z-index: 2;
  }

  /* Tous les enfants en flux */
  .crousty-slide > div,
  .crousty-slide > a {
    position: static !important;
    left: auto !important;
    top: auto !important;
  }

  /* Wrapper du plat : contient l'image ET son glow (le glow suit le plat) */
  .section-crousty__dish {
    position: relative !important;
    width: 100% !important;
    max-width: 360px;
    aspect-ratio: 1 / 1;
    height: auto !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    order: 1;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    flex-shrink: 0;
  }
  .section-crousty__dish img {
    width: 110%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
  }

  /* Glow : placé en absolu DANS le wrapper du plat, parfaitement centré derrière */
  .section-crousty__light-fond {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 130% !important;
    height: 130% !important;
    max-width: 95vw;
    max-height: 95vw;
    z-index: 1;
    opacity: 0.9;
    pointer-events: none;
    order: 0;
  }
  /* Pour que le glow soit dans le wrapper dish au lieu d'être frère de slide :
     on force son comportement visuel avec un sélecteur plus spécifique.
     ⚠ Le HTML a light-fond AVANT dish au même niveau, on ne peut pas le
     réimbriquer. On le positionne donc en fixed-relative via section-crousty. */

  /* SOLUTION : placer le glow en absolute par rapport à la section,
     mais le centrer sur la zone qu'occupe le plat (calculable) */
  .crousty-slide .section-crousty__light-fond {
    position: absolute !important;
    /* Centré horizontalement, vertical calé sur le centre du plat */
    top: calc(85px + (100vw - 32px) / 2) !important;
    /* Clamp pour que ça suive le max-width 360px du plat */
    left: 50% !important;
    transform: translate(-50%, -50%);
    width: 440px !important;
    height: 440px !important;
    max-width: 115vw;
    max-height: 115vw;
  }

  /* Dots : en bas, au-dessus du bouton */
  .crousty-dots {
    position: absolute !important;
    bottom: 56px !important;
    top: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
    gap: 12px;
    z-index: 15;
  }

  .crousty-dots__dot {
    width: 10px;
    height: 10px;
  }

  .crousty-dots__dot--active {
    width: 16px;
    height: 16px;
  }

  /* ---- Infos sous l'image : titre, prix, ingrédients, bouton empilés ---- */
  .section-crousty__title {
    width: 100% !important;
    max-width: 260px;
    height: auto !important;
    margin: 4px auto 0 !important;
    z-index: 5;
    order: 2;
    flex-shrink: 0;
  }
  .section-crousty__title img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .section-crousty__price {
    width: 100% !important;
    max-width: 120px;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 5;
    order: 3;
    flex-shrink: 0;
  }
  .section-crousty__price img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .section-crousty__ingredients {
    width: 100% !important;
    max-width: 280px;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 5;
    order: 4;
    flex-shrink: 0;
  }
  .section-crousty__ingredients img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .section-crousty__btn-glow {
    display: none !important;
  }

  .section-crousty__btn-commander {
    width: 100% !important;
    max-width: 200px;
    height: auto !important;
    margin: 8px auto 0 !important;
    z-index: 7;
    min-height: 44px;
    order: 5;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 20px rgba(168, 85, 247, 0.5));
  }
  .section-crousty__btn-commander img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Flèches : positionnées au niveau VERTICAL du plat (pas en bas),
     pour ne pas masquer les ingrédients/prix */
  .section-crousty__arrow {
    position: absolute !important;
    width: 42px !important;
    height: 42px !important;
    /* Vertical : même niveau que le milieu du plat */
    top: calc(85px + (100vw - 32px) / 2) !important;
    bottom: auto !important;
    transform: translateY(-50%);
    z-index: 20;
    min-width: 42px;
    min-height: 42px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
    opacity: 0.85;
  }
  .section-crousty__arrow--left  { left: 8px !important; }
  .section-crousty__arrow--right { right: 8px !important; left: auto !important; }


  /* ============================================================
     SECTION 3 — TACOS (layout vertical mobile)
     Layout basé sur les wrappers .mobile-group
     ============================================================ */

  .section-tacos {
    height: auto;
    min-height: auto;
    padding: 60px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* Titre "Gratiné" (info du haut) */
  .section-tacos__gratine {
    position: static !important;
    width: 220px !important;
    height: auto !important;
    margin: 0 auto;
  }
  .section-tacos__gratine img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ---- Wrapper FROMAGES : 3 colonnes ---- */
  .mobile-group--fromages {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 480px;
  }

  .mobile-item--cheddar,
  .mobile-item--raclette,
  .mobile-item--emmental {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1 1 100px;
    max-width: 140px;
    position: relative;
  }

  /* Glows fromages : masqués en mobile (positions absolues cassées) */
  .section-tacos__fromage-glow {
    display: none !important;
  }

  /* Images fromages : passées en flow via leur parent flex */
  .mobile-item--cheddar .section-tacos__fromage-img,
  .mobile-item--raclette .section-tacos__fromage-img,
  .mobile-item--emmental .section-tacos__fromage-img {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 68px !important;
    height: 68px !important;
  }
  .mobile-item--cheddar .section-tacos__fromage-img img,
  .mobile-item--raclette .section-tacos__fromage-img img,
  .mobile-item--emmental .section-tacos__fromage-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-item--cheddar .section-tacos__fromage-txt,
  .mobile-item--raclette .section-tacos__fromage-txt,
  .mobile-item--emmental .section-tacos__fromage-txt {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100px !important;
    height: 32px !important;
  }
  .mobile-item--cheddar .section-tacos__fromage-txt img,
  .mobile-item--raclette .section-tacos__fromage-txt img,
  .mobile-item--emmental .section-tacos__fromage-txt img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Menu text (info prix menu) */
  .section-tacos__menu-text {
    position: static !important;
    width: 100% !important;
    max-width: 500px;
    height: auto !important;
    margin: 0 auto;
  }
  .section-tacos__menu-text img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ---- Wrapper TACOS (3 principaux) : 3 colonnes CÔTE-À-CÔTE ---- */
  .mobile-group--tacos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 520px;
    justify-items: center;
    margin: 0 auto;
    position: relative;
  }

  /* Glow derrière les 3 tacos (radial CSS) */
  .mobile-group--tacos::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 140%;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(255, 165, 80, 0.35) 0%, rgba(255, 100, 50, 0.15) 40%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
    mix-blend-mode: screen;
  }

  .mobile-item--tacos-uno,
  .mobile-item--tacos-dos,
  .mobile-item--tacos-tres {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    width: 100%;
  }

  /* Ellipses glows individuels tacos : désactivées */
  .section-tacos__ellipse {
    display: none !important;
  }

  /* Images des 3 tacos : plus petites pour tenir côte-à-côte */
  .mobile-item--tacos-uno .section-tacos__tacos-img,
  .mobile-item--tacos-dos .section-tacos__tacos-img,
  .mobile-item--tacos-tres .section-tacos__tacos-img {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 160px;
    height: auto !important;
    margin: 0 auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.4));
  }
  .section-tacos__tacos-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .section-tacos__tacos-name {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 150px;
    height: auto !important;
    margin: 0 auto;
  }

  /* Forcer le positionnement statique aussi via la spécificité mobile-item pour override desktop */
  .mobile-item--tacos-uno .section-tacos__tacos-name,
  .mobile-item--tacos-dos .section-tacos__tacos-name,
  .mobile-item--tacos-tres .section-tacos__tacos-name {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 150px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .section-tacos__tacos-name img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Titre "VIANDES" */
  .section-tacos__viandes-title {
    position: static !important;
    width: 180px !important;
    height: auto !important;
    margin: 20px auto 0;
  }
  .section-tacos__viandes-title img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ---- Wrapper VIANDES : grille 3 colonnes ---- */
  .mobile-group--viandes {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 480px;
    justify-items: stretch;
  }

  .mobile-item--viande {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    position: relative;
    width: 100%;
    min-height: 132px;
    padding: 10px 6px;
  }

  /* Background des viandes (glows absolus) : masqué */
  .section-tacos__viande-bg {
    display: block !important;
    position: absolute !important;
    top: 6px !important;
    left: 50% !important;
    width: 100% !important;
    max-width: 138px;
    height: 82px !important;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0.96;
    pointer-events: none;
    overflow: visible;
    filter: drop-shadow(0 0 26px rgba(255, 180, 90, 0.46));
  }

  .section-tacos__viande-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-item--viande .section-tacos__viande-img {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 96px;
    height: 68px !important;
    z-index: 2;
  }
  .section-tacos__viande-img img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-item--viande .section-tacos__viande-txt {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 112px;
    height: 32px !important;
  }
  .section-tacos__viande-txt img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* ---- Wrapper SAUCES : grille 5 colonnes ---- */
  .mobile-group--sauces {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 8px;
    width: 100%;
    max-width: 520px;
    justify-items: stretch;
  }

  .mobile-item--sauce {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    position: relative;
    width: 100%;
    min-height: 124px;
    padding: 8px 4px 6px;
    overflow: visible;
  }

  /* Sauce-bg (glow derrière l'image) : positionné en absolu dans l'item */
  .mobile-item--sauce .section-tacos__sauce-bg {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: 102px !important;
    height: 102px !important;
    opacity: 0.96;
    z-index: 1;
    overflow: visible;
    filter: drop-shadow(0 0 28px rgba(255, 175, 90, 0.46));
  }
  .section-tacos__sauce-bg img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    max-width: 100%;
  }

  .mobile-item--sauce .section-tacos__sauce-img {
    position: relative !important;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 72px;
    height: 72px !important;
    margin-top: 2px;
    z-index: 2;
    overflow: hidden;
  }
  .section-tacos__sauce-img img {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: contain;
    transform: scale(1.16);
    transform-origin: center;
  }

  .mobile-item--sauce .section-tacos__sauce-txt {
    position: relative !important;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 84px;
    height: 28px !important;
    z-index: 2;
  }
  .section-tacos__sauce-txt img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .section-tacos__viande-txt[data-mobile-label],
  .section-tacos__sauce-txt[data-mobile-label] {
    padding-inline: 4px;
  }

  .section-tacos__viande-txt[data-mobile-label] img,
  .section-tacos__sauce-txt[data-mobile-label] img {
    display: none !important;
  }

  .section-tacos__viande-txt[data-mobile-label]::after,
  .section-tacos__sauce-txt[data-mobile-label]::after {
    content: attr(data-mobile-label);
    display: block;
    width: 100%;
    color: #ffffff;
    text-align: center;
    text-wrap: balance;
    text-shadow:
      0 2px 0 rgba(0, 0, 0, 0.92),
      0 4px 10px rgba(0, 0, 0, 0.45);
  }

  .section-tacos__viande-txt[data-mobile-label]::after {
    font-family: 'Pricedown Bl', 'Pricedown', 'Impact', sans-serif;
    font-size: clamp(14px, 3.6vw, 18px);
    line-height: 0.9;
    letter-spacing: 0.5px;
  }

  .section-tacos__sauce-txt[data-mobile-label]::after {
    font-family: 'Pricedown Bl', 'Pricedown', 'Impact', sans-serif;
    font-size: clamp(15px, 4vw, 19px);
    line-height: 0.9;
    letter-spacing: 0.6px;
  }


  /* ============================================================
     SECTION 4 — BURGERS (8 burgers, grille 2 colonnes)
     ============================================================ */

  .section-burgers {
    height: auto;
    padding: 60px 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* Menu text */
  .section-burgers__menu-text {
    position: static !important;
    width: 100% !important;
    max-width: 480px;
    height: auto !important;
    margin: 0 auto 16px;
  }
  .section-burgers__menu-text img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Ellipses globales de fond : désactivées en mobile */
  .section-burgers__ellipse {
    display: none !important;
  }

  /* ---- Wrapper BURGERS : grille 2 colonnes ---- */
  .mobile-group--burgers {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
    width: 100%;
    max-width: 520px;
    justify-items: stretch;
    align-items: start;
  }

  .mobile-item--burger {
    display: grid !important;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-content: start;
    gap: 10px;
    position: relative;
    width: 100%;
    min-height: 236px;
    padding: 14px 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }

  /* Fonds rectangulaires des burgers : masqués (positions absolues) */
  .section-burgers__fond {
    display: none !important;
  }

  .mobile-item--burger .section-burgers__img {
    position: static !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none;
    height: 136px !important;
    margin: 0 auto;
  }
  .section-burgers__img img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-item--burger .section-burgers__name {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none;
    height: 34px !important;
    margin: 0 auto;
  }
  .section-burgers__name img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-item--burger .section-burgers__price {
    position: static !important;
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none;
    height: 30px !important;
    margin: 0 auto;
  }
  .section-burgers__price img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
  }


  /* ============================================================
     SECTION 5 — BOISSONS / BIG DESSERTS / DESSERTS (tabs)
     ============================================================ */

  .section-bd {
    height: auto;
    min-height: 100vh;
    padding: 40px 16px 60px;
  }

  /* Tabs : responsive */
  .bd-tabs {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
  }

  .bd-tabs__btn {
    font-size: 16px;
    padding: 12px 20px;
    letter-spacing: 2px;
    min-height: 44px;
  }

  /* Panels : repassés en flow */
  .bd-panel {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    display: none;
  }

  .bd-panel--active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  /* Prix PNG boissons (affiché en haut du panel) */
  .bd-panel[data-panel="boissons"] .bd__img--prix-180 {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 140px !important;
    height: auto !important;
    order: -1;
    margin: 0 auto 8px;
  }
  .bd__img--prix-180 img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ---- Wrapper BOISSONS : grille 3 colonnes ---- */
  .mobile-group--boissons {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 8px;
    width: 100%;
    max-width: 480px;
    justify-items: center;
  }

  .mobile-item--boisson {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 140px;
    overflow: visible !important;
  }

  /* Glows boissons : désactivés */
  .bd__glow {
    display: none !important;
  }

  .mobile-item--boisson .bd__glow,
  .mobile-item--dessert .bd__glow {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    width: 100% !important;
    height: 100% !important;
    pointer-events: none;
    z-index: 1;
    opacity: 0.78;
    mix-blend-mode: screen;
  }

  .mobile-item--boisson .bd__glow {
    max-width: 118px;
    max-height: 154px;
    filter: drop-shadow(0 0 24px rgba(80, 180, 255, 0.34));
  }

  .mobile-item--dessert .bd__glow {
    top: 70px !important;
    max-width: 186px;
    max-height: 142px;
    filter: drop-shadow(0 0 24px rgba(160, 110, 255, 0.3));
  }

  .mobile-item--boisson .bd__glow img,
  .mobile-item--dessert .bd__glow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-item--boisson .bd__img {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 120px;
    height: auto !important;
    margin: 0 auto;
    position: relative !important;
    z-index: 2;
  }
  .mobile-item--boisson .bd__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ---- Wrapper BIG DESSERTS : 1 colonne empilée ---- */
  .mobile-group--bigdesserts {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
  }

  .mobile-item--bigdessert {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    width: 100%;
    max-width: 360px;
  }

  .mobile-item--bigdessert .bd__img {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
  }

  .mobile-item--bigdessert .bd__img--crepsty-simple,
  .mobile-item--bigdessert .bd__img--crepsty-premium {
    max-width: 340px;
  }

  .mobile-item--bigdessert .bd__img--crepsty-simple-name,
  .mobile-item--bigdessert .bd__img--crepsty-premium-name {
    max-width: 300px;
  }

  .mobile-item--bigdessert .bd__img--crepsty-simple-ingr,
  .mobile-item--bigdessert .bd__img--crepsty-premium-ingr {
    max-width: 280px;
  }

  .mobile-item--bigdessert .bd__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* ---- Wrapper DESSERTS : grille 2 colonnes ---- */
  .mobile-group--desserts {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
    width: 100%;
    max-width: 480px;
    justify-items: stretch;
  }

  .mobile-item--dessert {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    width: 100%;
    min-height: 240px;
    overflow: visible !important;
  }

  .mobile-item--dessert .bd__img {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 180px;
    height: auto !important;
    margin: 0 auto;
  }

  .mobile-item--dessert .bd__img:not([class*="-name"]):not(.bd__img--caprisun) {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 124px !important;
    max-width: none;
    overflow: hidden;
    position: relative !important;
    z-index: 2;
  }

  .mobile-item--dessert .bd__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mobile-item--dessert .bd__img:not([class*="-name"]):not(.bd__img--caprisun) img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
  }

  .mobile-item--dessert .bd__img[class*="-name"] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding-inline: 6px;
    position: relative;
    z-index: 2;
  }

  .mobile-item--dessert .bd__img[data-mobile-label] img {
    display: none !important;
  }

  .mobile-item--dessert .bd__img[data-mobile-label]::after {
    content: attr(data-mobile-label);
    display: block;
    width: 100%;
    color: #ffffff;
    font-family: 'Pricedown Bl', 'Pricedown', 'Impact', sans-serif;
    font-size: clamp(16px, 4.4vw, 22px);
    line-height: 0.92;
    letter-spacing: 0.5px;
    text-align: center;
    text-wrap: balance;
    text-shadow:
      0 2px 0 rgba(0, 0, 0, 0.92),
      0 4px 10px rgba(0, 0, 0, 0.45);
  }

  /* Cas particulier panini : capri sun en overlay naturel */
  .mobile-item--dessert .bd__img--caprisun {
    max-width: 60px;
    margin-top: -20px;
    align-self: flex-end;
  }

  .mobile-item--dessert .bd__img--tiramisu img {
    transform: scale(1.1);
  }

  .mobile-item--dessert .bd__img--donuts img {
    transform: scale(1.08);
  }

  .mobile-item--dessert .bd__img--kinder img {
    transform: scale(1.1);
  }

  .mobile-item--dessert .bd__img--tarte img {
    transform: scale(1.16);
  }

  .mobile-item--dessert .bd__img--tartedaim img {
    transform: scale(1.18);
  }

  .mobile-item--dessert .bd__img--cookies img {
    transform: scale(1.03);
  }

  .mobile-item--dessert .bd__img--panini img {
    transform: scale(1.08);
  }

  .section-tacos__sauce-img--algerienne img,
  .section-tacos__sauce-img--biggy img,
  .section-tacos__sauce-img--samourai img,
  .section-tacos__sauce-img--blanche img,
  .section-tacos__sauce-img--harissa img,
  .section-tacos__sauce-img--curry img {
    transform: scale(1.2);
  }

  .section-tacos__sauce-img--mayonnaise img {
    transform: scale(0.98);
  }

  .section-tacos__sauce-img--ketchup img {
    transform: scale(1.42);
  }

  .section-tacos__sauce-img--brazil img {
    transform: scale(1.56);
  }

  .section-tacos__sauce-img--bbq img {
    transform: scale(1.34);
  }

  .mobile-item--dessert:active {
    transform: none !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  }


  /* ============================================================
     BANDEROLES ANIMÉES — plus petites, conservées
     ============================================================ */

  .banderoles {
    width: 100%;
    height: 160px;
    margin: 0;
  }

  .banderoles__band {
    height: 90px;
    left: -15%;
    width: 130%;
  }

  .banderoles__band--1 { top: 10px; }
  .banderoles__band--2 { top: 60px; }

  .banderoles__text {
    font-size: 36px;
    letter-spacing: 3px;
  }


  /* ============================================================
     SECTION 6 — COMMANDER (WhatsApp + Uber + Deliveroo)
     ============================================================ */

  .section-commander {
    height: auto;
    min-height: auto;
    padding: 60px 16px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    overflow: visible;
  }

  /* Ellipses déco : désactivées */
  .section-commander__ellipse {
    display: none !important;
  }

  /* Titre WhatsApp */
  .section-commander__title-whatsapp {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 260px !important;
    height: auto !important;
    margin: 0 auto;
  }
  .section-commander__title-whatsapp img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* QR WhatsApp */
  .section-commander__qr {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 240px !important;
    height: 240px !important;
    margin: 0 auto 20px;
    min-width: 44px;
    min-height: 44px;
  }
  .section-commander__qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Titre Livraison */
  .section-commander__title-livraison {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 240px !important;
    height: auto !important;
    margin: 16px auto 0;
  }
  .section-commander__title-livraison img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Glows logos : désactivés */
  .section-commander__glow {
    display: none !important;
  }

  /* Logos Uber / Deliveroo */
  .section-commander__logo {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 180px !important;
    height: 180px !important;
    margin: 8px auto 0;
    min-width: 44px;
    min-height: 44px;
  }
  .section-commander__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .section-commander__cliquez {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 160px !important;
    height: auto !important;
    margin: 0 auto;
  }
  .section-commander__cliquez img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }


  /* ============================================================
     SECTION 7 — FOOTER
     ============================================================ */

  .section-footer {
    height: auto;
    min-height: auto;
    padding: 48px 16px 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: visible;
  }

  /* Ellipses déco : désactivées */
  .section-footer__ellipse {
    display: none !important;
  }

  /* Titre réseaux */
  .section-footer__titre-reseaux {
    position: static !important;
    left: auto !important;
    top: auto !important;
    font-size: 32px;
    text-align: center;
    letter-spacing: 3px;
  }

  /* ---- Wrapper QR CODES footer : grille 3 colonnes ---- */
  .mobile-group--footer-qrs {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    justify-items: center;
  }

  .mobile-item--footer-qr {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
  }

  .mobile-item--footer-qr .section-footer__qr {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100px !important;
    height: 100px !important;
    margin: 0;
  }
  .section-footer__qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-item--footer-qr .section-footer__qr-label {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    font-size: 14px;
    margin: 0;
    text-align: center;
  }

  /* Tagline */
  .section-footer__tagline {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    font-size: 14px;
    text-align: center;
    padding: 8px 0;
  }

  /* Bloc infos pratiques */
  .section-footer__info-block {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 400px;
    margin: 16px auto 0;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
  }

  .section-footer__info-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
  }

  .section-footer__hours-title {
    font-size: 22px;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 8px;
  }

  /* Google Maps */
  .section-footer__map {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 400px;
    height: 280px !important;
    margin: 8px auto 0;
  }

  .section-footer__map iframe {
    width: 100%;
    height: 100%;
  }

  /* Barre de fin */
  .section-footer__bottom-bar {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
    font-size: 12px;
    text-align: center;
    margin-top: 24px;
  }

  .section-footer__bottom-bar > span,
  .section-footer__bottom-bar > a {
    flex-basis: 100%;
  }

  .section-footer__separator {
    display: none;
  }


  /* ============================================================
     GLOWS ATMOSPHÉRIQUES GLOBAUX (radial-gradient)
     Remplacent les ellipses PNG absolues cassées sur mobile
     ============================================================ */

  /* Section Burgers : glow orange/rouge en fond */
  .section-burgers {
    position: relative;
  }
  .section-burgers::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 60%;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(255, 120, 50, 0.28) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 60%, rgba(255, 180, 80, 0.22) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
  }
  .section-burgers > * {
    position: relative;
    z-index: 1;
  }

  /* Section Boissons/Desserts : glow violet/bleu */
  .section-bd {
    position: relative;
  }
  .section-bd::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 70%;
    background:
      radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.22) 0%, rgba(56, 189, 248, 0.15) 50%, transparent 75%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
  }
  .section-bd > * {
    position: relative;
    z-index: 1;
  }

  /* Section Commander : 3 glows colorés (rouge, vert, violet) comme dans desktop */
  .section-commander {
    position: relative;
  }
  .section-commander::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background:
      radial-gradient(ellipse 60% 50% at 20% 15%, rgba(239, 68, 68, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse 55% 45% at 50% 50%, rgba(34, 197, 94, 0.25) 0%, transparent 55%),
      radial-gradient(ellipse 60% 50% at 80% 85%, rgba(168, 85, 247, 0.35) 0%, transparent 55%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
  }
  .section-commander > * {
    position: relative;
    z-index: 1;
  }

  /* Section Footer : glow bleu + jaune */
  .section-footer {
    position: relative;
  }
  .section-footer::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 120%;
    height: 80%;
    background:
      radial-gradient(ellipse 50% 40% at 25% 40%, rgba(253, 224, 71, 0.18) 0%, transparent 55%),
      radial-gradient(ellipse 55% 45% at 75% 60%, rgba(59, 130, 246, 0.3) 0%, transparent 55%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
  }
  .section-footer > * {
    position: relative;
    z-index: 1;
  }


  /* ============================================================
     DÉSACTIVATION DES ANIMATIONS LOURDES EN MOBILE
     ============================================================ */

  /* Carrousel crousty : désactive animations de transition */
  .crousty-slide--exiting-left,
  .crousty-slide--exiting-right,
  .crousty-slide--entering-from-right,
  .crousty-slide--entering-from-left {
    filter: none !important;
  }

  .crousty-slide {
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  .crousty-slide--exiting-left {
    animation: mobile-crousty-exit-left 0.54s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
    z-index: 2;
  }

  .crousty-slide--exiting-right {
    animation: mobile-crousty-exit-right 0.54s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
    z-index: 2;
  }

  .crousty-slide--entering-from-right {
    animation: mobile-crousty-enter-right 0.54s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
    z-index: 3;
  }

  .crousty-slide--entering-from-left {
    animation: mobile-crousty-enter-left 0.54s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
    z-index: 3;
  }

  @keyframes mobile-crousty-exit-left {
    from {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
    35% {
      opacity: 1;
      transform: translateX(-4%) scale(1.04);
    }
    to {
      opacity: 0;
      transform: translateX(-18%) scale(0.94);
    }
  }

  @keyframes mobile-crousty-exit-right {
    from {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
    35% {
      opacity: 1;
      transform: translateX(4%) scale(1.04);
    }
    to {
      opacity: 0;
      transform: translateX(18%) scale(0.94);
    }
  }

  @keyframes mobile-crousty-enter-right {
    from {
      opacity: 0;
      transform: translateX(18%) scale(1.06);
    }
    58% {
      opacity: 1;
      transform: translateX(-3%) scale(0.985);
    }
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  @keyframes mobile-crousty-enter-left {
    from {
      opacity: 0;
      transform: translateX(-18%) scale(1.06);
    }
    58% {
      opacity: 1;
      transform: translateX(3%) scale(0.985);
    }
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }

  .crousty-slide:not(.crousty-slide--active):not(.crousty-slide--exiting-left):not(.crousty-slide--exiting-right) {
    opacity: 0;
    pointer-events: none;
  }

  .crousty-slide--active {
    opacity: 1;
    pointer-events: auto;
  }

  .crousty-slide--active .section-crousty__title,
  .crousty-slide--active .section-crousty__price,
  .crousty-slide--active .section-crousty__ingredients,
  .crousty-slide--active .section-crousty__btn-commander,
  .crousty-slide--active .section-crousty__btn-glow {
    animation: none !important;
  }

  .crousty-slide--active .section-crousty__light-fond {
    animation: none !important;
  }

}


/* ============================================================
   Pas d'effets hover sur écrans tactiles
   ============================================================ */

@media (hover: none) {
  .navbar__link:hover,
  .section-crousty__btn-commander:hover,
  .section-crousty__arrow:hover,
  .section-commander__qr:hover,
  .section-commander__logo:hover,
  .section-crousty__arrow:hover {
    transform: none;
    filter: none;
  }
}


/* ============================================================
   5. BREAKPOINT TABLETTE — raffinements (768px - 1023px)
   ============================================================ */

@media (min-width: 768px) and (max-width: 1023px) {

  /* Fromages : plus grands */
  .mobile-item--cheddar .section-tacos__fromage-img,
  .mobile-item--raclette .section-tacos__fromage-img,
  .mobile-item--emmental .section-tacos__fromage-img {
    width: 90px !important;
    height: 90px !important;
  }

  /* Tacos côte-à-côte : plus grands sur tablette */
  .mobile-item--tacos-uno .section-tacos__tacos-img,
  .mobile-item--tacos-dos .section-tacos__tacos-img,
  .mobile-item--tacos-tres .section-tacos__tacos-img {
    max-width: 220px !important;
  }

  .mobile-group--tacos {
    max-width: 720px;
    gap: 16px;
  }

  /* Crousty tablette : plat plus grand, infos plus larges */
  .crousty-slide {
    padding: 100px 24px 120px !important;
    gap: 8px !important;
  }

  .section-crousty__dish {
    max-width: 440px !important;
  }

  .crousty-slide .section-crousty__light-fond {
    top: calc(100px + 220px) !important; /* padding-top + demi-plat (440/2) */
    width: 550px !important;
    height: 550px !important;
  }

  .section-crousty__arrow {
    top: calc(100px + 220px) !important;
    width: 52px !important;
    height: 52px !important;
  }

  .section-crousty__title {
    max-width: 340px !important;
  }
  .section-crousty__price {
    max-width: 160px !important;
  }
  .section-crousty__ingredients {
    max-width: 360px !important;
  }
  .section-crousty__btn-commander {
    max-width: 260px !important;
  }

  /* Hero tablette : logo et texte plus grands */
  .hero-mobile-content__logo {
    width: 160px;
    height: 160px;
  }
  .hero-mobile-content__tagline {
    font-size: 64px;
  }
  .hero-mobile-content__tagline span {
    font-size: 36px;
  }
  .hero-mobile-content__subtitle {
    font-size: 16px;
  }
  .hero-mobile-content__cta {
    font-size: 24px;
    padding: 18px 48px;
  }

  /* Viandes : plus grandes */
  .mobile-item--viande .section-tacos__viande-img {
    max-width: 116px;
    height: 82px !important;
  }

  .mobile-item--viande .section-tacos__viande-txt {
    max-width: 128px;
    height: 36px !important;
  }

  .section-tacos__viande-txt[data-mobile-label]::after {
    font-size: 15px;
  }

  /* Sauces : plus grandes */
  .mobile-group--sauces {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .mobile-item--sauce .section-tacos__sauce-img {
    max-width: 84px;
    height: 84px !important;
  }
  .mobile-item--sauce .section-tacos__sauce-bg {
    width: 104px !important;
    height: 104px !important;
  }

  .mobile-item--sauce .section-tacos__sauce-txt {
    max-width: 96px;
    height: 30px !important;
  }

  .section-tacos__sauce-txt[data-mobile-label]::after {
    font-size: 18px;
  }

  /* Burgers : grille plus spacieuse, images plus grandes */
  .mobile-group--burgers {
    max-width: 720px;
    gap: 32px 16px;
  }

  .mobile-item--burger .section-burgers__img {
    height: 168px !important;
  }

  .mobile-item--burger .section-burgers__name {
    height: 40px !important;
  }

  .mobile-item--burger .section-burgers__price {
    height: 34px !important;
  }

  /* Boissons : canettes plus grandes */
  .mobile-item--boisson .bd__img {
    max-width: 160px;
  }

  /* Desserts : 3 colonnes au lieu de 2 */
  .mobile-group--desserts {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 680px;
  }

  .mobile-item--dessert .bd__img {
    max-width: 200px;
  }

  .mobile-item--dessert .bd__img:not([class*="-name"]):not(.bd__img--caprisun) {
    height: 136px !important;
  }

  .mobile-item--dessert .bd__img[data-mobile-label]::after {
    font-size: clamp(17px, 3vw, 24px);
  }

  /* QR codes footer : plus gros */
  .mobile-item--footer-qr .section-footer__qr {
    width: 140px !important;
    height: 140px !important;
  }

  .mobile-item--footer-qr .section-footer__qr-label {
    font-size: 16px;
  }

  /* Commander : QR WhatsApp plus grand */
  .section-commander__qr {
    width: 320px !important;
    height: 320px !important;
  }

  .section-commander__logo {
    width: 220px !important;
    height: 220px !important;
  }

}


/* ============================================================
   6. BREAKPOINT MOBILE PETIT (< 400px)
   Ajustements pour iPhone SE et petits Android
   ============================================================ */

@media (max-width: 399px) {

  .bd-tabs__btn {
    font-size: 13px;
    padding: 10px 14px;
    letter-spacing: 1.5px;
  }

  .banderoles__text {
    font-size: 28px;
  }

  .section-crousty {
    padding-top: 120px;
  }

  .crousty-dots__dot {
    width: 10px;
    height: 10px;
  }
  .crousty-dots__dot--active {
    width: 14px;
    height: 14px;
  }

  .section-commander__qr {
    width: 200px !important;
    height: 200px !important;
  }

  .section-commander__logo {
    width: 150px !important;
    height: 150px !important;
  }

  .mobile-item--footer-qr .section-footer__qr {
    width: 85px !important;
    height: 85px !important;
  }

  .mobile-item--footer-qr .section-footer__qr-label {
    font-size: 12px;
  }

  /* Tacos côte-à-côte : encore plus compact sur très petit écran */
  .mobile-item--tacos-uno .section-tacos__tacos-img,
  .mobile-item--tacos-dos .section-tacos__tacos-img,
  .mobile-item--tacos-tres .section-tacos__tacos-img {
    max-width: 100px !important;
  }

  .section-tacos__tacos-name {
    max-width: 110px !important;
  }

  .mobile-group--tacos {
    gap: 4px !important;
  }

  /* Crousty très petit : plat et infos compactés */
  .crousty-slide {
    padding: 80px 8px 100px !important;
    gap: 2px !important;
  }

  .section-crousty__dish {
    max-width: 280px !important;
  }

  .crousty-slide .section-crousty__light-fond {
    top: calc(80px + 140px) !important;
    width: 340px !important;
    height: 340px !important;
  }

  .section-crousty__arrow {
    top: calc(80px + 140px) !important;
    width: 38px !important;
    height: 38px !important;
  }

  .section-crousty__title {
    max-width: 200px !important;
  }
  .section-crousty__price {
    max-width: 100px !important;
  }
  .section-crousty__ingredients {
    max-width: 220px !important;
  }
  .section-crousty__btn-commander {
    max-width: 170px !important;
  }

  /* Hero très petit : réduction */
  .hero-mobile-content__logo {
    width: 100px;
    height: 100px;
  }
  .hero-mobile-content__tagline {
    font-size: 38px;
  }
  .hero-mobile-content__tagline span {
    font-size: 22px;
  }
  .hero-mobile-content__subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .hero-mobile-content__cta {
    font-size: 18px;
    padding: 14px 32px;
  }

  /* Viandes : 3 colonnes compactes */
  .mobile-item--viande .section-tacos__viande-img {
    max-width: 80px;
    height: 56px !important;
  }

  .mobile-item--viande .section-tacos__viande-txt {
    height: 28px !important;
  }

  .section-tacos__viande-txt[data-mobile-label]::after {
    font-size: 11px;
  }

  /* Sauces : 4 colonnes au lieu de 5 */
  .mobile-group--sauces {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .mobile-item--sauce {
    min-height: 112px;
  }

  .mobile-item--sauce .section-tacos__sauce-bg {
    width: 84px !important;
    height: 84px !important;
  }

  .mobile-item--sauce .section-tacos__sauce-img {
    max-width: 64px;
    height: 64px !important;
  }

  .mobile-item--sauce .section-tacos__sauce-txt {
    max-width: 72px;
    height: 24px !important;
  }

  .section-tacos__sauce-txt[data-mobile-label]::after {
    font-size: 14px;
  }

  /* Burgers : plus compact */
  .mobile-item--burger .section-burgers__img {
    height: 116px !important;
  }

  .mobile-item--burger .section-burgers__name {
    height: 30px !important;
  }

  .mobile-item--burger .section-burgers__price {
    height: 26px !important;
  }

  .mobile-item--dessert {
    min-height: 216px;
  }

  .mobile-item--dessert .bd__img:not([class*="-name"]):not(.bd__img--caprisun) {
    height: 108px !important;
  }

  .mobile-item--dessert .bd__img[data-mobile-label]::after {
    font-size: clamp(14px, 4vw, 18px);
  }

}


/* ============================================================
   7. ACCESSIBILITY — touch targets
   ============================================================ */

@media (max-width: 1023px) {

  .mobile-nav-overlay__link,
  .section-crousty__btn-commander,
  .section-crousty__arrow,
  .section-commander__qr,
  .section-commander__logo,
  .section-footer__address a,
  .section-footer__phone a,
  .section-footer__legal-link,
  .bd-tabs__btn {
    min-height: 44px;
  }

  input, select, textarea {
    font-size: 16px;
  }

}


/* ============================================================
   8. DESKTOP SCALING
   Le site est dessiné pixel-perfect pour 1920x1080. On utilise
   `zoom` (et non `transform: scale`) pour que les dimensions
   calculées restent cohérentes avec :
     - le canvas hero (getBoundingClientRect / dpr)
     - les animations scroll (offsetHeight / innerHeight)
     - le loader plein écran (inset: 0)

   Correction vh / vw :
     Avec `zoom` sur <html>, Chrome garde 100vh/100vw basés sur
     le viewport RÉEL (non zoomé) puis applique le zoom sur le
     résultat — ce qui rend les blocs « plein écran » du site
     (.section-accueil__sticky, .page-background, .hero-standalone,
     .canvas-wrap, #dark-overlay) visuellement plus petits que
     la fenêtre. On divise donc 100vh/100vw par le ratio de zoom
     pour qu'ils remplissent exactement l'écran une fois scalés.

   Plages couvertes (en dessous : responsive mobile <1024px,
   au-dessus : rendu natif 1920px) :
     1280x720  → zoom 0.6667   (HD / anciens laptops 16:9)
     1366x768  → zoom 0.7115   (laptops standards — la plus répandue)
     1440x900  → zoom 0.75     (MacBook / écrans pros 16:10)
     1536x864  → zoom 0.8      (Windows DPI 125% sur Full HD)
   ============================================================ */

/* ---- Alignement bg pour toutes les plages zoomées ----
   `.page-background { left: 50%; translateX(-50%) }` est centré
   sur la CONTENT area (hors scrollbar) en mode zoom, ce qui
   décale le bg de ~la moitié de la scrollbar. On ancre plutôt
   à gauche pour que le bg s'aligne pixel-perfect avec le
   .page-wrapper (lui aussi margin: 0 auto dans la content area).
*/
@media (min-width: 1280px) and (max-width: 1679px) {
  .page-background {
    left: 0;
    transform: none;
  }
}

/* ---- 1280x720 ---- */
@media (min-width: 1280px) and (max-width: 1365px) {

  html {
    zoom: 0.6667;
  }

  :root {
    --accueil-scroll-distance: calc(320vh / 0.6667);
  }

  .section-accueil__sticky,
  .page-background {
    height: calc(100vh / 0.6667);
  }

  .hero-standalone,
  .canvas-wrap,
  #dark-overlay {
    width: calc(100vw / 0.6667);
  }

}

/* ---- 1366x768 ---- */
@media (min-width: 1366px) and (max-width: 1439px) {

  html {
    zoom: 0.7115;
  }

  :root {
    --accueil-scroll-distance: calc(320vh / 0.7115);
  }

  .section-accueil__sticky,
  .page-background {
    height: calc(100vh / 0.7115);
  }

  .hero-standalone,
  .canvas-wrap,
  #dark-overlay {
    width: calc(100vw / 0.7115);
  }

}

/* ---- 1440x900 (16:10) ---- */
@media (min-width: 1440px) and (max-width: 1535px) {

  html {
    zoom: 0.75;
  }

  :root {
    --accueil-scroll-distance: calc(320vh / 0.75);
  }

  .section-accueil__sticky,
  .page-background {
    height: calc(100vh / 0.75);
  }

  .hero-standalone,
  .canvas-wrap,
  #dark-overlay {
    width: calc(100vw / 0.75);
  }

}

/* ---- 1536x864 ---- */
@media (min-width: 1536px) and (max-width: 1679px) {

  html {
    zoom: 0.8;
  }

  :root {
    --accueil-scroll-distance: calc(320vh / 0.8);
  }

  .section-accueil__sticky,
  .page-background {
    height: calc(100vh / 0.8);
  }

  .hero-standalone,
  .canvas-wrap,
  #dark-overlay {
    width: calc(100vw / 0.8);
  }

}
