/* ==========================================================================
   WAI WAI INDIA - BRAND DESIGN SYSTEM & STYLESHEET
   CG Foods India / CG Corp Global
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  /* Brand Palette */
  --brand-red: #E4032E;
  --brand-red-dark: #B50223;
  --brand-red-glow: rgba(228, 3, 46, 0.35);
  --brand-yellow: #FFC700;
  --brand-yellow-dark: #E6B200;
  --brand-yellow-light: #FFE885;
  --brand-orange: #FF5A00;
  
  /* Neutral Palette */
  --dark-bg: #0E0C0D;
  --dark-surface: #181517;
  --dark-card: #221C1F;
  --dark-border: rgba(255, 255, 255, 0.1);
  
  --cream-bg: #FDFBF7;
  --cream-surface: #F5F0E6;
  --cream-card: #FFFFFF;
  --cream-border: rgba(0, 0, 0, 0.08);

  --text-main: #1C191A;
  --text-muted: #6E6A70;
  --text-light: #FDFBF7;
  --text-light-muted: #A39DA6;

  /* Typography */
  --font-display: 'Baloo 2', cursive, display;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadows & Depth */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 12px 32px var(--brand-red-glow);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Lenis Smooth Scroll Fix */
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

/* --- Container & Layout --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1440px;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.section-cream {
  background-color: var(--cream-bg);
  color: var(--text-main);
}

.section-yellow {
  background-color: var(--brand-yellow);
  color: var(--dark-bg);
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.heading-xl {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.heading-lg {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.heading-md {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.heading-sm {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

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

.text-gradient-red {
  background: linear-gradient(135deg, #FF3B5C 0%, #E4032E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 2px;
  color: var(--brand-red);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-dark .section-subtitle {
  color: var(--brand-yellow);
}

/* --- Buttons & Interactive Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--brand-red);
  color: var(--text-light);
  box-shadow: var(--shadow-red);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #FF2E54 0%, #B50223 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px var(--brand-red-glow);
  color: #FFF;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-yellow {
  background-color: var(--brand-yellow);
  color: var(--dark-bg);
  box-shadow: 0 8px 20px rgba(255, 199, 0, 0.4);
}

.btn-yellow:hover {
  background-color: #FFE052;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 28px rgba(255, 199, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--cream-bg);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--dark-border);
}

.btn-outline-dark:hover {
  background-color: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* --- Header Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.75rem 0;
  background: rgba(14, 12, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-bounce);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06);
}

.logo-badge {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: var(--brand-yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  padding: 0.2rem 1.2rem;
  border-radius: var(--radius-md);
  border: 3px solid var(--brand-yellow);
  transform: rotate(-3deg);
  letter-spacing: 1px;
  box-shadow: 0 6px 16px rgba(228, 3, 46, 0.4);
  transition: transform var(--transition-bounce);
}

.brand-logo:hover .logo-badge {
  transform: rotate(0deg) scale(1.05);
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-yellow);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

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

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

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  list-style: none;
  z-index: 10;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-item a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.dropdown-item a:hover {
  background: rgba(228, 3, 46, 0.15);
  color: var(--brand-yellow);
  padding-left: 1.5rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 101;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 12, 13, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--brand-yellow);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at 70% 30%, #2A040B 0%, #0E0C0D 60%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow-red {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-red-glow) 0%, rgba(0,0,0,0) 70%);
  top: 10%;
  right: 15%;
  pointer-events: none;
  filter: blur(40px);
}

.hero-glow-yellow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 199, 0, 0.2) 0%, rgba(0,0,0,0) 70%);
  bottom: 10%;
  left: 10%;
  pointer-events: none;
  filter: blur(40px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(228, 3, 46, 0.15);
  border: 1px solid var(--brand-red);
  color: var(--brand-yellow);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero-particle-heading-wrapper {
  width: 100%;
  max-width: 640px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

#heroParticleCanvas {
  display: block;
  cursor: crosshair;
  touch-action: none;
}

.hero-title {
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}

/* Feature Row: Munch it / Lunch it / Soup it */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  background: rgba(255, 199, 0, 0.1);
  border-color: var(--brand-yellow);
  transform: translateY(-3px);
}

.feature-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--brand-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.1;
}

.feature-text p {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}

/* Hero Media Stack */
.hero-media-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- 3D Rotating Product Carousel Stage --- */
.carousel-3d-stage {
  perspective: 1100px;
  width: 100%;
  max-width: 540px;
  height: 480px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.carousel-3d-ring {
  width: 220px;
  height: 330px;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotate3dRing 22s linear infinite;
  transition: animation-play-state 0.3s ease;
  cursor: grab;
  user-select: none;
}

.carousel-3d-stage:hover .carousel-3d-ring {
  animation-play-state: paused;
}

.carousel-3d-ring:active {
  cursor: grabbing;
}

@keyframes rotate3dRing {
  0% {
    transform: rotateY(0deg) rotateX(-6deg);
  }
  100% {
    transform: rotateY(-360deg) rotateX(-6deg);
  }
}

.carousel-3d-card {
  position: absolute;
  width: 210px;
  height: 320px;
  top: 0;
  left: 0;
  background: rgba(24, 20, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(255, 199, 0, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), inset 0 0 20px rgba(255, 199, 0, 0.08);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  backface-visibility: visible;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.carousel-3d-card:hover {
  border-color: var(--brand-yellow);
  box-shadow: 0 25px 55px rgba(255, 199, 0, 0.4), inset 0 0 25px rgba(255, 199, 0, 0.2);
}

/* Position 6 cards symmetrically around a cylinder ring (Radius = 240px) */
.carousel-3d-card.card-1 { transform: rotateY(0deg) translateZ(240px); }
.carousel-3d-card.card-2 { transform: rotateY(60deg) translateZ(240px); }
.carousel-3d-card.card-3 { transform: rotateY(120deg) translateZ(240px); }
.carousel-3d-card.card-4 { transform: rotateY(180deg) translateZ(240px); }
.carousel-3d-card.card-5 { transform: rotateY(240deg) translateZ(240px); }
.carousel-3d-card.card-6 { transform: rotateY(300deg) translateZ(240px); }

.carousel-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.carousel-card-badge {
  background: rgba(255, 199, 0, 0.15);
  border: 1px solid var(--brand-yellow);
  color: var(--brand-yellow);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.carousel-card-badge.badge-red {
  background: rgba(228, 3, 46, 0.2);
  border-color: var(--brand-red);
  color: #FF6B81;
}

.carousel-card-badge.badge-fiery {
  background: linear-gradient(135deg, rgba(228, 3, 46, 0.3) 0%, rgba(255, 90, 0, 0.3) 100%);
  border-color: var(--brand-orange);
  color: #FF8A3C;
}

.carousel-card-badge.badge-korean {
  background: rgba(122, 20, 207, 0.25);
  border-color: #B55FE6;
  color: #D896FF;
}

.carousel-card-img-wrapper {
  width: 100%;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.carousel-card-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s ease;
}

.carousel-3d-card:hover .carousel-card-img-wrapper img {
  transform: scale(1.12) rotate(4deg);
}

.carousel-card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.2;
}

.carousel-card-sub {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  margin-top: 0.1rem;
}

/* Floating Ingredient Badges */
.floating-ingredient {
  position: absolute;
  background: rgba(34, 28, 31, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatBadge 5s ease-in-out infinite alternate;
}

.ingredient-1 { top: 10%; left: -5%; animation-delay: 0s; }
.ingredient-2 { bottom: 15%; right: -5%; animation-delay: 1.5s; }
.ingredient-3 { top: 60%; left: -10%; animation-delay: 3s; }

/* Steam SVG Animation Layer */
.steam-svg-layer {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  pointer-events: none;
  opacity: 0.7;
}

/* --- Marquee / Leadership Strip --- */
.marquee-section {
  background: var(--brand-red);
  color: var(--text-light);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--brand-yellow);
  border-bottom: 3px solid var(--brand-yellow);
}

.marquee-header {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 0.75rem;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFF;
  text-transform: uppercase;
}

.marquee-item i {
  color: var(--brand-yellow);
  font-size: 0.8rem;
}

/* --- Founders Spotlight --- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.founder-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-red);
}

.founder-img-wrapper {
  position: relative;
  height: 320px;
  background: linear-gradient(135deg, #1C191A 0%, #352E32 100%);
  overflow: hidden;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.founder-card:hover .founder-img {
  transform: scale(1.05);
}

.founder-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--brand-red);
  color: var(--brand-yellow);
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.founder-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.founder-name {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-weight: 700;
  color: var(--brand-red);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.founder-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* --- About Wai Wai & Counters --- */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 3rem;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--brand-yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Product Categories & Showcase --- */
.category-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  background: var(--cream-surface);
  color: var(--text-main);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--brand-red);
  color: var(--text-light);
  box-shadow: var(--shadow-red);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--cream-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--cream-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(228, 3, 46, 0.3);
}

.product-badge-new {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--brand-yellow);
  color: var(--dark-bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-img-wrapper {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
}

.product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08) rotate(3deg);
}

.product-category-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.product-title {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  min-height: 2.5rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--cream-border);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.product-buy-btn {
  background: var(--brand-red);
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.product-buy-btn:hover {
  background: var(--brand-red-dark);
  transform: scale(1.05);
}

/* --- Recipes Teaser & Cards --- */
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.recipe-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  transition: all var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.recipe-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-yellow);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.recipe-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img {
  transform: scale(1.1);
}

.recipe-badges {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.badge-time, .badge-difficulty {
  background: rgba(14, 12, 13, 0.8);
  backdrop-filter: blur(8px);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-time i { color: var(--brand-yellow); }
.badge-difficulty i { color: var(--brand-red); }

.recipe-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recipe-title {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.recipe-link-btn {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-yellow);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  text-decoration: none;
}

.recipe-card:hover .recipe-link-btn {
  color: var(--brand-red);
}

/* --- Social / Community Section --- */
.social-section {
  background: linear-gradient(135deg, #181517 0%, #2A040B 100%);
  color: var(--text-light);
  overflow: hidden;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  margin: 0 auto;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 0 2px rgba(255,255,255,0.1);
}

.phone-screen {
  background: #121212;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
}

.insta-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.insta-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--brand-yellow);
}

.insta-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
}

.insta-post-thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s;
}

.insta-post-thumb:hover {
  opacity: 0.85;
}

/* --- Retailer Badges Row --- */
.retailers-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.retailer-badge {
  background: var(--cream-card);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-border);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-main);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.retailer-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
  color: var(--brand-red);
}

/* --- Interactive Recipe Modal --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.recipe-modal {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  max-width: 750px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text-light);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform var(--transition-bounce);
}

.modal-backdrop.active .recipe-modal {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}

.modal-close-btn:hover {
  background: var(--brand-red);
}

.modal-hero-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.modal-content {
  padding: 2rem;
}

.modal-title {
  font-size: 2rem;
  color: var(--brand-yellow);
  margin-bottom: 0.5rem;
}

.modal-meta-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--text-light-muted);
}

.modal-ingredients-list, .modal-steps-list {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.modal-ingredients-list li, .modal-steps-list li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* --- Global Footer --- */
.footer {
  background: #0A0809;
  color: var(--text-light-muted);
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--dark-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-nav-col h4 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: var(--text-light-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.address-card h5 {
  color: var(--brand-yellow);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.address-card p {
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--text-light-muted);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--brand-yellow);
}

/* --- Particle Text Section (ReactBits ParticleText) --- */
.particle-text-section {
  background: radial-gradient(circle at 50% 50%, #1E1619 0%, #0E0C0D 100%);
  position: relative;
}

.particle-canvas-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(255, 199, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

#particleTextCanvas {
  cursor: crosshair;
  touch-action: none;
}

.particle-text-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.particle-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  color: var(--text-light-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.particle-pill-btn:hover, .particle-pill-btn.active {
  background: var(--brand-yellow);
  color: var(--dark-bg);
  border-color: var(--brand-yellow);
  box-shadow: 0 6px 18px rgba(255, 199, 0, 0.35);
}
