/* ============================================================
   CROUSTY FOOD — Mobile Design Layer
   Style: Dark Gaming / Néon GTA — bold, contrasty, neon glow
   Appliqué uniquement sur < 1024px, desktop reste intact
   ============================================================ */


/* ============================================================
   0. VARIABLES NÉON
   ============================================================ */

:root {
  --neon-violet:     #a855f7;
  --neon-violet-d:   #7c3aed;
  --neon-blue:       #38bdf8;
  --neon-blue-d:     #0ea5e9;
  --neon-pink:       #ec4899;
  --neon-cyan:       #22d3ee;
  --neon-red:        #ef4444;
  --neon-orange:     #fb923c;

  --dark-0:          #050409;
  --dark-1:          #0a0714;
  --dark-2:          #110a1f;
  --dark-3:          #1a1030;

  --shadow-neu-out:
    0 8px 24px rgba(0, 0, 0, 0.6),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);

  --shadow-neu-in:
    inset 0 4px 12px rgba(0, 0, 0, 0.7),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);

  --glow-violet:     0 0 40px rgba(168, 85, 247, 0.4);
  --glow-blue:       0 0 40px rgba(56, 189, 248, 0.4);
  --glow-pink:       0 0 40px rgba(236, 72, 153, 0.4);
}


/* ============================================================
   MOBILE + TABLETTE (< 1024px) — Couche design
   ============================================================ */

@media (max-width: 1023px) {

  /* ============================================================
     BACKGROUND GLOBAL : grille néon + bruit subtil
     ============================================================ */

  body {
    background:
      /* Grille néon subtile */
      linear-gradient(rgba(168, 85, 247, 0.035) 1px, transparent 1px) 0 0 / 40px 40px,
      linear-gradient(90deg, rgba(56, 189, 248, 0.035) 1px, transparent 1px) 0 0 / 40px 40px,
      /* Glows radiaux atmosphériques */
      radial-gradient(circle at 15% 5%, rgba(168, 85, 247, 0.18) 0%, transparent 50%),
      radial-gradient(circle at 85% 95%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
      radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 60%),
      /* Fond dark profond */
      linear-gradient(180deg, var(--dark-1) 0%, var(--dark-0) 100%) !important;
    background-attachment: fixed !important;
  }


  /* ============================================================
     NAVBAR — glassmorphism + bordure néon animée
     ============================================================ */

  .navbar {
    background: rgba(10, 7, 20, 0.72) !important;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid transparent !important;
    background-clip: padding-box;
    position: fixed;
    box-shadow:
      0 1px 0 rgba(168, 85, 247, 0.2),
      0 8px 32px rgba(0, 0, 0, 0.6);
  }

  /* Bordure néon animée en bas de la navbar */
  .navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      var(--neon-violet) 30%,
      var(--neon-blue) 50%,
      var(--neon-pink) 70%,
      transparent 100%
    );
    background-size: 200% 100%;
    animation: nav-border-scan 6s linear infinite;
    opacity: 0.7;
  }

  @keyframes nav-border-scan {
    0%   { background-position: -100% 0; }
    100% { background-position: 100% 0; }
  }

  /* Logo navbar : effet glow au tap */
  .navbar__logo {
    transition: filter 0.3s ease, transform 0.3s ease;
  }
  .navbar__logo:active {
    transform: scale(0.95);
    filter: drop-shadow(0 0 20px var(--neon-violet)) brightness(1.15);
  }


  /* ============================================================
     HERO — push néon plus fort
     ============================================================ */

  /* Logo hero : halo pulsé */
  .hero-mobile-content__logo {
    filter:
      drop-shadow(0 0 40px rgba(168, 85, 247, 0.7))
      drop-shadow(0 0 80px rgba(56, 189, 248, 0.4))
      drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6)) !important;
    animation: hero-logo-pulse 3.2s ease-in-out infinite !important;
  }

  @keyframes hero-logo-pulse {
    0%, 100% {
      transform: translateY(0) scale(1);
      filter:
        drop-shadow(0 0 40px rgba(168, 85, 247, 0.7))
        drop-shadow(0 0 80px rgba(56, 189, 248, 0.4))
        drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6));
    }
    50% {
      transform: translateY(-10px) scale(1.04);
      filter:
        drop-shadow(0 0 60px rgba(168, 85, 247, 0.9))
        drop-shadow(0 0 120px rgba(56, 189, 248, 0.6))
        drop-shadow(0 12px 36px rgba(0, 0, 0, 0.6));
    }
  }

  /* Tagline : effet double (violet + bleu comme néon split) */
  .hero-mobile-content__tagline {
    text-shadow:
      0 0 2px rgba(168, 85, 247, 0.9),
      -2px 0 20px rgba(168, 85, 247, 0.6),
      2px 0 20px rgba(56, 189, 248, 0.6),
      0 0 50px rgba(168, 85, 247, 0.4),
      0 4px 24px rgba(0, 0, 0, 0.8) !important;
    position: relative;
  }

  .hero-mobile-content__subtitle {
    position: relative;
    display: inline-block;
    padding: 6px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: rgba(255, 255, 255, 0.92) !important;
  }

  /* CTA hero : double glow + shine */
  .hero-mobile-content__cta {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(135deg, var(--neon-violet) 0%, var(--neon-blue) 100%) !important;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2),
      0 8px 24px rgba(168, 85, 247, 0.6),
      0 0 60px rgba(56, 189, 248, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -2px 0 rgba(0, 0, 0, 0.15) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Effet shine qui traverse le CTA */
  .hero-mobile-content__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );
    animation: cta-shine 3.5s ease-in-out infinite;
    animation-delay: 1.2s;
  }

  @keyframes cta-shine {
    0%, 65% { left: -100%; }
    100%    { left: 200%; }
  }


  /* ============================================================
     SECTION CROUSTY — carrousel gaming
     ============================================================ */

  /* Glow principal renforcé */
  .section-crousty::before {
    background:
      radial-gradient(ellipse at 30% 50%, rgba(168, 85, 247, 0.5) 0%, transparent 55%),
      radial-gradient(ellipse at 70% 50%, rgba(56, 189, 248, 0.45) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 100%, rgba(236, 72, 153, 0.3) 0%, transparent 50%) !important;
    filter: blur(50px) !important;
    opacity: 0.9;
  }

  /* Dots : plus stylés, avec halo actif */
  .crousty-dots {
    padding: 8px 14px;
    background: rgba(10, 7, 20, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
      0 4px 16px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .crousty-dots__dot {
    background: rgba(255, 255, 255, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.2, 0.85, 0.3, 1.05);
  }

  .crousty-dots__dot--active {
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-blue)) !important;
    box-shadow:
      0 0 12px rgba(168, 85, 247, 0.9),
      0 0 24px rgba(56, 189, 248, 0.5);
  }

  /* Plat central : halo néon tournant + floating */
  .section-crousty__dish {
    animation: crousty-dish-float 5s ease-in-out infinite;
    filter:
      drop-shadow(0 15px 40px rgba(0, 0, 0, 0.7))
      drop-shadow(0 0 60px rgba(168, 85, 247, 0.25)) !important;
  }

  @keyframes crousty-dish-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-12px) rotate(1deg); }
  }

  /* Halo tournant autour du plat */
  .section-crousty__light-fond {
    animation: crousty-halo-rotate 18s linear infinite !important;
    opacity: 1 !important;
  }

  @keyframes crousty-halo-rotate {
    0%   { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50%  { transform: translate(-50%, -50%) rotate(180deg) scale(1.08); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
  }

  /* Bouton commander : effet identique au CTA hero, plus compact */
  .section-crousty__btn-commander {
    position: relative;
    overflow: hidden;
    filter:
      drop-shadow(0 0 24px rgba(168, 85, 247, 0.7))
      drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) !important;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .section-crousty__btn-commander:active {
    transform: scale(0.94);
    filter:
      drop-shadow(0 0 40px rgba(168, 85, 247, 0.9))
      drop-shadow(0 0 60px rgba(56, 189, 248, 0.5));
  }

  /* Flèches : effet neumorphism + halo au tap */
  .section-crousty__arrow {
    background: rgba(10, 7, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
      0 6px 20px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .section-crousty__arrow:active {
    transform: scale(0.92);
    box-shadow:
      0 0 24px rgba(168, 85, 247, 0.7),
      inset 0 2px 4px rgba(0, 0, 0, 0.3);
  }


  /* ============================================================
     SECTION TACOS — bold street style
     ============================================================ */

  .section-tacos {
    padding: 80px 16px 60px !important;
    position: relative;
  }

  /* Glow diagonal en fond de la section tacos */
  .section-tacos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background:
      radial-gradient(ellipse at 25% 20%, rgba(251, 146, 60, 0.22) 0%, transparent 50%),
      radial-gradient(ellipse at 75% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
  }

  .section-tacos > * {
    position: relative;
    z-index: 1;
  }

  /* Titre GRATINÉ : halo orange (ça reste un PNG donc filter drop-shadow) */
  .section-tacos__gratine {
    filter: drop-shadow(0 0 20px rgba(251, 146, 60, 0.6)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  }

  /* Menu text : halo violet/bleu */
  .section-tacos__menu-text {
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  }

  /* Cartes tacos côte-à-côte : glassmorphism + halo hover */
  .mobile-item--tacos-uno,
  .mobile-item--tacos-dos,
  .mobile-item--tacos-tres {
    padding: 14px 6px !important;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.08) 0%, rgba(56, 189, 248, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: var(--shadow-neu-out);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: visible;
  }

  .mobile-item--tacos-uno:active,
  .mobile-item--tacos-dos:active,
  .mobile-item--tacos-tres:active {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.6),
      0 0 30px rgba(168, 85, 247, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* Images tacos : float subtil */
  .mobile-item--tacos-uno .section-tacos__tacos-img,
  .mobile-item--tacos-dos .section-tacos__tacos-img,
  .mobile-item--tacos-tres .section-tacos__tacos-img {
    filter:
      drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 24px rgba(251, 146, 60, 0.2)) !important;
    animation: taco-float 4s ease-in-out infinite;
  }

  /* Décalage d'animation pour les 3 tacos */
  .mobile-item--tacos-dos .section-tacos__tacos-img  { animation-delay: -1.3s; }
  .mobile-item--tacos-tres .section-tacos__tacos-img { animation-delay: -2.6s; }

  @keyframes taco-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
  }

  /* Noms tacos : léger glow */
  .section-tacos__tacos-name {
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.4)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  }

  /* VIANDES title */
  .section-tacos__viandes-title {
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.5)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  }

  /* Grille viandes : micro-cartes néon */
  .mobile-item--viande {
    padding: 12px 6px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    box-shadow: var(--shadow-neu-out);
    transition: all 0.3s ease;
  }

  .mobile-item--viande:active {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.5),
      0 0 20px rgba(236, 72, 153, 0.3);
    transform: translateY(-1px);
  }

  .mobile-item--viande .section-tacos__viande-img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  }

  /* Grille sauces : petites puces colorées avec glow individuel */
  .mobile-item--sauce {
    padding: 8px 4px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
  }

  .mobile-item--sauce:active {
    transform: translateY(-2px) scale(1.04);
    border-color: rgba(251, 146, 60, 0.4);
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.5),
      0 0 24px rgba(251, 146, 60, 0.35);
  }

  .mobile-item--sauce .section-tacos__sauce-img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
  }


  /* ============================================================
     SECTION BURGERS — cards néon gaming
     ============================================================ */

  .section-burgers {
    padding: 80px 16px 60px !important;
  }

  /* Glow renforcé */
  .section-burgers::before {
    background:
      radial-gradient(ellipse at 30% 30%, rgba(251, 146, 60, 0.38) 0%, transparent 55%),
      radial-gradient(ellipse at 70% 70%, rgba(239, 68, 68, 0.28) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 60%) !important;
    filter: blur(70px) !important;
    height: 80% !important;
    top: 10% !important;
    opacity: 0.9;
  }

  /* Menu text burgers */
  .section-burgers__menu-text {
    filter: drop-shadow(0 0 20px rgba(251, 146, 60, 0.5)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  }

  /* Cards burger : neumorphism premium */
  .mobile-item--burger {
    padding: 18px 12px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(251, 146, 60, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.2, 0.85, 0.3, 1.05),
                box-shadow 0.4s ease,
                border-color 0.4s ease !important;
    position: relative;
    overflow: hidden;
  }

  /* Lueur de fond dans chaque card (glow colonne verticale) */
  .mobile-item--burger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(
      ellipse at 50% 30%,
      rgba(251, 146, 60, 0.12) 0%,
      transparent 60%
    );
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .mobile-item--burger > * {
    position: relative;
    z-index: 1;
  }

  .mobile-item--burger:active {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(251, 146, 60, 0.35) !important;
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.6),
      0 0 50px rgba(251, 146, 60, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4) !important;
  }

  .mobile-item--burger:active::before {
    opacity: 1;
  }

  /* Image burger : float subtil avec ombre portée */
  .mobile-item--burger .section-burgers__img {
    filter:
      drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55))
      drop-shadow(0 0 28px rgba(251, 146, 60, 0.2)) !important;
    animation: burger-float 5s ease-in-out infinite;
  }

  @keyframes burger-float {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50%      { transform: translateY(-5px) rotate(0.5deg); }
  }

  /* Décalages pour varier l'animation */
  .mobile-group--burgers .mobile-item--burger:nth-child(2) .section-burgers__img { animation-delay: -0.7s; }
  .mobile-group--burgers .mobile-item--burger:nth-child(3) .section-burgers__img { animation-delay: -1.4s; }
  .mobile-group--burgers .mobile-item--burger:nth-child(4) .section-burgers__img { animation-delay: -2.1s; }
  .mobile-group--burgers .mobile-item--burger:nth-child(5) .section-burgers__img { animation-delay: -2.8s; }
  .mobile-group--burgers .mobile-item--burger:nth-child(6) .section-burgers__img { animation-delay: -3.5s; }
  .mobile-group--burgers .mobile-item--burger:nth-child(7) .section-burgers__img { animation-delay: -4.2s; }
  .mobile-group--burgers .mobile-item--burger:nth-child(8) .section-burgers__img { animation-delay: -0.3s; }

  /* Nom et prix */
  .section-burgers__name {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.7));
  }

  .section-burgers__price {
    filter: drop-shadow(0 0 12px rgba(251, 146, 60, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  }


  /* ============================================================
     SECTION BOISSONS / DESSERTS — ultra gaming
     ============================================================ */

  .section-bd {
    padding: 60px 16px 60px !important;
  }

  /* Glow renforcé */
  .section-bd::before {
    background:
      radial-gradient(ellipse at 50% 30%, rgba(168, 85, 247, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 70%, rgba(56, 189, 248, 0.3) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.15) 0%, transparent 60%) !important;
    filter: blur(80px) !important;
    opacity: 0.9;
  }

  /* TABS : style boutons néon gamer */
  .bd-tabs {
    padding: 6px !important;
    background: rgba(10, 7, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    gap: 4px !important;
    margin-bottom: 40px !important;
  }

  .bd-tabs__btn {
    border-radius: 14px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    transition: all 0.35s ease !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .bd-tabs__btn--active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.85) 0%, rgba(56, 189, 248, 0.85) 100%) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow:
      0 0 30px rgba(168, 85, 247, 0.5),
      0 0 60px rgba(56, 189, 248, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.7) !important;
  }

  /* Cards boissons : cylindres néon */
  .mobile-item--boisson {
    padding: 16px 8px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  /* Ray of light vertical dans chaque card */
  .mobile-item--boisson::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: linear-gradient(
      180deg,
      rgba(56, 189, 248, 0.12) 0%,
      transparent 50%,
      rgba(168, 85, 247, 0.12) 100%
    );
    pointer-events: none;
    opacity: 0.8;
  }

  .mobile-item--boisson > * {
    position: relative;
    z-index: 1;
  }

  .mobile-item--boisson:active {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.6),
      0 0 30px rgba(56, 189, 248, 0.35);
  }

  .mobile-item--boisson .bd__img {
    filter:
      drop-shadow(0 8px 14px rgba(0, 0, 0, 0.6))
      drop-shadow(0 0 24px rgba(56, 189, 248, 0.3)) !important;
    animation: boisson-float 4.5s ease-in-out infinite;
  }

  .mobile-item--boisson:nth-child(2) .bd__img { animation-delay: -0.9s; }
  .mobile-item--boisson:nth-child(3) .bd__img { animation-delay: -1.8s; }
  .mobile-item--boisson:nth-child(4) .bd__img { animation-delay: -2.7s; }
  .mobile-item--boisson:nth-child(5) .bd__img { animation-delay: -3.6s; }

  @keyframes boisson-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }

  /* Prix boisson en haut : badge néon */
  .bd-panel[data-panel="boissons"] .bd__img--prix-180 {
    padding: 10px 24px !important;
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-blue));
    border-radius: 30px;
    box-shadow:
      0 8px 24px rgba(168, 85, 247, 0.5),
      0 0 40px rgba(56, 189, 248, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    max-width: 160px !important;
  }

  /* Big Desserts : cards premium */
  .mobile-item--bigdessert {
    padding: 20px 16px !important;
    background: linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(236, 72, 153, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }

  .mobile-item--bigdessert:active {
    transform: translateY(-4px);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.6),
      0 0 50px rgba(236, 72, 153, 0.4);
  }

  .mobile-item--bigdessert .bd__img {
    filter:
      drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 28px rgba(236, 72, 153, 0.25)) !important;
  }

  /* Desserts grille : micro-cards */
  .mobile-item--dessert {
    padding: 14px 8px !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.35s ease;
  }

  .mobile-item--dessert:active {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.6),
      0 0 30px rgba(236, 72, 153, 0.35);
  }

  .mobile-item--dessert .bd__img {
    filter:
      drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 18px rgba(236, 72, 153, 0.2)) !important;
  }


  /* ============================================================
     BANDEROLES — contraste + glow néon
     ============================================================ */

  .banderoles__band--1 {
    box-shadow:
      0 8px 50px rgba(56, 189, 248, 0.5),
      0 0 100px rgba(168, 85, 247, 0.4) !important;
  }

  .banderoles__band--2 {
    box-shadow:
      0 8px 50px rgba(236, 72, 153, 0.5),
      0 0 100px rgba(5, 219, 112, 0.3) !important;
  }

  .banderoles__text {
    text-shadow:
      0 0 4px rgba(0, 0, 0, 0.8),
      0 4px 20px rgba(0, 0, 0, 0.6) !important;
  }


  /* ============================================================
     SECTION COMMANDER — centered neon showcase
     ============================================================ */

  .section-commander {
    padding: 80px 16px 80px !important;
  }

  /* Glow renforcé */
  .section-commander::before {
    background:
      radial-gradient(ellipse 80% 60% at 50% 15%, rgba(34, 197, 94, 0.35) 0%, transparent 55%),
      radial-gradient(ellipse 70% 50% at 50% 55%, rgba(239, 68, 68, 0.3) 0%, transparent 55%),
      radial-gradient(ellipse 70% 50% at 50% 90%, rgba(168, 85, 247, 0.35) 0%, transparent 55%) !important;
    filter: blur(70px) !important;
  }

  /* Titres sections WhatsApp / Livraison : halo néon */
  .section-commander__title-whatsapp,
  .section-commander__title-livraison {
    filter: drop-shadow(0 0 24px rgba(34, 197, 94, 0.5)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  }

  /* QR WhatsApp : card néon autour */
  .section-commander__qr {
    padding: 14px !important;
    background: #ffffff;
    border-radius: 20px !important;
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.1),
      0 12px 40px rgba(34, 197, 94, 0.5),
      0 0 60px rgba(34, 197, 94, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s ease !important;
    animation: qr-pulse 3s ease-in-out infinite;
  }

  @keyframes qr-pulse {
    0%, 100% {
      box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.1),
        0 12px 40px rgba(34, 197, 94, 0.5),
        0 0 60px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
      box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.2),
        0 16px 50px rgba(34, 197, 94, 0.7),
        0 0 100px rgba(34, 197, 94, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
  }

  .section-commander__qr:active {
    transform: scale(0.97);
    animation: none;
  }

  /* Logos Uber / Deliveroo : cards néon distinctes */
  .section-commander__logo {
    padding: 20px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease !important;
  }

  /* Uber : glow noir/blanc */
  .section-commander__logo--uber {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(255, 255, 255, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

  .section-commander__logo--uber:active {
    transform: scale(0.95) translateY(-2px);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.7),
      0 0 60px rgba(255, 255, 255, 0.25);
  }

  /* Deliveroo : glow turquoise/violet */
  .section-commander__logo--deliveroo {
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(34, 211, 238, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  }

  .section-commander__logo--deliveroo:active {
    transform: scale(0.95) translateY(-2px);
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.7),
      0 0 60px rgba(34, 211, 238, 0.5);
  }

  .section-commander__cliquez {
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.5)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
  }


  /* ============================================================
     SECTION FOOTER — tu as dit qu'elle était parfaite
     On n'y touche pas, juste un léger boost
     ============================================================ */

  .section-footer__titre-reseaux {
    text-shadow:
      0 0 2px rgba(168, 85, 247, 0.8),
      -1px 0 16px rgba(168, 85, 247, 0.5),
      1px 0 16px rgba(56, 189, 248, 0.5),
      0 0 40px rgba(168, 85, 247, 0.3) !important;
  }

  .section-footer__info-title,
  .section-footer__hours-title {
    text-shadow:
      0 0 20px rgba(253, 224, 71, 0.4),
      0 2px 8px rgba(0, 0, 0, 0.6) !important;
  }

  .section-footer__info-block {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow:
      0 12px 32px rgba(0, 0, 0, 0.5),
      0 0 40px rgba(59, 130, 246, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  }

  .mobile-item--footer-qr .section-footer__qr {
    padding: 8px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.5),
      0 0 24px rgba(59, 130, 246, 0.25);
    transition: transform 0.3s ease;
  }

  .mobile-item--footer-qr:active .section-footer__qr {
    transform: scale(0.94);
  }


  /* ============================================================
     ANIMATIONS SCROLL — fade in au défilement
     (pure CSS via IntersectionObserver émulé avec animation-timeline)
     ============================================================ */

  @supports (animation-timeline: view()) {
    .mobile-group {
      animation: scroll-reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 40%;
    }

    @keyframes scroll-reveal {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }

  /* Fallback : juste un léger fade-in au load pour toutes les sections */
  @supports not (animation-timeline: view()) {
    .section-crousty,
    .section-tacos,
    .section-burgers,
    .section-bd,
    .section-commander,
    .section-footer {
      animation: section-fade-in 0.8s ease-out both;
    }

    @keyframes section-fade-in {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
  }


  /* ============================================================
     TITRES DE SECTION : effet scan néon au survol/tap
     Applique le glow scanner sur les gros titres Pricedown
     ============================================================ */

  .section-footer__titre-reseaux,
  .section-footer__info-title,
  .section-footer__hours-title {
    position: relative;
    transition: text-shadow 0.4s ease;
  }


  /* ============================================================
     MOBILE NAV OVERLAY — version néon
     ============================================================ */

  .mobile-nav-overlay {
    background:
      radial-gradient(circle at 20% 10%, rgba(168, 85, 247, 0.25) 0%, transparent 40%),
      radial-gradient(circle at 80% 90%, rgba(56, 189, 248, 0.2) 0%, transparent 40%),
      rgba(7, 5, 12, 0.98) !important;
    backdrop-filter: blur(32px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(32px) saturate(180%) !important;
  }

  .mobile-nav-overlay__link {
    position: relative;
    padding: 14px 32px !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    text-shadow:
      0 0 12px rgba(168, 85, 247, 0.5),
      0 2px 8px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease !important;
  }

  .mobile-nav-overlay__link:active {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(56, 189, 248, 0.2) 100%);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow:
      0 0 40px rgba(168, 85, 247, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* Hamburger : lignes avec glow */
  .mobile-nav-toggle__bars,
  .mobile-nav-toggle__bars::before,
  .mobile-nav-toggle__bars::after {
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
  }

  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bars::before,
  .mobile-nav-toggle[aria-expanded="true"] .mobile-nav-toggle__bars::after {
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
  }

}


/* ============================================================
   ACCESSIBILITÉ — respecter prefers-reduced-motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) and (max-width: 1023px) {
  .hero-mobile-content__logo,
  .hero-mobile-content__cta::before,
  .section-crousty__dish,
  .section-crousty__light-fond,
  .mobile-item--tacos-uno .section-tacos__tacos-img,
  .mobile-item--tacos-dos .section-tacos__tacos-img,
  .mobile-item--tacos-tres .section-tacos__tacos-img,
  .mobile-item--burger .section-burgers__img,
  .mobile-item--boisson .bd__img,
  .section-commander__qr,
  .navbar::after {
    animation: none !important;
  }
}