/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2D1500;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --orange: #E8660A;
  --orange-light: #F07820;
  --orange-pale: #FFF3E0;
  --orange-dark: #C05008;
  --gold: #F9C000;
  --gold-light: #FFF8D0;
  --purple: #4A1080;
  --purple-light: #6A30A0;
  --amber: #D4780A;
  --red: #C62828;
  --blue: #1565C0;
  --teal: #00695C;
  --text: #2D1500;
  --text-light: #7A4A20;
  --white: #fff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,102,10,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--orange-dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--orange);
  color: #fff;
  padding: 8px 22px;
  font-size: 0.9rem;
}
.btn-nav:hover { background: var(--orange-dark); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }
.arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-tag.light { background: rgba(255,255,255,0.2); color: #fff; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,102,10,0.12);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--orange-dark);
}
.staunch-mark {
  width: 28px;
  height: 36px;
  color: var(--orange);
  flex-shrink: 0;
  /* SVG uses currentColor so we tint it via filter */
  filter: invert(36%) sepia(80%) saturate(800%) hue-rotate(10deg) brightness(90%);
}
.logo-footer .staunch-mark {
  filter: invert(1) brightness(2);
}
.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.logo-brand {
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.logo-brand sup { font-size: 0.5em; vertical-align: super; }
.logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange-dark);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--orange); }
.logo-footer .logo-brand { color: rgba(255,255,255,0.55); }
.logo-footer .logo-text  { color: #fff; }
.logo-footer .logo-text strong { color: var(--orange-light); }
/* Hero badge mark */
.hero-badge-mark {
  width: 14px;
  height: 18px;
  filter: invert(50%) sepia(80%) saturate(600%) hue-rotate(10deg) brightness(80%);
  vertical-align: middle;
}
.hero-badge sup { font-size: 0.6em; vertical-align: super; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 40%, #FFF8E1 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange-light), transparent);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold), transparent);
  bottom: 100px; left: -80px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--orange), transparent);
  top: 40%; right: 20%;
  animation: float 12s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  color: #7A5000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.highlight { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-pills li {
  background: #fff;
  border: 1px solid rgba(232,102,10,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange-dark);
  line-height: 1;
}
.trust-item span { font-size: 0.8rem; color: var(--text-light); }
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(232,102,10,0.2);
}

/* ===== PRODUCT SHOWCASE (HERO) ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-showcase {
  position: relative;
  width: 360px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(240,120,32,0.3), transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ── Hero image (real photo) ── */
.hero-img-wrap {
  position: relative;
  z-index: 2;
  animation: can-float 4s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-product-img {
  width: 300px;
  height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(200,80,8,0.35));
  border-radius: 20px;
  display: block;
}
/* hide fallback when real image loads */
.hero-img-wrap:not(.no-img) .hero-img-fallback { display: none; }
/* show CSS can when image fails */
.hero-img-wrap.no-img .hero-product-img { display: none; }
.hero-img-fallback { display: none; }
.hero-img-wrap.no-img .hero-img-fallback { display: block; }

@keyframes can-float {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
/* ── CSS Fallback can (shown only when image missing) ── */
.can-body {
  width: 160px;
  height: 240px;
  background: linear-gradient(135deg, #E8660A, #F07820, #C05008);
  border-radius: 20px 20px 24px 24px;
  position: relative;
  box-shadow: inset -6px 0 20px rgba(0,0,0,0.2), 6px 10px 40px rgba(232,102,10,0.4);
  overflow: hidden;
}
.can-body::before {
  content: '';
  position: absolute;
  top: 0; left: 15px;
  width: 30px; height: 100%;
  background: rgba(255,255,255,0.12);
  border-radius: 0 0 10px 10px;
}
.can-label {
  position: absolute;
  inset: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  text-align: center;
}
.can-brand { font-size: 1rem; font-weight: 900; letter-spacing: 0.05em; }
.can-tagline { font-size: 0.45rem; letter-spacing: 0.12em; opacity: 0.8; text-transform: uppercase; }
.can-flavor {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
}
.can-weight { font-size: 0.6rem; opacity: 0.75; margin-top: 4px; text-align: center; line-height: 1.4; }
.can-lid {
  width: 180px;
  height: 24px;
  background: linear-gradient(90deg, #C05008, #E8660A, #C05008);
  border-radius: 12px 12px 0 0;
  margin: 0 auto;
  position: relative;
  top: 2px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
.can-shadow {
  width: 120px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.2), transparent);
  margin: 8px auto 0;
  border-radius: 50%;
}
.floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 70px;
  animation: badge-float 3s ease-in-out infinite;
}
.float-badge .badge-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.float-badge .badge-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
}
.badge-protein { top: 30px; right: -10px; animation-delay: 0s; }
.badge-calcium { bottom: 80px; right: -20px; animation-delay: 1s; }
.badge-natural { top: 50%; left: -20px; transform: translateY(-50%); animation-delay: 2s; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-calcium { animation-name: badge-float-right; }
@keyframes badge-float-right {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== HERO WAVE ===== */
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== CERTIFICATIONS ===== */
.certifications {
  background: #fff8f0;
  padding: 36px 0;
  border-bottom: 1px solid rgba(232,102,10,0.08);
}
.cert-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.cert-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cert-item { text-align: center; }
.cert-badge {
  background: #fff;
  border: 2px solid rgba(232,102,10,0.2);
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  line-height: 1.3;
  min-width: 90px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.cert-badge small { font-weight: 400; color: var(--text-light); font-size: 0.62rem; }
.cert-badge:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(232,102,10,0.2);
  transform: translateY(-2px);
}

/* ===== WHY / BENEFITS ===== */
.why-section {
  padding: 100px 0;
  background: #fff;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--orange-pale);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange-light);
  box-shadow: var(--shadow-lg);
}
.benefit-card.featured {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-color: var(--orange);
}
.benefit-card.featured h3,
.benefit-card.featured p { color: #fff; }
.benefit-icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.benefit-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.65; }
.featured-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: #2D1500;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== NUTRITION ===== */
.nutrition-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff8f0, #FFE0B2);
}
.nutrition-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nutrition-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.nutrition-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange-pale);
  flex-wrap: wrap;
  gap: 8px;
}
.nutrition-header h3 { font-size: 1.3rem; font-weight: 800; }
.nutrition-header span { font-size: 0.8rem; color: var(--text-light); }
.nutr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.nutr-label { width: 88px; font-size: 0.85rem; font-weight: 700; color: var(--text-light); flex-shrink: 0; }
.nutr-bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--orange-pale);
  border-radius: 50px;
  overflow: hidden;
}
.nutr-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 50px;
  animation: bar-grow 1.2s ease-out forwards;
  transform-origin: left;
}
.nutr-bar.bar-gold  { background: linear-gradient(90deg, #D4780A, var(--gold)); }
.nutr-bar.bar-red   { background: linear-gradient(90deg, #C62828, #EF5350); }
.nutr-bar.bar-purple{ background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.nutr-bar.bar-teal  { background: linear-gradient(90deg, #00695C, #26A69A); }
.nutr-bar.bar-blue  { background: linear-gradient(90deg, #1565C0, #42A5F5); }
@keyframes bar-grow { from { width: 0 !important; } }
.nutr-val { width: 54px; font-size: 0.85rem; font-weight: 700; text-align: right; color: var(--text); }
.nutrition-calories {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid var(--orange-pale);
}
.cal-circle {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.cal-num { font-size: 1.4rem; font-weight: 900; line-height: 1; }
.cal-label { font-size: 0.6rem; opacity: 0.8; }
.cal-macro {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}
.cal-macro div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.macro-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.macro-dot.orange { background: var(--orange); }
.macro-dot.amber  { background: var(--amber); }
.macro-dot.light  { background: #F9C000; }
.nutrition-content .section-tag { display: block; margin-bottom: 16px; }
.nutrition-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.nutrition-content > p { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; line-height: 1.7; }
.nutrition-points { display: flex; flex-direction: column; gap: 24px; }
.nutr-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.nutr-point-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nutr-point strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.nutr-point p { font-size: 0.9rem; color: var(--text-light); }

/* ===== PRODUCTS ===== */
.products-section {
  padding: 100px 0;
  background: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--orange-pale);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}
.product-card.popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,102,10,0.12);
}
.product-moms-card {
  background: #F0EAF8;
  border-color: rgba(74,16,128,0.15);
}
.product-moms-card:hover {
  border-color: var(--purple-light);
}
.product-diet-card {
  background: #F5EAD8;
  border-color: rgba(107,42,10,0.15);
}
.product-diet-card:hover {
  border-color: #8B4A2A;
}
.popular-ribbon {
  position: absolute;
  top: 20px; right: -8px;
  background: var(--gold);
  color: #2D1500;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 16px;
  border-radius: 4px 0 0 4px;
  z-index: 5;
}
.popular-ribbon::after {
  content: '';
  position: absolute;
  right: 0; bottom: -8px;
  border: 4px solid #B89000;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-kids  { background: linear-gradient(135deg, #FFE0B2, #FFCC80); }
.product-plus  { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.product-moms  { background: linear-gradient(135deg, #E8D5F5, #D0B0F0); }
.product-diet  { background: linear-gradient(135deg, #C4996C, #A0724A); }
.product-can-mini {
  width: 80px; height: 130px;
  border-radius: 12px 12px 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.2);
  animation: can-float 4s ease-in-out infinite;
}
.product-can-mini.kids { background: linear-gradient(135deg, #E8660A, #F07820); }
.product-can-mini.plus { background: linear-gradient(135deg, #C05008, #E8660A); }
.product-can-mini.moms { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.product-can-mini.diet { background: linear-gradient(135deg, #6B2A0A, #8B4A2A); }
.mini-label {
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.mini-mark {
  width: 18px;
  height: 22px;
  filter: brightness(0) invert(1);
  margin-bottom: 1px;
}
.mini-brand-name {
  font-size: 0.38rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  line-height: 1;
}
.mini-brand-name sup { font-size: 0.5em; }
.mini-brand { font-size: 0.5rem; font-weight: 900; letter-spacing: 0.04em; margin-top: 2px; }
.mini-flavor { font-size: 0.5rem; font-weight: 600; opacity: 0.9; }
.product-details { padding: 24px; }
.product-flavor-badge {
  display: inline-block;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.badge-orange { background: var(--orange); }
.badge-amber  { background: var(--amber); }
.badge-purple { background: var(--purple); }
.badge-brown  { background: #6B2A0A; }
.product-details h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.product-details > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.product-features { margin-bottom: 20px; }
.product-features li {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--orange-dark);
  padding: 4px 0;
}
.product-moms-card .product-features li { color: var(--purple); }
.product-diet-card .product-features li { color: #6B2A0A; }
.btn-diet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  background: #6B2A0A;
  color: #fff;
  border: 2px solid #6B2A0A;
  white-space: nowrap;
}
.btn-diet:hover {
  background: #4A1A06;
  border-color: #4A1A06;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,42,10,0.4);
}
.price-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.price-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(232,102,10,0.2);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
  background: #fff;
}
.price-opt.active,
.price-opt:hover {
  border-color: var(--orange);
  background: var(--orange-pale);
  color: var(--orange-dark);
}
.price-opt input { accent-color: var(--orange); }

/* ===== HOW TO USE ===== */
.howto-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: #fff;
}
.howto-section .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.howto-section .section-header h2 { color: #fff; }
.howto-tabs { display: flex; flex-direction: column; gap: 48px; }
.howto-variant-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  transition: all var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}
.step-num {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 12px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.step-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 0.82rem; opacity: 0.85; line-height: 1.6; }
.step-arrow {
  font-size: 1.8rem;
  opacity: 0.5;
  font-weight: 300;
  flex-shrink: 0;
}
.howto-note {
  text-align: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px 32px;
  font-size: 0.92rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: #fff8f0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(232,102,10,0.08);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured-testi {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border: none;
}
.testimonial-card.featured-testi p { color: rgba(255,255,255,0.9); }
.testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; gap: 14px; align-items: center; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }
.featured-testi .testi-author strong { color: #fff; }
.featured-testi .testi-author span { color: rgba(255,255,255,0.7); }

/* ===== BUY SECTION ===== */
.buy-section { padding: 100px 0; background: #fff; }
.buy-banner {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  border-radius: var(--radius);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
  overflow: hidden;
  position: relative;
}
.buy-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: 200px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.buy-content .section-tag { display: block; margin-bottom: 12px; }
.buy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.buy-content > p { color: rgba(255,255,255,0.88); margin-bottom: 24px; font-size: 1.05rem; }
.offer-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.offer-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}
.buy-cta-group { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
}
.payment-icons small { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-left: 4px; }

/* Buy can stack visual */
.buy-can-stack {
  display: flex;
  gap: -12px;
  position: relative;
  height: 160px;
  width: 240px;
}
.stack-can {
  width: 70px;
  height: 120px;
  border-radius: 10px 10px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  box-shadow: 3px 6px 20px rgba(0,0,0,0.25);
  position: absolute;
}
.sc-brand { font-size: 0.42rem; font-weight: 900; opacity: 0.85; }
.sc-flavor { font-size: 0.55rem; margin-top: 4px; }
.can-a { background: linear-gradient(135deg, #E8660A, #F07820); left: 0; top: 24px; transform: rotate(-10deg); }
.can-b { background: linear-gradient(135deg, #C05008, #E8660A); left: 55px; top: 0; z-index: 2; }
.can-c { background: linear-gradient(135deg, var(--purple), var(--purple-light)); left: 110px; top: 8px; z-index: 1; transform: rotate(6deg); }
.can-d { background: linear-gradient(135deg, #6B2A0A, #8B4A2A); left: 162px; top: 24px; transform: rotate(12deg); }

/* Buy Form */
.buy-form-wrap {
  background: var(--orange-pale);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.buy-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}
.buy-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 2px solid rgba(232,102,10,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  transition: border-color var(--transition);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,102,10,0.1);
}
.form-coupon {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.form-coupon input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid rgba(232,102,10,0.15);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
}
.form-coupon input:focus { outline: none; border-color: var(--orange); }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}
.form-note a { color: var(--orange); text-decoration: underline; }

/* ===== COMPARE ===== */
.compare-section { padding: 100px 0; background: #fff8f0; }
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th {
  background: #fff;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  border-bottom: 2px solid var(--orange-pale);
}
.compare-table th.our-col { background: var(--orange); color: #fff; }
.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--orange-pale);
  font-size: 0.95rem;
  background: #fff;
}
.compare-table td.our-col { background: var(--orange-pale); font-weight: 700; }
.compare-table td.check { color: var(--orange-dark); }
.compare-table td.cross { color: #999; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fff3e0; }

/* ===== FAQ ===== */
.faq-section { padding: 100px 0; background: #fff; }
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(232,102,10,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(232,102,10,0.08); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: 60px 0; background: var(--orange-pale); }
.newsletter-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.nl-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.nl-content p { color: var(--text-light); font-size: 0.95rem; }
.nl-form { display: flex; gap: 12px; flex: 1; min-width: 300px; }
.nl-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(232,102,10,0.2);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: inherit;
}
.nl-form input:focus { outline: none; border-color: var(--orange); }

/* ===== FOOTER ===== */
.footer {
  background: #2D1500;
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand .logo strong { color: var(--orange-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer-address { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-links h4 { color: #fff; font-size: 0.95rem; font-weight: 800; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li, .footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange-light); }
.footer-cert { display: flex; gap: 8px; margin-top: 16px; }
.fc-badge {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--orange-light); }
.footer-disclaimer { font-size: 0.75rem !important; color: rgba(255,255,255,0.35) !important; max-width: 700px; margin: 8px auto 0 !important; }

/* ===== STICKY BUY ===== */
.sticky-buy {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 20px;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  display: none;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%; transform: translateX(-50%) translateY(40px);
  background: var(--orange-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
  pointer-events: none;
  box-shadow: var(--shadow-lg);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== B2B NAV LINK ===== */
.b2b-nav-link {
  color: var(--orange-dark) !important;
  font-weight: 700;
  background: var(--orange-pale);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  border: 1.5px solid rgba(232,102,10,0.2);
  transition: all var(--transition);
}
.b2b-nav-link:hover { background: var(--orange); color: #fff !important; border-color: var(--orange); }

/* ===== PRICE BREAKDOWN ===== */
.price-breakdown {
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 16px 0;
  border: 1.5px solid rgba(232,102,10,0.15);
}
.pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(232,102,10,0.08);
}
.pb-row:last-child { border-bottom: none; }
.pb-total {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  padding-top: 10px;
  margin-top: 4px;
  border-top: 2px solid rgba(232,102,10,0.2) !important;
  border-bottom: none !important;
}
.discount-row { color: var(--orange-dark); }
.orange-text { color: var(--orange); font-weight: 700; }

/* ===== RAZORPAY TRUST BADGE ===== */
.razorpay-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 8px;
  padding: 12px;
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  flex-wrap: wrap;
}
.razorpay-trust span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ===== ORDER CONFIRMATION MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(0.9);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-icon { font-size: 3.5rem; margin-bottom: 12px; }
.modal-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--orange-dark);
  margin-bottom: 6px;
}
.modal-sub { color: var(--text-light); margin-bottom: 24px; }
.modal-details {
  background: var(--orange-pale);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.modal-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(232,102,10,0.1);
}
.modal-detail-row:last-child { border-bottom: none; }
.modal-detail-row span { color: var(--text-light); }
.modal-detail-row strong { color: var(--text); font-size: 0.82rem; text-align: right; max-width: 55%; word-break: break-all; }
.modal-actions { margin-bottom: 16px; }
.modal-note { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
    z-index: 998;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-pills { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .product-showcase { width: 280px; height: 340px; }
  .hero-product-img { width: 240px; height: 300px; }
  .nutrition-inner { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .buy-banner { grid-template-columns: 1fr; }
  .buy-visual { display: none; }
  .buy-form-wrap { padding: 28px 20px; }
  .buy-form .form-row { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow { display: none; }
  .step-card { max-width: 100%; }
  .newsletter-card { flex-direction: column; padding: 32px 24px; }
  .nl-form { flex-direction: column; }
  .nl-form input { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .sticky-buy { display: block; }
  .compare-table th, .compare-table td { padding: 12px 16px; font-size: 0.85rem; }
  .howto-tabs { gap: 36px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.9rem; }
  .cert-logos { gap: 12px; }
  .buy-form-wrap { padding: 20px 16px; }
}
