/* ==========================================================================
   LE BON MANGEUR - DESIGN SYSTEM & MAIN STYLESHEET
   Style: Dark Gourmet & Crispy Golden Street Food
   ========================================================================== */

:root {
  /* Color Palette - Charte Officielle Le Bon Mangeur */
  --bg-primary: #0a0b0e;
  --bg-secondary: #12141a;
  --bg-card: rgba(20, 23, 31, 0.92);
  --bg-card-hover: rgba(26, 30, 42, 0.98);
  --bg-glass: rgba(18, 20, 28, 0.85);
  --border-glass: rgba(245, 183, 0, 0.28);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Brand Accents - Le Bon Mangeur Signature Colors */
  --primary: #f5b700; /* Jaune d'Or Chaud Officiel */
  --primary-hover: #e0a300;
  --primary-light: #fff4cc;
  --primary-glow: rgba(245, 183, 0, 0.45);

  --accent-red: #e11d48; /* Rouge Gourmand */
  --accent-orange: #f97316;
  --accent-green: #10b981; /* Halal Certifié */

  /* Text Colors */
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --text-dark: #000000;

  /* Typography */
  --font-heading: 'Outfit', 'Cabinet Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;


  /* Shadows & Elevation */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px var(--primary-glow);
  --shadow-flame: 0 0 30px rgba(255, 87, 34, 0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Dimensions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  background: radial-gradient(circle at 50% 0%, #1a1610 0%, #0a0c10 70%);
}

/* Background Atmospheric Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 20%, var(--primary) 60%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  background: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-halal {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.badge-new {
  background: linear-gradient(135deg, #ef4444, #ff5722);
  color: #fff;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
  animation: pulseNew 2s infinite;
}

.badge-gold {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary);
  border: 1px solid var(--border-glass);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
  color: #000;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
  color: #000;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition-smooth);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(10, 12, 16, 0.9);
  padding: 10px 0;
  border-bottom-color: var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--primary-glow));
  transition: transform var(--transition-fast);
}

.logo-wrap:hover .logo-img {
  transform: scale(1.08) rotate(5deg);
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}


.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.audio-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.audio-toggle:hover, .audio-toggle.active {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.15);
}

.cart-btn {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition-fast);
}

.cart-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cart-badge {
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 10px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION - PURE CINEMATIC 50-FRAME VIDEO (1ER PLAN SANS EFFET)
   ========================================================================== */
.hero-fullscreen-experience {
  position: relative;
  min-height: 220vh; /* Smooth scroll scrub depth */
  background: #000000;
  overflow: visible;
  padding: 0;
}

/* Sticky Fullscreen Canvas - Clean and Pure without overlay */
.hero-bg-sticky-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}

.hero-bg-canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-scroll-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none; /* Pure clean video without filters */
  transform-origin: center center;
}

/* No dark overlay over the video */
.hero-bg-overlay {
  display: none;
}

/* Designed Logo Badge Floating at the Bottom of Hero Video */
.hero-designed-badge-wrap {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  pointer-events: none;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

.hero-badge-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.45) 0%, rgba(245, 183, 0, 0) 70%);
  filter: blur(15px);
  animation: pulseGlow 3s infinite alternate;
}

.hero-badge-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 15px rgba(245, 183, 0, 0.4));
  position: relative;
  z-index: 2;
}

.hero-badge-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 183, 0, 0.6);
  animation: rotateSlow 20s linear infinite;
  z-index: 1;
}

@keyframes floatBadge {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(-10px);
  }
}


/* Text Section Coming Right After the Video */
.hero-intro-section {
  position: relative;
  z-index: 10;
  background: radial-gradient(circle at 50% 0%, #151822 0%, #0a0b0e 70%);
  padding: 100px 0 80px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-intro-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.9);
}

.hero-intro-card .hero-taglines {
  justify-content: center;
  margin-bottom: 24px;
}

.hero-intro-card .hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-intro-card .hero-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin: 0 auto 36px auto;
  max-width: 720px;
  line-height: 1.7;
}

.hero-intro-card .hero-cta-group {
  justify-content: center;
  margin-bottom: 40px;
}

.hero-intro-card .hero-stats {
  justify-content: center;
  gap: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}


.hero-taglines {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Floating Interactive Controller in Hero */
.hero-floating-controller {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  background: rgba(14, 17, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  transition: all 0.35s ease;
  max-width: 90vw;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-content-glass {
    padding: 28px 24px;
  }
  .hero-stats {
    gap: 20px;
  }
}

.fc-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
}

.fc-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INTERACTIVE ANATOMY / EXPLODED LAYER SHOWCASE
   ========================================================================== */
.anatomy-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(22, 27, 38, 0.6) 50%, transparent 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-badge {
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Anatomy Switcher Tabs */
.anatomy-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--border-glass);
  color: #fff;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(255, 87, 34, 0.2) 100%);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.25);
}

/* 3D Exploded Stage */
.exploded-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.exploded-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.exploded-stage {
  perspective: 1200px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: grab;
}

.exploded-stage:active {
  cursor: grabbing;
}

.exploded-model {
  width: 320px;
  height: 420px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(15deg) rotateY(-18deg);
  transition: transform 0.2s ease-out;
}

.layer-item {
  position: absolute;
  left: 0;
  width: 100%;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(30, 37, 54, 0.92);
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.layer-item:hover, .layer-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
  background: rgba(45, 55, 80, 0.98);
  transform: translateZ(30px) scale(1.05) !important;
}

.layer-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.layer-text {
  flex: 1;
}

.layer-name {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  font-family: var(--font-heading);
}

.layer-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.layer-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

/* Layer Details Inspector */
.exploded-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
}

.product-hero-title {
  font-size: 2.4rem;
  font-weight: 900;
}

.product-hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.anatomy-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.slider-wrap label {
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.explosion-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #334155;
  outline: none;
}

.explosion-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
}

.layer-spec-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.spec-title {
  font-weight: 800;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.spec-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.action-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   MENU SECTION & FILTERABLE GRID
   ========================================================================== */
.menu-section {
  padding: 100px 0;
  position: relative;
}

.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: #fff;
  border-color: var(--border-glass);
}

.filter-btn.active {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.food-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.food-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(245, 158, 11, 0.15);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, rgba(245, 183, 0, 0.14) 0%, rgba(18, 20, 28, 0.95) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.card-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.65));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.food-card:hover .card-img {
  transform: scale(1.1) translateY(-4px);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.card-price-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}


.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #fff;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.card-options {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.btn-add-cart {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--border-glass);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.btn-add-cart:hover {
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 15px var(--primary-glow);
}

/* ==========================================================================
   SAUCES SIGNATURES SECTION
   ========================================================================== */
.sauces-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.08) 0%, transparent 70%);
}

.sauces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.sauce-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.sauce-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.sauce-orb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.sauce-card.teranga .sauce-orb {
  background: radial-gradient(circle, #f97316 0%, #c2410c 100%);
}

.sauce-card.indienne .sauce-orb {
  background: radial-gradient(circle, #eab308 0%, #854d0e 100%);
}

.sauce-card.maison .sauce-orb {
  background: radial-gradient(circle, #fbbf24 0%, #b45309 100%);
}

.sauce-card.dark .sauce-orb {
  background: radial-gradient(circle, #475569 0%, #0f172a 100%);
  border: 1px solid #64748b;
}

.sauce-card.chef .sauce-orb {
  background: radial-gradient(circle, #ef4444 0%, #991b1b 100%);
}

.sauce-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #fff;
}

.sauce-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   REVIEWS & STORY SECTION
   ========================================================================== */
.story-reviews {
  padding: 90px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition-fast);
}

.review-card:hover {
  border-color: var(--border-glass);
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
}

.reviewer-source {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LOCATION, LIVE HOURS & ORDER CTA
   ========================================================================== */
.location-section {
  padding: 90px 0;
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  width: fit-content;
}

.status-indicator.open {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-indicator.closed {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: pulseDot 2s infinite;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text-main);
  text-decoration: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.contact-val {
  font-size: 1.05rem;
  font-weight: 700;
}

.platforms-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.platform-btn {
  padding: 12px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.platform-btn.deliveroo {
  background: #00cdbc;
  color: #000;
}

.platform-btn.ubereats {
  background: #06c167;
  color: #000;
}

.platform-btn.phone {
  background: var(--primary);
  color: #000;
}

.platform-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.map-card {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #07080b;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 14px;
  max-width: 320px;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   DRAWER CART & MODALS
   ========================================================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-title {
  font-size: 1.25rem;
  font-weight: 800;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  color: #fff;
}

.cart-item-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-item-price {
  font-weight: 800;
  color: var(--primary);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--accent-red);
  cursor: pointer;
  font-size: 1rem;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.2rem;
  font-weight: 800;
}

/* Modal Customizer */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  padding: 32px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.option-group {
  margin-bottom: 20px;
}

.option-label {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: block;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.custom-radio:hover, .custom-radio.active {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
}

/* ==========================================================================
   BURGER SCROLL ANIMATION (FULL BACKGROUND IMMERSIVE 40-FRAME EXPERIENCE)
   ========================================================================== */
.burger-scroll-section {
  position: relative;
  min-height: 420vh; /* Gives ample room for smooth scroll scrub */
  background: #0a0b0e;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: visible;
}

/* Sticky Fullscreen Canvas Background */
.burger-bg-sticky-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.burger-bg-canvas-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#burger-scroll-canvas {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 40px rgba(245, 183, 0, 0.15));
  transition: transform 0.1s ease-out;
  transform-origin: center center;
}

/* Atmospheric Vignette Overlay over Background Canvas */
.burger-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 11, 14, 0.15) 0%, rgba(10, 11, 14, 0.65) 55%, rgba(10, 11, 14, 0.96) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Floating Glass Controller Bar */
.burger-floating-controller {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 90;
  background: rgba(18, 20, 28, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
}

.burger-floating-controller.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.control-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.play-pause-btn {
  background: var(--primary);
  border: none;
  color: #000;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0 15px var(--primary-glow);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.play-pause-btn:hover {
  transform: scale(1.1);
  background: #fff;
}

.scrub-slider {
  width: 180px;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #334155;
  outline: none;
}

.scrub-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
}

.canvas-status {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--primary);
  white-space: nowrap;
}

/* Foreground Scrolling Storyline Content */
.burger-scroll-content {
  position: relative;
  z-index: 3;
  margin-top: -100vh; /* Overlay directly above the sticky canvas */
  padding-top: 15vh;
  padding-bottom: 25vh;
}

.burger-story-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50vh; /* Spaced out so user scrolls through each frame sequence */
  padding-top: 25vh;
}

.step-card {
  max-width: 620px;
  width: 100%;
  background: rgba(18, 20, 28, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  opacity: 0.3;
  transform: translateY(30px) scale(0.95);
}

.step-card.active {
  opacity: 1;
  transform: translateY(0) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 45px rgba(245, 183, 0, 0.35);
  background: rgba(24, 28, 40, 0.96);
}

.step-card:nth-child(odd) {
  margin-right: auto;
  margin-left: 5%;
}

.step-card:nth-child(even) {
  margin-left: auto;
  margin-right: 5%;
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 183, 0, 0.15);
  color: var(--primary);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #fff;
}

.step-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.step-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}

.step-btn-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
  .burger-scroll-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .burger-sticky-stage {
    position: relative;
    top: 0;
    height: 480px;
    margin-bottom: 30px;
  }

  .burger-story-steps {
    gap: 40px;
    padding: 0;
  }

  .step-card {
    opacity: 1;
    transform: none;
  }
}

