/* ==========================================================================
   THICC BURGERS - DESIGN SYSTEM & STYLES (NEO-BRUTALIST / FUNKY / PREMIUM)
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. RESET & THEME DEFINITION
   -------------------------------------------------------------------------- */
:root {
  /* Brand Primary Colors */
  --thicc-blue: #0077C8;
  --thicc-yellow: #FEDB00;
  --thicc-black: #25282A;
  --thicc-white: #FFFFFF;
  --thicc-red: #FF2D2D;

  /* Brand Secondary / Pale Pastel Colors */
  --bg-mint: #E8F5EE;
  --bg-pink: #FDE9ED;
  --bg-blue: #EAF5FB;
  --bg-gray: #F5F2F0;
  --bg-yellow: #FEFDE9;

  /* Fonts */
  --font-logo: 'Dela Gothic One', cursive, sans-serif;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  /* Neo-Brutalist Shadow Settings */
  --border-width: 4px;
  --shadow-offset: 8px;
  --shadow-offset-hover: 12px;
  --border-radius: 16px;
  --transition-speed: 0.3s;
  --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--thicc-black);
  color: var(--thicc-white);
  overflow-x: clip; /* Modern standard that prevents horizontal scroll without breaking position: sticky! */
}

body {
  overflow-x: clip; /* Keeps sticky working elastically! */
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Selection Style */
::selection {
  background-color: var(--thicc-yellow);
  color: var(--thicc-black);
}

/* --------------------------------------------------------------------------
   1. TYPOGRAPHY & COMMON LAYOUTS
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  line-height: 1;
}

p {
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Section Common Styles */
section {
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: var(--border-width) solid var(--thicc-black);
}

.section-badge {
  display: inline-block;
  background-color: var(--thicc-black);
  color: var(--thicc-white);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  border: 2px solid var(--thicc-white);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 4.5rem;
  color: var(--thicc-white);
  margin-bottom: 16px;
  text-transform: uppercase;
  text-shadow: 3px 3px 0px var(--thicc-black);
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}

.highlight-yellow {
  color: var(--thicc-yellow);
}

.highlight-blue {
  color: var(--thicc-blue);
}

.highlight-red {
  color: var(--thicc-red);
}

/* --------------------------------------------------------------------------
   2. CUSTOM MOUSE CURSOR (PLANETOÑO STYLE)
   -------------------------------------------------------------------------- */
.custom-cursor {
  width: 32px;
  height: 32px;
  border: 3px solid var(--thicc-black);
  background-color: var(--thicc-yellow);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  display: none; /* Enabled via JS on non-touch screens */
  box-shadow: 2px 2px 0px var(--thicc-black);
  will-change: transform;
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--thicc-black);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  display: none;
  will-change: transform;
}

/* Hovering active cursor state */
body.cursor-hover .custom-cursor {
  width: 48px;
  height: 48px;
  background-color: var(--thicc-red);
  transform: translate(-50%, -50%) rotate(15deg);
  border-radius: 8px; /* Neo-brutalist square cursor on hover */
}

/* --------------------------------------------------------------------------
   3. ANNOUNCEMENT TICKER (INFINITE HORIZONTAL MARQUEE)
   -------------------------------------------------------------------------- */
.announcement-ticker {
  background-color: var(--thicc-yellow);
  color: var(--thicc-black);
  border-bottom: var(--border-width) solid var(--thicc-black);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  z-index: 100;
}

.ticker-content {
  display: inline-block;
  animation: marquee 25s linear infinite;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: bold;
}

.ticker-content span {
  margin-right: 50px;
  display: inline-block;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --------------------------------------------------------------------------
   4. STICKY NAVBAR & BRAND LOGO
   -------------------------------------------------------------------------- */
.navbar {
  background-color: var(--thicc-black);
  border-bottom: var(--border-width) solid var(--thicc-black);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 2px 24px; /* Super thin padding */
  transition: padding var(--transition-speed), background-color var(--transition-speed);
}

.navbar.sticky-active {
  padding: 1px 24px; /* Even thinner when scrolling */
  border-bottom: var(--border-width) solid var(--thicc-black);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   BRAND LOGO STYLES (MATCHING USER CONCEPT IMAGES)
   -------------------------------------------------------------------------- */
.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.8;
  padding: 6px 12px;
  background-color: transparent;
  transition: transform var(--transition-speed) var(--ease-elastic);
  user-select: none;
}

.brand-logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.logo-main {
  font-family: var(--font-logo);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  text-transform: lowercase;
}

.logo-sub-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 1px;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.logo-estd-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  margin-top: -1px;
  opacity: 0.9;
}

/* Colorway Styles for Logos (Yellow vs Blue vs Black Styles matching attachments) */
.brand-logo.logo-yellow-style .logo-main {
  color: var(--thicc-yellow);
  text-shadow: 3px 3px 0px var(--thicc-black);
  -webkit-text-stroke: 1.5px var(--thicc-black);
}
.brand-logo.logo-yellow-style .logo-sub {
  color: var(--thicc-white);
  text-shadow: 2px 2px 0px var(--thicc-black);
  -webkit-text-stroke: 1px var(--thicc-black);
}
.brand-logo.logo-yellow-style .logo-estd-row {
  color: var(--thicc-white);
  text-shadow: 1px 1px 0px var(--thicc-black);
}

.brand-logo.blue-style .logo-main {
  color: var(--thicc-blue);
  text-shadow: 3px 3px 0px var(--thicc-black);
  -webkit-text-stroke: 1.5px var(--thicc-black);
}
.brand-logo.blue-style .logo-sub {
  color: var(--thicc-yellow);
  text-shadow: 2px 2px 0px var(--thicc-black);
  -webkit-text-stroke: 1px var(--thicc-black);
}

/* --------------------------------------------------------------------------
   LOGO IMAGE STYLES (Replacing Text-Based Logo)
   -------------------------------------------------------------------------- */
/* Yellow style logo adjustments */
.navbar-logo-img {
  height: 140px; /* Highly enlarged to make the visual text extremely visible and prominent */
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin-top: -46px; /* Shift up to align perfectly inside the slim navbar */
  margin-bottom: -46px;
  transform-origin: left center;
  transition: transform 0.25s var(--ease-elastic), filter 0.25s;
}

.navbar-logo-img:hover {
  transform: scale(1.15) rotate(-3deg);
  filter: drop-shadow(0 0 12px rgba(254, 219, 0, 0.8));
}

.market-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(4px 4px 0px var(--thicc-black));
  transition: transform 0.3s var(--ease-elastic);
}

.market-logo-img:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* Desktop Links */
.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-item {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--thicc-white);
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-speed);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--thicc-yellow);
  border: 1px solid var(--thicc-black);
  transition: width var(--transition-speed) var(--ease-elastic);
}

.nav-item:hover {
  color: var(--thicc-yellow);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.nav-item.active {
  color: var(--thicc-yellow);
}

/* Neo-Brutalist CTA Button */
.btn-cta {
  display: inline-block;
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.btn-cta span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--thicc-black);
  background-color: var(--thicc-red);
  border: var(--border-width) solid var(--thicc-black);
  padding: 10px 24px;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 2;
  transform: translate(0, 0);
  transition: transform 0.15s var(--ease-elastic), background-color 0.15s;
  text-align: center;
}

.btn-cta .btn-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thicc-black);
  border-radius: var(--border-radius);
  z-index: 1;
  transform: translate(var(--shadow-offset), var(--shadow-offset));
  transition: transform 0.15s var(--ease-elastic);
}

.btn-cta:hover span {
  transform: translate(calc(var(--shadow-offset) - 3px), calc(var(--shadow-offset) - 3px));
  background-color: var(--thicc-yellow);
}

.btn-cta:hover .btn-shadow {
  transform: translate(3px, 3px);
}

.btn-cta:active span {
  transform: translate(var(--shadow-offset), var(--shadow-offset));
}

.btn-cta:active .btn-shadow {
  transform: translate(0, 0);
}

/* Specific Style Variations for Buttons */
.btn-nav-order span {
  background-color: var(--thicc-red);
  color: var(--thicc-white);
  padding: 8px 18px;
  font-size: 1.1rem;
  border-radius: 8px;
}
.btn-nav-order .btn-shadow {
  border-radius: 8px;
  transform: translate(4px, 4px);
}
.btn-nav-order:hover span {
  transform: translate(2px, 2px);
  color: var(--thicc-black);
}
.btn-nav-order:hover .btn-shadow {
  transform: translate(2px, 2px);
}

.menu-toggle {
  display: none;
  background: var(--thicc-yellow);
  border: 3px solid var(--thicc-black);
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1000;
  box-shadow: 3px 3px 0px var(--thicc-black);
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--thicc-black);
  transition: all var(--transition-speed);
}

/* --------------------------------------------------------------------------
   5. MOBILE MENU OVERLAY
   -------------------------------------------------------------------------- */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--thicc-blue);
  z-index: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-right: 8px solid var(--thicc-black);
}

.mobile-overlay.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--thicc-yellow);
  text-shadow: 4px 4px 0px var(--thicc-black);
  -webkit-text-stroke: 2px var(--thicc-black);
  transition: transform 0.2s;
}

.mobile-link:hover {
  transform: scale(1.1) rotate(-2deg);
  color: var(--thicc-white);
}

.mobile-btn {
  font-family: var(--font-heading);
  font-size: 2rem;
  background-color: var(--thicc-red);
  color: var(--thicc-white);
  border: 4px solid var(--thicc-black);
  padding: 12px 36px;
  border-radius: 12px;
  box-shadow: 6px 6px 0px var(--thicc-black);
  margin-top: 20px;
  text-shadow: 2px 2px 0px var(--thicc-black);
  transition: transform 0.1s;
}

.mobile-btn:active {
  transform: translate(6px, 6px);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: calc(100vh - 120px);
  background-color: var(--thicc-black);
  display: flex;
  align-items: center;
  padding: 80px 24px;
  position: relative;
}

/* Floating background emojis and stars */
.floating-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floater {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
  animation: floatUp var(--drift-duration) linear infinite;
  bottom: -60px;
  will-change: transform;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-110vh) rotate(var(--drift-rotation));
    opacity: 0;
  }
}

/* Center Immersive Hero Layout */
.hero-bg-typography {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  overflow: hidden;
  user-select: none;
}

.bg-word {
  font-family: var(--font-heading);
  font-size: 13vw;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 4px var(--thicc-white);
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -2px;
  will-change: transform;
}

/* Floating Retro Brutalist Stickers */
.floating-sticker {
  position: absolute;
  z-index: 8;
  padding: 12px 24px;
  border: var(--border-width) solid var(--thicc-black);
  border-radius: 12px;
  box-shadow: 6px 6px 0px var(--thicc-black);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--thicc-black);
  pointer-events: auto;
  user-select: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-elastic), box-shadow 0.2s;
  animation: gentleStickerFloat 4s ease-in-out infinite alternate;
}

.floating-sticker:hover {
  transform: scale(1.1) rotate(0deg) !important;
  box-shadow: 8px 8px 0px var(--thicc-black);
}

.badge-handcrafted { animation-delay: 0s; --rot: -12deg; }
.badge-not-average { animation-delay: 0.7s; --rot: 15deg; }
.badge-amdavadi { animation-delay: 1.4s; --rot: 8deg; }
.badge-thicc { animation-delay: 2.1s; --rot: -10deg; }

@keyframes gentleStickerFloat {
  0% { transform: translateY(0px) rotate(var(--rot, -5deg)); }
  100% { transform: translateY(-15px) rotate(calc(var(--rot, -5deg) + 5deg)); }
}

.hero-immersive-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
}

.hero-centerpiece {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 6;
  margin-bottom: 24px;
}

.hero-centered-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-immersive-subheading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--thicc-yellow);
  text-shadow: 4px 4px 0px var(--thicc-black);
  -webkit-text-stroke: 1.5px var(--thicc-black);
  margin-top: 16px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-immersive-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0 auto 32px auto;
  font-weight: 500;
  max-width: 650px;
}

.hero-ctas {
  display: flex;
  gap: 24px;
}

.btn-hero-primary span {
  background-color: var(--thicc-red);
  color: var(--thicc-white);
  padding: 16px 36px;
  font-size: 1.6rem;
  border-radius: 12px;
}

.btn-hero-secondary span {
  background-color: var(--thicc-yellow);
  color: var(--thicc-black);
  padding: 16px 36px;
  font-size: 1.6rem;
  border-radius: 12px;
}

.badge-tag {
  display: inline-block;
  background-color: var(--thicc-blue);
  color: var(--thicc-yellow);
  font-family: var(--font-mono);
  font-weight: 800;
  padding: 8px 18px;
  border: 3px solid var(--thicc-black);
  border-radius: 8px;
  box-shadow: 4px 4px 0px var(--thicc-black);
  margin-bottom: 16px;
  transform: rotate(-2deg);
  font-size: 0.9rem;
}

/* 3.5D Hero Burger Platter Visual (Planetoño Parallax & Wobble Look) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.burger-platter-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.burger-platter-wrapper:active {
  cursor: grabbing;
}

.platter-shadow {
  position: absolute;
  width: 320px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  bottom: 0px;
  z-index: 1;
  filter: blur(8px);
  animation: shadowPulse 4s ease-in-out infinite;
}

.platter-base {
  position: absolute;
  font-size: 15rem;
  bottom: -40px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.15;
  filter: grayscale(1);
}

/* Real Burger Image Centerpiece */
.interactive-burger-image-wrapper {
  width: 320px;
  height: 320px;
  position: relative;
  z-index: 5;
  animation: gentleFloat 4s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.hero-real-burger-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0px 8px 16px rgba(0,0,0,0.5));
  transition: transform 0.4s var(--ease-elastic), filter 0.4s ease;
  mix-blend-mode: screen; /* Makes the black background transparent! */
}

/* Hover effects for the real burger image */
.burger-platter-wrapper:hover .hero-real-burger-img {
  transform: scale(1.15) rotate(-3deg);
  filter: drop-shadow(0px 12px 24px rgba(254, 219, 0, 0.4)) drop-shadow(0px 4px 8px rgba(0,0,0,0.6));
}

/* Decorative Stars and Accents drifting */
.decor-star {
  position: absolute;
  color: var(--thicc-yellow);
  font-size: 3rem;
  font-weight: bold;
  z-index: 8;
  text-shadow: 2px 2px 0px var(--thicc-black);
  animation: starFloat 3s ease-in-out infinite alternate;
}

.star-1 { top: 20px; left: 10px; animation-delay: 0s; }
.star-2 { bottom: 60px; right: 20px; color: var(--thicc-blue); animation-delay: 0.5s; }
.star-3 { top: 120px; right: 0px; font-size: 2rem; color: var(--thicc-red); animation-delay: 1s; }

@keyframes gentleFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes shadowPulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(0.85); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.4; }
}

@keyframes starFloat {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  100% { transform: translateY(-10px) rotate(15deg) scale(1.1); }
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION (MINT BACKGROUND WITH STRIPED HERO CARDS)
   -------------------------------------------------------------------------- */
.about-section {
  background-color: var(--bg-mint);
  color: var(--thicc-black);
}

.about-section .section-title {
  color: var(--thicc-black);
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}

.about-section .section-subtitle {
  color: #4a4a4a;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text-card {
  background-color: var(--thicc-white);
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-black);
  transition: transform 0.2s;
}

.about-text-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0px var(--thicc-black);
}

.card-inner-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--thicc-black);
}

.about-text-card p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.highlight-quote {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--thicc-red);
  border-left: 6px solid var(--thicc-blue);
  padding-left: 20px;
  margin: 25px 0 !important;
  text-transform: uppercase;
}

/* Stats Cards (Bold, Youthful, Approachable Stack) */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 24px;
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-black);
  transition: transform 0.2s var(--ease-elastic);
}

.stat-box:hover {
  transform: translate(-4px, -4px) rotate(-1deg);
  box-shadow: var(--shadow-offset-hover) var(--shadow-offset-hover) 0px var(--thicc-black);
}

.stat-icon {
  font-size: 3rem;
  background-color: var(--thicc-white);
  border: 3px solid var(--thicc-black);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 2px 2px 0px var(--thicc-black);
}

.stat-title {
  font-size: 2.2rem;
  color: var(--thicc-black);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.95rem;
  color: #4a4a4a;
  font-weight: 500;
}

/* Color codes for stat blocks (Inspired by User's color scheme) */
.yellow-bg { background-color: var(--thicc-yellow); }
.blue-bg { background-color: var(--bg-blue); }
.pink-bg { background-color: var(--bg-pink); }

/* --------------------------------------------------------------------------
   8. INTERACTIVE "BUILD-A-BURGER" WIDGET (MAXIMUM JUICY & FUNKY PHYSICS)
   -------------------------------------------------------------------------- */
.interactive-section {
  background-color: var(--bg-pink);
  color: var(--thicc-black);
}

.interactive-section .section-title {
  color: var(--thicc-black);
}

.interactive-section .section-subtitle {
  color: #4a4a4a;
  text-align: center;
}

.interactive-container {
  max-width: 1200px;
  margin: 0 auto;
}

.interactive-header {
  text-align: center;
  margin-bottom: 60px;
}

.stacker-game-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.stacker-controls {
  background-color: var(--thicc-white);
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-black);
}

.control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 3px dashed var(--thicc-black);
  padding-bottom: 16px;
}

.control-header h3 {
  font-size: 2.2rem;
  color: var(--thicc-black);
}

.btn-reset {
  background-color: var(--thicc-black);
  color: var(--thicc-white);
  border: none;
  font-family: var(--font-mono);
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.1s;
}

.btn-reset:hover {
  background-color: var(--thicc-red);
  transform: scale(1.05);
}

.ingredient-buttons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.ingredient-btn {
  background-color: var(--bg-gray);
  border: 3px solid var(--thicc-black);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s var(--ease-elastic);
  position: relative;
}

.ingredient-btn:hover {
  transform: translateY(-2px);
  background-color: var(--thicc-yellow);
  box-shadow: 3px 3px 0px var(--thicc-black);
}

.ingredient-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.ing-emoji {
  font-size: 2rem;
}

.ing-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--thicc-black);
  flex-grow: 1;
}

.ing-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: bold;
  background-color: var(--thicc-black);
  color: var(--thicc-yellow);
  padding: 2px 6px;
  border-radius: 4px;
}

.stacker-stats {
  display: flex;
  justify-content: space-between;
  background: var(--bg-mint);
  border: 3px solid var(--thicc-black);
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: bold;
  color: #555;
  text-transform: uppercase;
}

.stat-value {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--thicc-black);
}

.stat-valueHighlight {
  font-size: 1.8rem;
  font-family: var(--font-heading);
  color: var(--thicc-red);
}

.btn-add-custom-cart span {
  background-color: var(--thicc-blue);
  color: var(--thicc-white);
  padding: 14px 28px;
  font-size: 1.4rem;
  width: 100%;
}

/* Stacker visual shelf display and bouncers */
.stacker-display {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 480px;
}

.stack-shelf {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shelf-wood {
  width: 85%;
  height: 25px;
  background-color: #8B4513;
  border: 4px solid var(--thicc-black);
  border-radius: 8px;
  box-shadow: 0 10px 0px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0,0,0,0.25);
  z-index: 10;
}

.stack-layers-container {
  display: flex;
  flex-direction: column-reverse; /* Stacks items on top of each other! */
  align-items: center;
  width: 100%;
  position: relative;
  bottom: -4px;
  z-index: 15;
}

.empty-stack-placeholder {
  text-align: center;
  padding: 40px;
  max-width: 250px;
  opacity: 0.6;
  margin-bottom: 80px;
}

.placeholder-emoji {
  font-size: 5rem;
  animation: slowWobble 3s ease-in-out infinite;
}

.empty-stack-placeholder p {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 10px;
}

/* Dynamic Stacker Element Styles */
.stacked-layer {
  font-size: 9rem;
  line-height: 0.38;
  height: 38px;
  margin: 0;
  padding: 0;
  display: block;
  user-select: none;
  animation: dropIn 0.4s var(--ease-elastic) forwards;
  filter: drop-shadow(4px 2px 0px var(--thicc-black));
  position: relative;
  cursor: pointer;
}

.stacked-layer:hover::after {
  content: '❌';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  font-size: 1.5rem;
  pointer-events: none;
  animation: slowWobble 0.5s ease-in-out infinite;
}

@keyframes dropIn {
  0% {
    transform: translateY(-400px) scaleY(2) scaleX(0.7);
    opacity: 0;
  }
  60% {
    transform: translateY(12px) scaleY(0.8) scaleX(1.1);
    opacity: 1;
  }
  80% {
    transform: translateY(-6px) scaleY(1.05) scaleX(0.95);
  }
  100% {
    transform: translateY(0) scaleY(1) scaleX(1);
    opacity: 1;
  }
}

@keyframes slowWobble {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

/* --------------------------------------------------------------------------
   9. MENU SECTION (BLACK BACKGROUND WITH NEON ACCENTS)
   -------------------------------------------------------------------------- */
.menu-section {
  background-color: var(--thicc-black);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-header {
  text-align: center;
  margin-bottom: 60px;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.tab-btn {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  background-color: transparent;
  color: var(--thicc-white);
  border: 3px solid var(--thicc-white);
  padding: 8px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-speed) var(--ease-elastic);
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--thicc-yellow);
  color: var(--thicc-black);
  border-color: var(--thicc-black);
  box-shadow: 4px 4px 0px var(--thicc-white);
  transform: translate(-2px, -2px);
}

.tab-btn:active {
  transform: translate(0);
  box-shadow: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* Neo-Brutalist Premium Menu Card */
.menu-card {
  background-color: #1a1a1a;
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-white);
  position: relative;
  transition: transform var(--transition-speed) var(--ease-elastic), box-shadow var(--transition-speed);
}

.menu-card:hover {
  transform: translate(-6px, -6px) rotate(1deg);
  box-shadow: 14px 14px 0px var(--thicc-yellow);
  border-color: var(--thicc-yellow);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.75rem;
  background-color: var(--thicc-red);
  color: var(--thicc-white);
  padding: 6px 12px;
  border-radius: 4px;
  border: 2px solid var(--thicc-black);
  z-index: 10;
  transform: rotate(3deg);
}

.highlight-yellow-badge { background-color: var(--thicc-yellow); color: var(--thicc-black); }
.highlight-blue-badge { background-color: var(--thicc-blue); }
.highlight-mint-badge { background-color: var(--bg-mint); color: var(--thicc-black); }
.highlight-red-badge { background-color: var(--thicc-red); }

.menu-card-img-wrapper {
  height: 300px;
  background-color: var(--thicc-black);
  border-bottom: var(--border-width) solid var(--thicc-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
  transform-origin: center bottom;
  transition: transform 0.5s var(--ease-elastic), filter 0.5s ease;
  filter: brightness(0.97) saturate(1.1);
  display: block;
}

.menu-card:hover .menu-card-img {
  transform: scale(1.06);
  filter: brightness(1.05) saturate(1.2);
}

.card-img-decor {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--thicc-yellow) 20%, transparent 60%);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 1;
}

.menu-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-item-name {
  font-size: 2.2rem;
  color: var(--thicc-white);
  text-transform: uppercase;
}

.menu-card:hover .menu-item-name {
  color: var(--thicc-yellow);
}

.menu-item-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  min-height: 50px;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--thicc-yellow);
}

.btn-add-cart span {
  background-color: var(--thicc-red);
  color: var(--thicc-white);
  padding: 8px 18px;
  font-size: 1.1rem;
  border-radius: 8px;
}
.btn-add-cart .btn-shadow {
  border-radius: 8px;
  transform: translate(4px, 4px);
}
.btn-add-cart:hover span {
  background-color: var(--thicc-yellow);
  color: var(--thicc-black);
}

/* --------------------------------------------------------------------------
   10. BRAND VALUES SECTION (GRID OF BOLD NEO-BRUTALIST COLORWAYS)
   -------------------------------------------------------------------------- */
.values-section {
  background-color: var(--bg-yellow);
  color: var(--thicc-black);
}

.values-section .section-title {
  color: var(--thicc-black);
}

.values-section .section-subtitle {
  color: #4a4a4a;
  text-align: center;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.value-card {
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  padding: 36px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-black);
  transition: transform 0.2s var(--ease-elastic), box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card:hover {
  transform: translate(-5px, -5px) rotate(1.5deg);
  box-shadow: var(--shadow-offset-hover) var(--shadow-offset-hover) 0px var(--thicc-black);
}

.value-icon {
  font-size: 3.5rem;
  background-color: var(--thicc-white);
  border: 3px solid var(--thicc-black);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0px var(--thicc-black);
}

.value-title {
  font-size: 2.2rem;
  color: var(--thicc-black);
}

.value-text {
  font-size: 0.95rem;
  color: #4a4a4a;
  font-weight: 500;
}

/* Value Color Options (Funky and contrasting style matching concept attachments) */
.yellow-style { background-color: var(--thicc-yellow); }
.blue-style { background-color: var(--bg-blue); }
.pink-style { background-color: var(--bg-pink); }
.mint-style { background-color: var(--bg-mint); }

/* --------------------------------------------------------------------------
   11. MARKET POSITION SECTION (IDENTITY COMPARISON PANEL)
   -------------------------------------------------------------------------- */
.market-section {
  background-color: var(--bg-blue);
  color: var(--thicc-black);
}

.market-section .section-title { color: var(--thicc-black); }
.market-section .section-subtitle { color: #4a4a4a; text-align: center; }

.market-container {
  max-width: 1200px;
  margin: 0 auto;
}

.market-header {
  text-align: center;
  margin-bottom: 65px;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.market-intro {
  background: var(--thicc-white);
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-black);
}

.logo-large {
  margin-bottom: 24px;
}

.logo-large .brand-logo {
  padding: 0;
  display: inline-flex;
}

.market-tagline {
  font-size: 2.5rem;
  color: var(--thicc-black);
  margin-bottom: 16px;
}

.market-intro p {
  color: #555;
  font-size: 1.05rem;
  font-weight: 500;
}

.market-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.market-item {
  display: flex;
  gap: 24px;
  background-color: var(--thicc-white);
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-black);
  transition: transform 0.2s;
}

.market-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0px var(--thicc-black);
}

.market-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--thicc-blue);
  line-height: 0.8;
}

.market-content h4 {
  font-size: 1.8rem;
  color: var(--thicc-black);
  margin-bottom: 6px;
}

.market-content p {
  color: #555;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   12. INSTAGRAM GALLERY SECTION (ZOOM HOVER EFFECT)
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--thicc-white);
  color: var(--thicc-black);
}

.gallery-section .section-title { color: var(--thicc-black); text-align: center; }
.gallery-section .section-subtitle { color: #555; text-align: center; margin-bottom: 50px; }

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  height: 250px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 5px 5px 0px var(--thicc-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-speed) var(--ease-elastic), box-shadow 0.15s;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thicc-black);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.gallery-emoji {
  font-size: 5.5rem;
  transition: transform 0.5s var(--ease-elastic);
  z-index: 2;
  filter: drop-shadow(3px 3px 0px rgba(0,0,0,0.15));
}

.gallery-tag {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--thicc-yellow);
  border: 2px solid var(--thicc-black);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 3;
  transition: bottom var(--transition-speed) var(--ease-elastic);
}

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gallery-item:hover {
  transform: scale(1.03) rotate(-1.5deg);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0px var(--thicc-black);
}

.gallery-item:hover::after {
  opacity: 0.15;
}

.gallery-item:hover .gallery-emoji {
  transform: scale(1.3) rotate(8deg);
}

.gallery-item:hover .gallery-tag {
  bottom: 20px;
}

/* Instagram styled background boxes */
.item-yellow { background-color: var(--thicc-yellow); }
.item-blue { background-color: var(--bg-blue); }
.item-pink { background-color: var(--bg-pink); }
.item-mint { background-color: var(--bg-mint); }
.item-yellow-dark { background-color: #FEDB00; }
.item-blue-dark { background-color: var(--thicc-blue); }

/* --------------------------------------------------------------------------
   13. ORDER / CONTACT SECTION (BLACK WITH SHADOW CONTROLS)
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--thicc-black);
  padding: 120px 24px;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
}

.contact-inner {
  background-color: var(--thicc-blue);
  border: var(--border-width) solid var(--thicc-black);
  border-radius: var(--border-radius);
  padding: 60px 40px;
  box-shadow: 12px 12px 0px var(--thicc-yellow);
  text-align: center;
  position: relative;
}

.contact-big-title {
  font-size: 6rem;
  color: var(--thicc-yellow);
  text-shadow: 4px 4px 0px var(--thicc-black);
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--thicc-black);
}

.contact-sub {
  font-size: 1.25rem;
  color: var(--thicc-white);
  margin-bottom: 40px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Delivery Buttons (Swiggy / Zomato custom brands with brutalist shadows) */
.delivery-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.btn-delivery {
  position: relative;
  display: inline-block;
}

.btn-delivery .btn-content {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--thicc-white);
  border: var(--border-width) solid var(--thicc-black);
  padding: 12px 32px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  transform: translate(0, 0);
  transition: transform 0.1s var(--ease-elastic);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-delivery .btn-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thicc-black);
  border-radius: 12px;
  z-index: 1;
  transform: translate(6px, 6px);
  transition: transform 0.1s var(--ease-elastic);
}

/* Swiggy Custom Orange vs Zomato Red */
.swiggy-btn .btn-content { background-color: #FC8019; }
.zomato-btn .btn-content { background-color: #E23744; }

.btn-delivery:hover .btn-content {
  transform: translate(2px, 2px);
}

.btn-delivery:hover .btn-shadow {
  transform: translate(4px, 4px);
}

.btn-delivery:active .btn-content {
  transform: translate(6px, 6px);
  box-shadow: none;
}

.btn-delivery:active .btn-shadow {
  transform: translate(0, 0);
}

.address-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  border-top: 3px dashed var(--thicc-black);
  padding-top: 30px;
}

.address-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--thicc-white);
}

.address-item i {
  font-size: 1.5rem;
  color: var(--thicc-yellow);
}

.address-item p {
  font-weight: 700;
  font-family: var(--font-mono);
}

/* Neo-Brutalist Circular Social Button Stacks */
.social-links-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon-btn {
  width: 50px;
  height: 50px;
  background-color: var(--thicc-white);
  color: var(--thicc-black);
  border: 3px solid var(--thicc-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.2s var(--ease-elastic), background-color 0.2s;
  box-shadow: 3px 3px 0px var(--thicc-black);
}

.social-icon-btn:hover {
  transform: translateY(-4px) rotate(-15deg);
  background-color: var(--thicc-yellow);
}

.social-icon-btn:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   14. FLOATING CART SUMMARY WIDGET (Juicy Notification indicator)
   -------------------------------------------------------------------------- */
.cart-floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.cart-widget-content {
  width: 65px;
  height: 65px;
  background-color: var(--thicc-yellow);
  border: 3px solid var(--thicc-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 4px 4px 0px var(--thicc-black);
  cursor: pointer;
  position: relative;
  transition: transform 0.2s var(--ease-elastic);
}

.cart-widget-content:hover {
  transform: scale(1.1) rotate(-8deg);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--thicc-red);
  color: var(--thicc-white);
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 0.85rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--thicc-black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 1px 0px var(--thicc-black);
}

/* Dropdown carrying bag */
.cart-widget-dropdown {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: var(--thicc-white);
  border: 4px solid var(--thicc-black);
  border-radius: 12px;
  box-shadow: 8px 8px 0px var(--thicc-black);
  padding: 20px;
  cursor: default;
  display: none; /* Controlled via JS */
  color: var(--thicc-black);
  z-index: 1000;
  animation: dropdownBounce 0.3s var(--ease-elastic) forwards;
}

@keyframes dropdownBounce {
  0% { transform: translateY(20px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.cart-widget-dropdown.active {
  display: block;
}

.cart-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed var(--thicc-black);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.cart-dropdown-header h4 {
  font-size: 1.4rem;
}

.btn-close-cart {
  background: none;
  border: none;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.cart-dropdown-items {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
}

.cart-item-title {
  color: var(--thicc-black);
}

.cart-item-meta {
  font-size: 0.75rem;
  color: #777;
}

.cart-item-delete {
  color: var(--thicc-red);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.empty-cart-msg {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  padding: 20px 0;
  font-weight: 500;
}

.cart-dropdown-footer {
  border-top: 2px dashed var(--thicc-black);
  padding-top: 12px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.btn-checkout {
  width: 100%;
  background-color: var(--thicc-red);
  color: var(--thicc-white);
  border: 3px solid var(--thicc-black);
  border-radius: 8px;
  padding: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 3px 3px 0px var(--thicc-black);
  transition: transform 0.1s;
}

.btn-checkout:hover {
  background-color: var(--thicc-yellow);
  color: var(--thicc-black);
}

.btn-checkout:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--thicc-black);
  padding: 80px 24px 40px;
  border-top: var(--border-width) solid var(--thicc-black);
  color: var(--thicc-white);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s var(--ease-elastic);
}

.footer-logo-img:hover {
  transform: scale(1.1) rotate(-2deg);
}

.footer-about-text {
  color: rgba(255,255,255,0.7);
  max-width: 350px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--thicc-yellow);
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color 0.15s;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--thicc-yellow);
}

.footer-bottom {
  border-top: 3px dashed rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* --------------------------------------------------------------------------
   16. CUSTOM NOTIFICATION ALERT (Added to bag toast pop)
   -------------------------------------------------------------------------- */
.custom-alert {
  position: fixed;
  top: -120px; /* Completely offscreen initially, resolving the peeking shadow bug! */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--thicc-yellow);
  color: var(--thicc-black);
  border: var(--border-width) solid var(--thicc-black);
  border-radius: 12px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 6px 6px 0px var(--thicc-black);
  z-index: 10000;
  font-weight: 800;
  font-size: 1.1rem;
  transition: top 0.4s var(--ease-elastic);
}

.custom-alert.active {
  top: 40px; /* Animate sliding down from top */
}

.alert-emoji {
  font-size: 1.8rem;
}

/* --------------------------------------------------------------------------
   17. SCROLL TRIGGER FADE-IN ENTRANCES (PLANETOÑO STYLE OBSERVER)
   -------------------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   17.5. BRUTALIST TICKER DIVIDER & PARALLAX INGREDIENT BRIDGE
   -------------------------------------------------------------------------- */
.ticker-divider-container {
  position: relative;
  width: 100%;
  height: 90px;
  background-color: var(--thicc-yellow);
  border-top: var(--border-width) solid var(--thicc-black);
  border-bottom: var(--border-width) solid var(--thicc-black);
  z-index: 15;
  overflow: visible; /* Let ingredients float outside bounds! */
  display: flex;
  align-items: center;
  /* Slight rotation tilt for extra brutalist attitude */
  transform: rotate(-1deg) scale(1.01);
  box-shadow: 0px 8px 0px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
  margin-bottom: 30px;
}

.brutalist-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: marqueeContinuous 22s linear infinite;
}

@keyframes marqueeContinuous {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-track span {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--thicc-black);
  text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  user-select: none;
}

/* Floating Parallax Burger Ingredients */
.floating-ingredient {
  position: absolute;
  font-size: 4rem;
  z-index: 20;
  pointer-events: none;
  filter: drop-shadow(4px 4px 0px var(--thicc-black));
  user-select: none;
  will-change: transform;
}

/* Position ingredients creatively along the border of the sections */
.ing-lettuce { left: 4%; top: -80px; }
.ing-cheese { right: 5%; top: 40px; }
.ing-tomato { left: 22%; top: 50px; }
.ing-onion { right: 28%; top: -90px; }
.ing-fries { left: 45%; top: -50px; }

/* --------------------------------------------------------------------------
   17.6. BURGER PACKING SCROLL SHOWCASE — CLEAN REWRITE
   -------------------------------------------------------------------------- */
.packing-section {
  position: relative;
  background-color: var(--thicc-black);
  overflow: visible !important; /* Required for GSAP ScrollTrigger pin to work */
  border-top: var(--border-width) solid var(--thicc-black);
  border-bottom: var(--border-width) solid var(--thicc-black);
  padding: 0 !important; /* padding handled by packing-container */
}

.packing-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.packing-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 24px;
  position: relative;
  z-index: 5;
}

.packing-header {
  text-align: center;
  margin-bottom: 70px;
}

.packing-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--thicc-white);
  text-shadow: 4px 4px 0 var(--thicc-red);
  text-transform: uppercase;
  margin: 12px 0;
}

.packing-subtitle {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--thicc-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Two-column layout ─── */
.packing-scene-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ─── The animation stage ─── */
.packing-scene {
  position: relative;
  width: 460px;
  height: 560px;
  margin: 0 auto;
  overflow: visible; /* allow layers to be outside initially */
  will-change: transform;
  transform-style: preserve-3d;
  clip-path: none;
}

/* ═══════════ BURGER LAYERS ═══════════ */
.bl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #111;
  will-change: transform;
  transition: none; /* GSAP controls all transitions */
}

/* Top Bun - starts high above, GSAP animates down */
.bl-bun-top {
  width: 280px;
  height: 58px;
  background: linear-gradient(180deg, #E8963A 0%, #C8721A 100%);
  border-radius: 80px 80px 14px 14px;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,0.12);
  z-index: 22;
  top: -220px; /* Initial scattered position */
  opacity: 0;
}

/* Sesame seeds */
.seed {
  position: absolute;
  width: 8px;
  height: 14px;
  background: rgba(255,255,255,0.88);
  border-radius: 4px;
}
.sd1 { top: 14px; left: 65px;  transform: rotate(22deg); }
.sd2 { top: 18px; left: 130px; transform: rotate(-16deg); }
.sd3 { top: 13px; left: 190px; transform: rotate(38deg); }

/* Lettuce - starts scattered */
.bl-lettuce {
  width: 305px;
  height: 24px;
  background: #4CAF50;
  border-radius: 15px;
  z-index: 20;
  top: -160px;
  opacity: 0;
}
.bl-lettuce::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 12px;
  right: 12px;
  height: 10px;
  background: #388E3C;
  border-radius: 50%;
}

/* Tomato - starts scattered */
.bl-tomato {
  width: 272px;
  height: 19px;
  background: #E53935;
  border-radius: 10px;
  box-shadow: inset 0 4px 0 rgba(255,255,255,0.1);
  z-index: 18;
  top: -110px;
  opacity: 0;
}

/* Cheese - starts scattered */
.bl-cheese {
  width: 292px;
  height: 16px;
  background: #FFC107;
  border-radius: 4px;
  z-index: 16;
  overflow: visible;
  top: -70px;
  opacity: 0;
}
.drip {
  position: absolute;
  width: 18px;
  height: 25px;
  background: #FFC107;
  border: 3px solid #111;
  border-top: none;
  border-radius: 0 0 9px 9px;
  top: 13px;
}
.dr1 { left: 48px; }
.dr2 { left: 192px; }

/* Patty - starts scattered */
.bl-patty {
  width: 278px;
  height: 48px;
  background: linear-gradient(180deg, #6B4226 0%, #3E2312 100%);
  border-radius: 15px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.25);
  z-index: 14;
  top: -20px;
  opacity: 0;
}
.mark {
  position: absolute;
  width: 5px;
  height: 37px;
  background: rgba(0,0,0,0.28);
  border-radius: 3px;
  top: 6px;
  transform: skewX(-15deg);
}
.mk1 { left: 82px; }
.mk2 { left: 162px; }

/* Bottom Bun - this is the base, visible at start */
.bl-bun-bottom {
  width: 262px;
  height: 40px;
  background: linear-gradient(180deg, #E8963A 0%, #C8721A 100%);
  border-radius: 12px 12px 30px 30px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.12);
  z-index: 12;
  top: 320px; /* Sits just above the box */
  opacity: 1;
}

/* ═══════════ THE BOX ═══════════ */
.pbox {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 352px;
  z-index: 10;
}

/* Lid perspective wrapper */
.pbox-lid-pivot {
  perspective: 900px;
  width: 100%;
}

/* Lid face — starts rotated open (rotateX -100deg), GSAP closes it to 0deg */
.pbox-lid-face {
  width: 352px;
  height: 115px;
  background: var(--thicc-yellow);
  border: 4px solid #111;
  border-bottom: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform-origin: bottom center;
  transform: rotateX(-100deg);
  backface-visibility: hidden;
}

.pbox-logo {
  width: 135px;
  height: auto;
  display: block;
}

.pbox-lid-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: #111;
  border: 2px solid #111;
  padding: 2px 12px;
  border-radius: 3px;
  letter-spacing: 1px;
}

/* Box Body */
.pbox-body {
  width: 352px;
  height: 205px;
  background: var(--thicc-yellow);
  border: 4px solid #111;
  box-shadow: 8px 8px 0 #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.pbox-body-brand {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #111;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pbox-body-city {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(0,0,0,0.42);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ═══════════ SEAL STAMP ═══════════ */
.pbox-seal {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg) scale(0);
  width: 118px;
  height: 118px;
  background: var(--thicc-red);
  border: 4px solid #111;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 30;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  box-shadow: 5px 5px 0 #111;
  opacity: 0;
  letter-spacing: 1px;
  pointer-events: none;
}

.seal-star {
  font-size: 1.4rem;
  color: var(--thicc-yellow);
  line-height: 1;
}

/* ═══════════ STEP CARDS ═══════════ */
.packing-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pstep {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  border: 2px solid #222;
  border-radius: 16px;
  background: rgba(255,255,255,0.018);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.25;
  transform: translateX(25px);
}

.pstep.active {
  opacity: 1;
  border-color: var(--thicc-yellow);
  background: rgba(245, 197, 0, 0.06);
  box-shadow: 6px 6px 0 #111;
  transform: translateX(0);
}

.pstep-num {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 800;
  color: var(--thicc-yellow);
  min-width: 28px;
  padding-top: 5px;
}

.pstep h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--thicc-white);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pstep p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ── Packing Responsive ── */
@media (max-width: 1024px) {
  .packing-scene-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .packing-scene { max-width: 100%; width: 100%; height: 500px; }
  .packing-steps { flex-direction: row; flex-wrap: wrap; gap: 14px; }
  .pstep { flex: 1 1 200px; transform: none; }
}

/* ==========================================================================
   17.7  BURGER BUILD + PBOX2 — NEW ANIMATION ELEMENTS
   ========================================================================== */

/* The scene: tall enough to show burger above + box below */
.packing-scene {
  position: relative;
  width: 420px;
  height: 560px;
  margin: 0 auto;
  overflow: visible;
}

/* ── BURGER BUILD AREA (above the box) ─────────────────── */
/* Container is absolutely positioned; all layers relative to it */
.burger-build {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 210px;
  top: 20px;   /* restored to top so burger builds in the air, fully visible */
  z-index: 5;  /* LOWER than pbox2 (15) so it slides behind box front when dropping */
}

/* All burger layers: absolute within .burger-build */
.bb-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%); /* GSAP manages Y — do not add translateY here */
  border: 3px solid #111;
  will-change: transform, opacity;
}

/* Bun Top */
.bb-bun-top {
  width: 270px; height: 54px;
  background: linear-gradient(180deg, #E8963A 0%, #C8721A 100%);
  border-radius: 80px 80px 14px 14px;
  box-shadow: inset 0 -8px 0 rgba(0,0,0,0.12);
  z-index: 18;
  top: 0;
}
.bb-seed {
  position: absolute;
  width: 7px; height: 12px;
  background: rgba(255,255,255,0.88);
  border-radius: 4px;
}
.bbs1 { top: 12px; left: 52px;  transform: rotate(22deg); }
.bbs2 { top: 16px; left: 120px; transform: rotate(-16deg); }
.bbs3 { top: 11px; left: 178px; transform: rotate(38deg); }

/* Lettuce */
.bb-lettuce {
  width: 292px; height: 22px;
  background: #4CAF50;
  border-radius: 12px;
  z-index: 16;
  top: 56px;
}

/* Tomato */
.bb-tomato {
  width: 260px; height: 18px;
  background: #E53935;
  border-radius: 8px;
  z-index: 14;
  top: 80px;
}

/* Cheese */
.bb-cheese {
  width: 280px; height: 14px;
  background: #FFC107;
  border-radius: 4px;
  z-index: 12;
  overflow: visible;
  top: 100px;
}
.bb-drip {
  position: absolute;
  width: 15px; height: 20px;
  background: #FFC107;
  border: 3px solid #111;
  border-top: none;
  border-radius: 0 0 8px 8px;
  top: 11px;
}
.bbd1 { left: 40px; }
.bbd2 { left: 185px; }

/* Patty */
.bb-patty {
  width: 266px; height: 46px;
  background: linear-gradient(180deg, #6B4226 0%, #3E2312 100%);
  border-radius: 14px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.25);
  z-index: 10;
  top: 116px;
}
.bb-mark {
  position: absolute;
  width: 5px; height: 34px;
  background: rgba(0,0,0,0.28);
  border-radius: 3px;
  top: 5px;
  transform: skewX(-15deg);
}
.bbm1 { left: 72px; }
.bbm2 { left: 148px; }

/* Bun Bottom */
.bb-bun-bottom {
  width: 250px; height: 38px;
  background: linear-gradient(180deg, #E8963A 0%, #C8721A 100%);
  border-radius: 10px 10px 28px 28px;
  box-shadow: inset 0 -6px 0 rgba(0,0,0,0.12);
  z-index: 8;
  top: 164px;
}

/* ── PBOX2 (The Box) ────────────────────────────────────── */
.pbox2 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 360px;
  z-index: 15; /* HIGHER than burger-build so box covers burger once it slides in */
}

/* Lid pivot wrapper — removed 3D perspective context */
.pbox2-lid-pivot {
  width: 360px;
}

/* The lid face: flat rectangular cover, starts hidden, slides down from above */
.pbox2-lid-face {
  width: 376px;  /* slightly wider than the 360px box body to create the lip overhang */
  height: 46px;  /* matching the flat lid height from screenshot 2 */
  background: var(--thicc-yellow);
  border: 4px solid #111;
  position: absolute;
  top: -42px;    /* sits perfectly on top of the 205px box body, overlapping the border */
  left: -8px;    /* centered horizontally: (360px - 376px) / 2 */
  opacity: 0;    /* starts completely hidden so it doesn't float during building */
  will-change: transform, opacity;
  z-index: 30;   /* must be above burger-build so lid covers burger once it lands */
}

/* Box body / tray */
.pbox2-body {
  width: 360px;
  height: 205px;
  background: var(--thicc-yellow);
  border: 4px solid #111;
  box-shadow: 8px 8px 0 #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 22px;
  position: relative;
  overflow: hidden;
}

/* ── Box body logo (invert makes yellow SVG black on yellow bg) ── */
.pbox2-body-logo {
  width: 200px;
  height: auto;
  display: block;
  margin: auto;
  filter: invert(1) brightness(0); /* turns yellow logo → black, visible on yellow */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Seal — positioned over the lid area (top of pbox2) */
.pbox2-seal {
  position: absolute;
  top: -30px;               /* sits over the lid/tray junction */
  left: 50%;
  transform: translate(-50%, 0) rotate(-12deg) scale(0);
  width: 112px; height: 112px;
  background: var(--thicc-red);
  border: 4px solid #111;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  z-index: 40;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  box-shadow: 5px 5px 0 #111;
  opacity: 0;
  letter-spacing: 1px;
  pointer-events: none;
  will-change: transform, opacity;
}
.pbox2-seal-star {
  font-size: 1.3rem;
  color: var(--thicc-yellow);
  line-height: 1;
}

.packing-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

.packing-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.packing-header {
  text-align: center;
  margin-bottom: 60px;
}

.packing-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--thicc-white);
  text-shadow: 4px 4px 0px var(--thicc-red);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.packing-subtitle {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--thicc-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 3D Stage styling */
.packing-stage-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
  position: relative;
}

.packing-3d-stage {
  position: relative;
  height: 550px;
  background: rgba(20, 20, 20, 0.85);
  border: var(--border-width) solid var(--thicc-black);
  box-shadow: 12px 12px 0px var(--thicc-black);
  border-radius: 32px;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  perspective-origin: 50% 30%;
}

/* Floor Shadow */
.stage-shadow {
  position: absolute;
  width: 320px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  bottom: 60px;
  filter: blur(10px);
  transform: translateZ(-100px);
  z-index: 1;
  transition: transform 0.1s ease-out;
}

/* Burger Stack Layers */
.burger-3d-stack {
  position: absolute;
  z-index: 10;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  height: 240px;
  bottom: 180px; /* position it above the box bottom */
}

.burger-layer {
  position: absolute;
  width: 220px;
  height: 40px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* Bun Top styling */
.burger-layer.bun-top {
  height: 65px;
  background: linear-gradient(135deg, #e5934c, #c06922);
  border: 4px solid var(--thicc-black);
  border-radius: 100px 100px 25px 25px;
  box-shadow: inset -10px -10px 0px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

/* Sesame seeds on bun */
.sesame-seed {
  position: absolute;
  width: 6px;
  height: 12px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(35deg);
}
.seed-1 { top: 15px; left: 60px; transform: rotate(15deg); }
.seed-2 { top: 20px; left: 110px; transform: rotate(-25deg); }
.seed-3 { top: 12px; left: 150px; transform: rotate(45deg); }
.seed-4 { top: 35px; left: 45px; transform: rotate(-45deg); }
.seed-5 { top: 38px; left: 95px; transform: rotate(10deg); }
.seed-6 { top: 32px; left: 165px; transform: rotate(-15deg); }

/* Lettuce styling */
.burger-layer.lettuce {
  height: 22px;
  background: #34d399;
  border: 4px solid var(--thicc-black);
  border-radius: 16px;
  z-index: 18;
}
.lettuce-leaf {
  position: absolute;
  width: 45px;
  height: 22px;
  background: #10b981;
  border: 4px solid var(--thicc-black);
  border-radius: 50%;
  bottom: -8px;
}
.leaf-1 { left: 15px; transform: rotate(15deg); }
.leaf-2 { left: 90px; transform: rotate(-10deg); }
.leaf-3 { left: 160px; transform: rotate(20deg); }

/* Tomato styling */
.burger-layer.tomato {
  height: 24px;
  z-index: 16;
  display: flex;
  justify-content: space-around;
  width: 200px;
}
.tomato-slice {
  width: 90px;
  height: 26px;
  background: linear-gradient(135deg, #f87171, #dc2626);
  border: 4px solid var(--thicc-black);
  border-radius: 12px;
  box-shadow: inset -4px -4px 0px rgba(0, 0, 0, 0.15);
}

/* Cheese styling */
.burger-layer.cheese {
  height: 16px;
  background: #fbbf24;
  border: 4px solid var(--thicc-black);
  border-radius: 4px;
  z-index: 14;
}
.melt {
  position: absolute;
  width: 25px;
  height: 35px;
  background: #fbbf24;
  border-left: 4px solid var(--thicc-black);
  border-right: 4px solid var(--thicc-black);
  border-bottom: 4px solid var(--thicc-black);
  border-radius: 0 0 12px 12px;
}
.melt-1 { left: 40px; top: 10px; transform: rotate(-5deg); }
.melt-2 { left: 140px; top: 10px; transform: rotate(8deg); }

/* Onion styling */
.burger-layer.onion {
  height: 20px;
  z-index: 12;
  display: flex;
  justify-content: space-around;
  width: 190px;
}
.onion-ring {
  width: 75px;
  height: 20px;
  border: 4px solid #c084fc;
  background: #faf5ff;
  border-radius: 50%;
}

/* Patty styling */
.burger-layer.patty {
  height: 48px;
  background: linear-gradient(135deg, #6b4423, #452810);
  border: 4px solid var(--thicc-black);
  border-radius: 20px;
  box-shadow: inset -8px -8px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.grill-mark {
  position: absolute;
  width: 6px;
  height: 38px;
  background: rgba(0, 0, 0, 0.25);
  transform: skewX(-20deg);
}
.mark-1 { left: 55px; top: 5px; }
.mark-2 { left: 110px; top: 5px; }
.mark-3 { left: 165px; top: 5px; }

/* Bottom Bun styling */
.burger-layer.bun-bottom {
  height: 45px;
  background: linear-gradient(135deg, #e5934c, #c06922);
  border: 4px solid var(--thicc-black);
  border-radius: 12px 12px 40px 40px;
  box-shadow: inset -8px -8px 0px rgba(0, 0, 0, 0.15);
  z-index: 8;
}

/* 3D Box styling */
.box-3d-wrapper {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: 120px;
  z-index: 5;
  transform-style: preserve-3d;
}

.box-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(60deg) rotateZ(-30deg); /* Iso perspective */
}

.box-face {
  position: absolute;
  border: 4px solid var(--thicc-black);
  background: var(--thicc-yellow);
}

.box-bottom {
  width: 280px;
  height: 280px;
  background: var(--thicc-yellow);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.15);
}

.box-inner-brand {
  position: absolute;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--thicc-black);
  font-weight: 900;
  text-align: center;
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* Box Side Panels */
.box-back {
  width: 280px;
  height: 80px;
  background: #d4af37;
  transform: rotateX(-90deg) translateZ(-4px);
  transform-origin: bottom center;
  bottom: 280px;
}
.box-front {
  width: 280px;
  height: 80px;
  background: #d4af37;
  transform: rotateX(-90deg);
  transform-origin: bottom center;
  bottom: 0px;
}
.box-left {
  width: 80px;
  height: 280px;
  background: #b5952c;
  transform: rotateY(-90deg);
  transform-origin: center left;
  left: 0px;
}
.box-right {
  width: 80px;
  height: 280px;
  background: #b5952c;
  transform: rotateY(-90deg);
  transform-origin: center left;
  left: 280px;
}

/* Box Lid */
.box-lid-wrapper {
  position: absolute;
  width: 280px;
  height: 280px;
  top: 0;
  left: 0;
  transform-style: preserve-3d;
  transform-origin: top center;
  transform: rotateX(110deg) translateZ(80px); /* Initially rotated fully open */
}

.box-lid {
  width: 100%;
  height: 100%;
  background: var(--thicc-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.lid-logo {
  width: 160px;
  height: auto;
  margin-bottom: 12px;
}
.lid-logo img {
  width: 100%;
  height: auto;
}

.lid-text {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--thicc-black);
  border: 2px solid var(--thicc-black);
  padding: 4px 12px;
  border-radius: 4px;
}

/* Sticker seal */
.box-sticker {
  position: absolute;
  width: 120px;
  height: 45px;
  background: var(--thicc-red);
  border: 3px solid var(--thicc-black);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transform: rotate(-10deg) translateZ(90px);
  box-shadow: 4px 4px 0px var(--thicc-black);
  opacity: 0;
  scale: 0.5;
  transition: opacity 0.3s ease, scale 0.3s ease;
  z-index: 25;
}

/* Info Cards Panel */
.packing-info-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: rgba(20, 20, 20, 0.6);
  border: 3px solid #222;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.4s ease;
  opacity: 0.3;
  transform: translateX(30px);
}

.info-card.active {
  opacity: 1;
  transform: translateX(0);
  border-color: var(--thicc-yellow);
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 6px 6px 0px var(--thicc-black);
}

.info-num {
  font-family: var(--font-mono);
  color: var(--thicc-yellow);
  font-size: 1.2rem;
  font-weight: bold;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--thicc-white);
  margin: 10px 0;
  text-transform: uppercase;
}

.info-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Responsive styles */
@media (max-width: 991px) {
  .packing-stage-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .packing-info-panel {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 15px;
  }
  .info-card {
    min-width: 250px;
    transform: none;
  }
  .info-card.active {
    transform: translateY(-5px);
  }
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE DESIGN MEDIA OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-immersive-subheading {
    font-size: 2.8rem;
  }
  
  .floating-sticker {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .badge-tag {
    display: inline-block;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .about-grid,
  .stacker-game-grid,
  .market-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-box {
    flex: 1 1 250px;
    max-width: 320px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-dot {
    display: none !important; /* Disable cursors on mobile screens */
  }

  .section-title {
    font-size: 3rem;
  }

  .floating-sticker {
    display: none !important;
  }

  .bg-word {
    font-size: 16vw;
  }

  .hero-immersive-subheading {
    font-size: 2.2rem;
  }

  .hero-immersive-desc {
    font-size: 1.1rem;
  }

  .floating-ingredient {
    font-size: 2.2rem;
  }

  .ticker-track span {
    font-size: 1.4rem;
  }

  .ticker-divider-container {
    height: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .ing-lettuce { top: -40px; }
  .ing-cheese { top: 20px; }
  .ing-tomato { top: 30px; }
  .ing-onion { top: -50px; }
  .ing-fries { top: -30px; }

  /* Mobile Assembly Overrides */
  .assembly-hud {
    padding: 10px 14px;
    min-width: 140px;
    gap: 12px;
  }
  .left-hud {
    display: none !important; /* Hide left hud on mobile to save screen space */
  }
  .right-hud {
    top: 5%;
    right: 50%;
    transform: translateX(50%); /* Center the progress circle on mobile */
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .assembly-stage {
    width: 100%;
    height: 380px;
    scale: 0.85;
  }
  .box-wrapper {
    width: 200px;
    height: 200px;
  }
  .box-front, .box-back {
    font-size: 11rem;
  }
  .emoji-large {
    font-size: 5rem;
  }
  .stamp-inner {
    font-size: 1.4rem;
    padding: 6px 16px;
  }

  .navbar {
    padding: 10px 16px;
  }

  .nav-menu,
  .btn-nav-order {
    display: none; /* Hide on mobile to show hamburger menu */
  }

  .menu-toggle {
    display: flex;
  }

  .burger-platter-wrapper {
    width: 300px;
    height: 300px;
  }

  .interactive-burger-graphic {
    width: 200px;
  }

  .burger-layer {
    font-size: 7rem;
    height: 48px;
  }

  .stacker-controls {
    padding: 16px;
  }

  .ingredient-buttons-grid {
    grid-template-columns: 1fr;
  }

  .delivery-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .address-info {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-immersive-subheading {
    font-size: 1.8rem;
  }

  .hero-immersive-desc {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-cta span {
    padding: 12px 24px;
    font-size: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
