﻿/* ===== Tellifyo Ayurveda â€” Design System ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #00442B;
  --green-dark: #003320;
  --green-mid: #0a5c3a;
  --green-soft: #6b9b7a;
  --sage: #8fbc8f;
  --sage-bar: #7aab8a;
  --cream: #F9F7F2;
  --cream-dark: #EFEBE3;
  --beige: #E8DFD0;
  --gold: #C9A227;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 68, 43, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 68, 43, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --page-max: 1440px;
  --side-gap: 40px;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 68, 43, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(201, 162, 39, 0.08), transparent 45%),
    var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}

.section { padding: 72px 0; }

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

.section-desc {
  max-width: 520px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.leaf-icon {
  margin-bottom: 8px;
  animation: leafSway 5s ease-in-out infinite;
  transform-origin: bottom center;
}

@keyframes leafSway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 68, 43, 0.28);
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

/* ===== ANNOUNCEMENT ===== */
.announcement-bar {
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  padding: 9px 0;
}

.marquee { overflow: hidden; white-space: nowrap; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 68, 43, 0.06);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.announcement-bar,
.site-header,
.hero,
.trust-strip,
.benefits-bar,
.featured-in,
.site-footer {
  width: 100%;
  max-width: none;
}

.header-inner {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 10px var(--side-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--green);
  font-weight: 700;
}

.logo-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
  padding: 6px 0;
  transition: 0.25s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: 0.25s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: 0.25s ease;
}

.icon-btn:hover { background: var(--cream-dark); }

.cart-btn { position: relative; }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: #c0392b;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}

.hamburger span {
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 720px);
  background: var(--green-dark);
  width: 100%;
}

.hero-slides {
  position: relative;
  height: 100%;
  min-height: inherit;
  width: 100%;
}

.hero-slide {
  display: none;
  position: relative;
  min-height: inherit;
  width: 100%;
}

.hero-slide.active { display: block; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 8s ease forwards;
}

.hero-slide.active .hero-media img {
  animation: heroZoom 8s ease forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 34, 20, 0.88) 0%, rgba(0, 52, 32, 0.55) 48%, rgba(0, 34, 20, 0.25) 100%),
    linear-gradient(to top, rgba(0, 26, 16, 0.55) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0;
  margin-left: max(var(--side-gap), calc((100% - var(--page-max)) / 2 + var(--side-gap)));
  padding: 88px var(--side-gap) 100px;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-slide.active .hero-content > * {
  animation: heroIn 0.75s ease both;
}

.hero-slide.active .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-slide.active .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-slide.active .hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-slide.active .hero-content > *:nth-child(4) { animation-delay: 0.35s; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  line-height: 1.15;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.85rem);
  color: var(--white);
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f0e6c8;
}

.hero-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 420px;
  margin-bottom: 28px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.hero .btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.hero .btn-primary:hover {
  background: #dfb93a;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.hero-code {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-code strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  z-index: 5;
  transition: 0.25s ease;
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.hero-arrow.prev { left: 18px; }
.hero-arrow.next { right: 18px; }

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.3s ease;
}

.dot.active {
  background: var(--gold);
  width: 40px;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ===== PRODUCTS ===== */
.products {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 68, 43, 0.04), transparent 60%),
    var(--cream);
  padding-top: 72px;
  padding-bottom: 72px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.06);
  border: 1px solid rgba(0, 68, 43, 0.07);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 68, 43, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
}

.product-img {
  position: relative;
  height: 200px;
  background: linear-gradient(160deg, #f3efe6, #faf7f1);
  overflow: hidden;
}

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

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

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge.sale {
  background: var(--gold);
  color: var(--green-dark);
}

.product-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(0, 68, 43, 0.06);
  padding: 4px 9px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.rating {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating span { color: #e6a817; }
.rating em {
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.75;
}

.product-body h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.25;
}

.product-body > p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.5;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.price {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--green);
}

.compare {
  font-size: 0.78rem;
  color: #999;
  text-decoration: line-through;
}

.btn-cart {
  width: 100%;
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease;
  margin-top: auto;
}

.product-card:hover .btn-cart { background: var(--green-dark); }

.btn-cart.added {
  background: var(--gold);
  color: var(--green-dark);
}

.see-all {
  text-align: center;
  margin-top: 36px;
}

.see-all .btn-outline { padding: 13px 32px; }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: linear-gradient(90deg, var(--green-mid), var(--sage-bar) 50%, var(--green-mid));
  padding: 20px 0;
  overflow: hidden;
  color: #fff;
}

.trust-track {
  gap: 40px;
  animation-duration: 40s;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.trust-ico { opacity: 0.85; }

/* ===== LEGACY ===== */
.legacy { background: var(--cream); }

.legacy-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.legacy-collage {
  display: grid;
  gap: 14px;
}

.collage-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collage-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collage-main:hover img { transform: scale(1.04); }

.collage-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.collage-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collage-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.year-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 68, 43, 0.92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}

.legacy-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.2;
}

.legacy-copy h3 span {
  display: block;
  font-size: 0.7em;
  color: var(--gold);
  font-weight: 500;
}

.legacy-copy p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legacy-copy .btn-primary { margin-top: 10px; }

/* ===== BENEFITS BAR ===== */
.benefits-bar {
  background: var(--green);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}

.benefits-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.12), transparent 40%);
  pointer-events: none;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  position: relative;
  transition: transform 0.3s ease;
}

.benefit:hover { transform: translateY(-3px); }

.benefit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}

.benefit span {
  font-size: 0.72rem;
  opacity: 0.8;
}

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--white); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.ingredient-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(0, 68, 43, 0.05);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ingredient-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ingredient-card:hover img { transform: scale(1.08); }

.ingredient-card span {
  display: block;
  padding: 14px 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  font-family: var(--font-serif);
}

/* ===== FEATURED IN ===== */
.featured-in {
  background: var(--green);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.featured-in::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 50%, rgba(255, 255, 255, 0.06), transparent 50%);
  pointer-events: none;
}

.featured-inner {
  position: relative;
  text-align: center;
}

.featured-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.featured-inner h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 32px;
}

.media-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
  width: 100%;
}

.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.media-logo span {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.92;
  white-space: nowrap;
}

.media-logo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(201, 162, 39, 0.55);
  transform: translateY(-3px);
}

.media-logo:hover span { opacity: 1; color: var(--gold); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }

.testimonials-wrap {
  position: relative;
  padding: 0 48px;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow);
  z-index: 3;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.scroll-btn:hover {
  background: var(--green);
  color: #fff;
}

.scroll-btn.left { left: 0; }
.scroll-btn.right { right: 0; }

.testimonial-card {
  min-width: 280px;
  max-width: 280px;
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.testimonial-footer {
  background: var(--green);
  color: #fff;
  padding: 18px;
}

.testimonial-footer .stars {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.testimonial-footer p {
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 12px;
  opacity: 0.95;
}

.testimonial-footer strong {
  display: block;
  font-size: 0.88rem;
}

.testimonial-footer span {
  font-size: 0.72rem;
  opacity: 0.75;
}

/* ===== KNOWLEDGE / BLOG ===== */
.knowledge { background: var(--white); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 68, 43, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-img { overflow: hidden; }

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

.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-body { padding: 22px; }

.blog-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
}

.read-more:hover { color: var(--gold); }

/* ===== FAQ ===== */
.faq { background: var(--cream); }

.faq-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 68, 43, 0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q svg { transform: rotate(180deg); }
.faq-item.active .faq-q { background: var(--cream-dark); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-a { max-height: 280px; }

.faq-a p {
  padding: 4px 20px 18px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.faq-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-dark);
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding: 56px 24px 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.footer-logo span {
  font-size: 0.7rem;
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.socials {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.socials a:hover { background: var(--gold); color: var(--green-dark); }

.licenses {
  font-size: 0.7rem !important;
  opacity: 0.55 !important;
}

.footer-links h4,
.footer-form h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-form h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.footer-links li { margin-bottom: 9px; }

.footer-links a {
  font-size: 0.82rem;
  opacity: 0.8;
  transition: 0.25s ease;
}

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

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.55); }

.footer-form input:focus,
.footer-form textarea:focus {
  background: rgba(255,255,255,0.16);
}

.footer-form .btn-primary {
  width: 100%;
  background: var(--gold);
  color: var(--green-dark);
  margin-top: 4px;
}

.footer-form .btn-primary:hover { background: #dfb93a; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  opacity: 0.65;
}

.payments {
  display: flex;
  gap: 8px;
}

.payments span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root { --side-gap: 24px; }
  .container { padding: 0 var(--side-gap); }
  .header-inner { padding: 10px var(--side-gap); }
  .ingredients-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-visual { display: none; }
  .legacy-grid { gap: 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .main-nav ul { gap: 18px; }
  .main-nav a { font-size: 0.72rem; }
  .media-logos {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --side-gap: 16px; }
  .container { padding: 0 var(--side-gap); }
  .section { padding: 48px 0; }
  .section-title { font-size: 1.7rem; }

  .hamburger { display: flex; z-index: 1001; }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    padding: 90px 28px 28px;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .main-nav.open { left: 0; }

  .main-nav ul {
    flex-direction: column;
    gap: 6px;
  }

  .main-nav a {
    font-size: 1rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,68,43,0.08);
  }

  .main-nav a::after { display: none; }

  .logo-text span,
  .logo-text em { display: none; }
  .logo-text strong { font-size: 1.15rem; }

  .header-inner { padding: 8px var(--side-gap); gap: 10px; }
  .icon-btn { width: 36px; height: 36px; }

  .announcement-bar { font-size: 0.65rem; padding: 8px 0; }

  .hero { min-height: min(48vh, 380px); }
  .hero-content {
    margin-left: var(--side-gap);
    margin-right: var(--side-gap);
    max-width: none;
    padding: 40px 8px 56px;
    text-align: left;
    box-sizing: border-box;
  }
  .hero-content h1 {
    font-size: clamp(1.45rem, 5.8vw, 1.85rem);
    line-height: 1.2;
    margin-bottom: 0;
    max-width: none;
    padding-right: 12px;
    white-space: normal;
  }
  .hero-content h1 br {
    display: block;
  }
  .hero-brand {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .hero-sub,
  .hero-code,
  .hero-cta { display: none; }
  .hero-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
    top: auto;
    bottom: 16px;
    transform: none;
    background: rgba(0, 0, 0, 0.35);
  }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
  .hero-dots { bottom: 22px; }
  .hero-media img {
    object-position: center 72%;
    transform: scale(1.02);
    animation: none;
  }
  .hero-slide.active .hero-media img {
    animation: none;
    transform: scale(1.02);
  }

  .concern-pills { gap: 8px; padding-bottom: 8px; }
  .pill {
    padding: 8px 14px;
    font-size: 0.72rem;
  }

  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-card { min-width: 0; max-width: none; }

  .trust-track { gap: 24px; }
  .trust-item { font-size: 0.7rem; }

  .legacy-grid { grid-template-columns: 1fr; gap: 24px; }
  .legacy-stats { gap: 16px; flex-wrap: wrap; }
  .collage-main img { height: 200px; }

  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefit { flex-direction: column; text-align: center; gap: 8px; }
  .benefit strong { font-size: 0.75rem; }
  .benefit span { font-size: 0.68rem; }

  .ingredients-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .ingredient-card span { font-size: 0.8rem; padding: 10px 6px; }
  .ingredient-card img { height: 100px; }

  .featured-inner h3 { margin-bottom: 20px; }
  .media-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .media-logo {
    min-height: 60px;
    padding: 12px 8px;
  }
  .media-logo span {
    font-size: 0.9rem;
    white-space: normal;
    text-align: center;
  }

  .testimonials-wrap { padding: 0 36px; }

  .testimonial-card {
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 260px;
  }

  .scroll-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .blog-grid { grid-template-columns: 1fr; gap: 18px; }

  .faq-question { padding: 14px 16px; font-size: 0.85rem; }
  .faq-a p { padding: 0 16px 16px; font-size: 0.82rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 16px 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .payment-methods,
  .payments { justify-content: center; }

  .whatsapp-fab {
    width: 50px;
    height: 50px;
    bottom: 18px;
    right: 16px;
  }
}

@media (max-width: 520px) {
  .logo-text strong { font-size: 1.05rem; }
  .logo-mark,
  .logo svg { width: 34px; height: 40px; }

  .hero { min-height: min(42vh, 320px); }
  .hero-content { padding: 32px 4px 52px; }
  .hero-content h1 { font-size: 1.4rem; max-width: none; }
  .hero-brand { font-size: 1.05rem; }
  .btn-primary { padding: 12px 24px; font-size: 0.8rem; }

  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-img { height: 140px; }
  .product-card { min-width: 0; max-width: none; }
  .product-body { padding: 10px; }
  .product-body h3 { font-size: 0.88rem; }
  .product-body p { font-size: 0.72rem; line-height: 1.35; }
  .btn-cart { font-size: 0.72rem; padding: 8px; }

  .media-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .concern-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid,
  .legacy-stats { justify-content: center; }

  .section-title { font-size: 1.5rem; }
  .testimonial-card { min-width: 240px; max-width: 240px; flex: 0 0 240px; }

  .announcement-container {
    flex-direction: column;
    gap: 2px;
  }
}



/* ========== PAGES (about, contact, products) ========== */

/* ===== Shared Pages (About + Contact) — styles continue below ===== */
/* (base :root / body already defined above) */

.container {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
}
.container.narrow { max-width: 820px; }
.section { padding: 70px 0; }
.text-center { text-align: center; }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--green);
  font-weight: 600;
}
.section-head p,
.section-desc {
  color: var(--muted);
  margin-top: 8px;
  font-size: 0.92rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.leaf { margin-bottom: 8px; }
.leaf-icon {
  margin-bottom: 8px;
  animation: leafSway 5s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes leafSway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-primary.full { width: 100%; text-align: center; }

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.3s;
}
.btn-outline-light:hover { background: #fff; color: var(--green); }

.btn-outline-dark {
  display: inline-block;
  border: 1.5px solid var(--green);
  color: var(--green);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.3s;
}
.btn-outline-dark:hover {
  background: var(--green);
  color: #fff;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow.light { color: var(--gold); }

/* Header */
.announcement-bar {
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  padding: 9px 0;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 35s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,68,43,0.06);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 10px var(--side-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--font-serif); font-size: 1.35rem; color: var(--green); }
.logo-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: 0.25s;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-actions { display: flex; gap: 6px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); border: none; background: none; cursor: pointer;
}
.icon-btn:hover { background: var(--cream-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; background: none; border: none; cursor: pointer; }
.hamburger span { height: 2px; background: var(--green); border-radius: 2px; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== ABOUT PAGE (no tall banner) ===== */
.about-top {
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 68, 43, 0.08);
  padding: 36px 0 32px;
}
.about-top-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.about-top h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--green);
  font-weight: 600;
  margin-bottom: 10px;
}
.about-top-lead {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 auto;
}

.about-intro { background: var(--white); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about-intro-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--green);
  margin-bottom: 16px;
}
.about-intro-copy p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-intro-copy .btn-primary { margin-top: 10px; }
.about-intro-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Home-style legacy collage (About) */
.about-legacy { background: var(--cream); }
.home-legacy-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.home-legacy-collage { display: grid; gap: 14px; }
.home-collage-main {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.home-collage-main img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-collage-main:hover img { transform: scale(1.04); }
.home-collage-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.home-collage-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.home-collage-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-collage-card:hover img { transform: scale(1.05); }
.home-legacy-copy h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--green);
  margin-bottom: 16px;
  line-height: 1.2;
}
.home-legacy-copy h3 span {
  display: block;
  font-size: 0.7em;
  color: var(--gold);
  font-weight: 500;
}
.home-legacy-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.home-legacy-copy .btn-primary { margin-top: 8px; }

/* PAGE BANNER (Products / Contact / About) */
.page-banner,
.about-hero {
  position: relative;
  min-height: min(42vh, 360px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--green-dark);
}
.page-banner-media,
.about-hero-media {
  position: absolute;
  inset: 0;
}
.page-banner-media img,
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aboutHeroZoom 18s ease-in-out infinite alternate;
}
@keyframes aboutHeroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.page-banner-shade,
.about-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 34, 20, 0.88) 0%, rgba(0, 50, 30, 0.58) 45%, rgba(0, 40, 24, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 34, 20, 0.35) 0%, transparent 50%);
  pointer-events: none;
}
.page-banner-content,
.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 40px var(--side-gap) 36px;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-banner h1,
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: none;
  margin-bottom: 10px;
  animation: aboutFadeUp 0.9s ease 0.08s both;
}
.page-banner .hero-sub,
.about-hero .hero-sub {
  max-width: 42ch;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0 0 18px;
  animation: aboutFadeUp 1s ease 0.14s both;
}
.page-banner .hero-cta,
.about-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  animation: aboutFadeUp 1.05s ease 0.2s both;
}
.page-banner .btn-primary,
.about-hero .btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.page-banner .btn-primary:hover,
.about-hero .btn-primary:hover {
  background: #dfb93a;
  transform: translateY(-2px);
}
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stats */
.stats-bar {
  background: var(--green);
  padding: 36px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.14), transparent 42%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  position: relative;
}
.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 4px;
}
.stat span { font-size: 0.8rem; opacity: 0.85; }

/* Founder */
.founder-section {
  background: var(--green-dark);
  color: #fff;
  padding: 70px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.founder-collage { position: relative; }
.founder-main {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
}
.year-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
}
.founder-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.founder-thumbs .thumb { position: relative; }
.founder-thumbs img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.founder-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.founder-copy h2 span {
  display: block;
  font-size: 0.65em;
  color: var(--gold);
  font-weight: 500;
}
.founder-copy p {
  opacity: 0.88;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.7;
}
.founder-copy .btn-outline-light { margin-top: 10px; }

/* Journey */
.journey-section { background: var(--cream); }
.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.journey-track::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.55;
}
.journey-item {
  text-align: center;
  padding: 8px 10px 0;
  position: relative;
}
.journey-year {
  display: inline-block;
  background: var(--green);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.journey-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 8px;
}
.journey-item p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Board */
.board-section { background: var(--white); }
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.board-card {
  background: var(--cream);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.board-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.board-card > img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.board-body { padding: 28px 24px; }
.board-body h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--green);
}
.role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 4px 0 12px;
}
.board-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* Mission Vision */
.mission-section { background: var(--cream); }
.mv-stack { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 0 auto; }
.mv-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 28px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.mv-icon {
  width: 52px; height: 52px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mv-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 8px;
}
.mv-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* Values */
.values-section { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--cream);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-ico {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 68, 43, 0.08);
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 8px;
}
.value-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* Certs */
.certs-section { background: var(--cream); }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cert-card {
  background: #fff;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.cert-card:hover { transform: translateY(-3px); }
.cert-badge {
  width: 70px; height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cert-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 8px;
}
.cert-card p { font-size: 0.8rem; color: var(--muted); }

/* Stores */
.stores-section { background: var(--white); }
.stores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.store-card {
  background: var(--cream);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.store-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.store-body { padding: 22px 20px; }
.store-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--green);
}
.store-body span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin: 4px 0 6px;
}
.store-body p { font-size: 0.88rem; color: var(--muted); }

/* About benefits (home-style) */
.about-benefits {
  background: var(--green);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.about-benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 162, 39, 0.12), transparent 40%);
  pointer-events: none;
}
.about-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.about-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.about-benefit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}
.about-benefit span {
  font-size: 0.72rem;
  opacity: 0.8;
}

/* About CTA */
.about-cta {
  background: linear-gradient(135deg, #EFEBE3 0%, #F9F7F2 45%, #E8DFD0 100%);
  color: var(--green);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 68, 43, 0.08);
}
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201, 162, 39, 0.18), transparent 50%);
  pointer-events: none;
}
.about-cta .container { position: relative; }
.about-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--green);
  margin-bottom: 10px;
}
.about-cta p {
  color: var(--muted);
  margin-bottom: 24px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.about-cta .btn-primary {
  background: var(--green);
  color: #fff;
}
.about-cta .btn-primary:hover {
  background: var(--green-dark);
}

/* ===== CONTACT ===== */
.contact-main { background: var(--cream); padding-top: 48px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.info-card {
  background: var(--green);
  color: #fff;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-lg);
}
.info-card-body {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.info-card h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.info-card-body > p {
  opacity: 0.88;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-list li:last-child {
  border-bottom: none;
}
.info-ico {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 3px;
}
.contact-list p {
  font-size: 0.84rem;
  opacity: 0.88;
  line-height: 1.5;
  margin: 0;
}
.contact-list a:hover { color: var(--gold); }

.info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.info-item strong { display: block; font-size: 0.86rem; margin-bottom: 2px; }
.info-item p { font-size: 0.84rem; opacity: 0.88; line-height: 1.5; }
.info-item a:hover { color: var(--gold); }

.wa-direct {
  display: block;
  text-align: center;
  margin: 4px 0 10px;
  padding: 11px 16px;
  background: #25D366;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: 0.25s;
}
.wa-direct:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: 0.25s;
}
.social-row a:hover { background: var(--gold); color: var(--green-dark); }

.contact-form-wrap {
  background: #fff;
  padding: 28px 28px 26px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.contact-form-wrap.personal .eyebrow {
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-form h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--green);
  margin-bottom: 8px;
}
.form-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.5;
}
.contact-form .field.message-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form .field.message-field textarea {
  flex: 1;
  min-height: 160px;
}
.contact-form .btn-primary.full {
  margin-top: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,68,43,0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  background: #fff;
}
.form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  min-height: 1.2em;
  color: var(--green);
  font-weight: 500;
}

.help-cards { background: var(--white); }
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.help-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.help-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 8px;
}
.help-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.help-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}
.help-card a:hover { color: var(--gold); }

.map-section { background: var(--cream); }
.map-frame {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}
.map-overlay {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--green);
  padding: 20px 28px;
  background: rgba(249, 247, 242, 0.95);
  box-shadow: var(--shadow-lg);
  max-width: min(92vw, 440px);
  width: 100%;
}
.map-overlay strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin-bottom: 6px;
  color: var(--green);
}
.map-overlay span {
  display: block;
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.map-overlay .btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.map-overlay .btn-primary:hover { background: #dfb93a; }

.contact-stores { background: var(--white); }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ===== PRODUCTS LISTING — same cards as Home ===== */
.shop-catalog {
  padding-top: 40px;
  padding-bottom: 72px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 68, 43, 0.04), transparent 60%),
    var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.06);
  border: 1px solid rgba(0, 68, 43, 0.07);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 68, 43, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
}

.product-img {
  position: relative;
  height: 200px;
  background: linear-gradient(160deg, #f3efe6, #faf7f1);
  overflow: hidden;
}

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

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

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge.sale {
  background: var(--gold);
  color: var(--green-dark);
}

.product-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(0, 68, 43, 0.06);
  padding: 4px 9px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.rating {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating span { color: #e6a817; }
.rating em {
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.75;
}

.product-body h3 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.25;
}

.product-body > p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.5;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.price {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--green);
}

.compare {
  font-size: 0.78rem;
  color: #999;
  text-decoration: line-through;
}

.btn-cart {
  width: 100%;
  display: block;
  text-align: center;
  background: var(--green);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease;
  margin-top: auto;
}

.product-card:hover .btn-cart { background: var(--green-dark); }

/* Footer — same as Home */
.site-footer { background: var(--green-dark); color: #fff; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding: 56px 24px 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}
.footer-logo span { font-size: 0.7rem; opacity: 0.7; }
.footer-brand p {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-brand a:hover { color: var(--gold); }
.socials {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: 0.25s ease;
}
.socials a:hover { background: var(--gold); color: var(--green-dark); }
.licenses {
  font-size: 0.7rem !important;
  opacity: 0.55 !important;
}
.footer-links h4,
.footer-form h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-links h4::after,
.footer-form h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.82rem;
  opacity: 0.8;
  transition: 0.25s ease;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 4px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.55); }
.footer-form input:focus,
.footer-form textarea:focus { background: rgba(255,255,255,0.16); }
.footer-form .btn-primary {
  width: 100%;
  background: var(--gold);
  color: var(--green-dark);
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.footer-form .btn-primary:hover { background: #dfb93a; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; opacity: 0.65; }
.payments { display: flex; gap: 8px; }
.payments span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .journey-track { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .journey-track::before { display: none; }
  .about-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 1024px) {
  :root { --side-gap: 24px; }
  .container { padding: 0 var(--side-gap); }
  .header-inner { padding: 10px var(--side-gap); }
  .founder-grid,
  .board-grid,
  .stores-grid,
  .about-intro-grid,
  .home-legacy-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro-media img { height: 280px; }
  .home-collage-main img { height: 240px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .board-card { grid-template-columns: 160px 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-hero,
  .page-banner { min-height: min(38vh, 320px); }
  .founder-main { height: 300px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .shop-grid,
  .shop-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --side-gap: 16px; }
  .container { padding: 0 var(--side-gap); }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 1.65rem; }

  .hamburger { display: flex; z-index: 1001; }
  .main-nav {
    position: fixed;
    top: 0; left: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: #fff;
    padding: 90px 28px 28px;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s;
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { left: 0; }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .main-nav a {
    font-size: 1rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,68,43,0.08);
  }
  .main-nav a::after { display: none; }
  .logo-text em { display: none; }
  .header-inner { padding: 8px var(--side-gap); }

  .about-hero,
  .page-banner {
    min-height: min(36vh, 300px);
    align-items: center;
  }
  .about-hero-content,
  .page-banner-content { padding: 32px var(--side-gap) 28px; }
  .about-hero .hero-brand,
  .page-banner .hero-brand { font-size: 1.35rem; }
  .about-hero h1,
  .page-banner h1 { font-size: 1.75rem; max-width: none; }
  .about-hero .hero-sub,
  .page-banner .hero-sub { font-size: 0.88rem; margin-bottom: 14px; }
  .about-hero .hero-cta,
  .page-banner .hero-cta {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    max-width: 100%;
  }
  .about-hero .hero-cta a,
  .page-banner .hero-cta a {
    text-align: center;
    width: auto;
    flex: 0 0 auto;
    min-width: auto;
    max-width: none;
    box-sizing: border-box;
    padding: 9px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: visible;
  }

  .about-top { padding: 28px 0 24px; }
  .about-top h1 { font-size: 1.75rem; }
  .about-top-lead { font-size: 0.88rem; }
  .about-intro-copy h2 { font-size: 1.7rem; }
  .about-intro-copy p { font-size: 0.88rem; }
  .about-intro-media img { height: 220px; }
  .about-intro-grid { gap: 28px; }

  .stats-bar { padding: 28px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat strong { font-size: 1.7rem; }
  .stat span { font-size: 0.72rem; }

  .founder-section { padding: 48px 0; }
  .founder-main { height: 240px; }
  .founder-copy h2 { font-size: 1.7rem; }
  .founder-copy p { font-size: 0.88rem; }
  .founder-thumbs img { height: 96px; }

  .journey-track { grid-template-columns: 1fr; gap: 22px; }
  .journey-item { text-align: left; padding: 0 0 0 4px; border-left: 3px solid var(--gold); padding-left: 16px; }
  .journey-year { margin-bottom: 10px; }

  .board-card { grid-template-columns: 1fr; }
  .board-card > img { min-height: 220px; height: 220px; }
  .board-body { padding: 20px 18px; }

  .mv-card { flex-direction: column; padding: 20px; gap: 14px; }
  .mv-card h3 { font-size: 1.25rem; }
  .mv-card p { font-size: 0.85rem; }

  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .value-card { padding: 22px 14px; }
  .certs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .stores-grid { grid-template-columns: 1fr; }
  .store-card img { height: 200px; }

  .about-benefits { padding: 28px 0; }
  .about-benefits-grid { grid-template-columns: 1fr; gap: 16px; }

  .about-cta { padding: 44px 0; }
  .about-cta h2 { font-size: 1.65rem; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns a { text-align: center; }

  .contact-grid { gap: 20px; }
  .info-card { padding: 24px 20px; }
  .contact-form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form h2 { font-size: 1.45rem; }

  .help-grid { grid-template-columns: 1fr; }
  .map-frame { height: 320px; }
  .map-overlay { bottom: 14px; padding: 16px 18px; }
  .map-overlay strong { font-size: 1.2rem; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 16px 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .whatsapp-fab { width: 50px; height: 50px; bottom: 18px; right: 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-img { height: 160px; }
  .shop-grid,
  .shop-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shop-card-img { height: 160px; }
}

@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; text-align: center; }
  .stat { padding: 8px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .shop-grid,
  .shop-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-img { height: 140px; }
  .shop-card-img { height: 140px; }
  .product-body { padding: 10px 10px 12px; }
  .product-body h3 { font-size: 0.88rem; }
  .product-body p { font-size: 0.72rem; }
  .btn-cart { font-size: 0.72rem; padding: 8px 10px; }
  .about-hero,
  .page-banner { min-height: 260px; }
  .about-hero h1,
  .page-banner h1 { font-size: 1.55rem; }
  .about-hero .hero-brand,
  .page-banner .hero-brand { font-size: 1.2rem; }
  .founder-main { height: 200px; }
  .values-grid,
  .certs-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 1.45rem; }
  .info-card h2 { font-size: 1.5rem; }
  .btn-primary, .btn-outline-light { width: 100%; text-align: center; }
  .cta-btns { width: 100%; }
  .cta-btns a { width: 100%; }
  .about-hero .hero-cta,
  .page-banner .hero-cta {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
  }
  .about-hero .hero-cta .btn-primary,
  .about-hero .hero-cta .btn-outline-light,
  .page-banner .hero-cta .btn-primary,
  .page-banner .hero-cta .btn-outline-light {
    width: auto;
    flex: 0 0 auto;
    min-width: auto;
    padding: 8px 12px;
    font-size: 0.58rem;
    letter-spacing: 0.015em;
  }
}


/* ========== PRODUCT PDP ========== */

/* ===== Product PDP (scoped) ===== */
body.page-product {
  --side-gap: 80px;
  --radius: 14px;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 68, 43, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(201, 162, 39, 0.08), transparent 45%),
    var(--cream);
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
code {
  background: rgba(0,68,43,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--green);
}

.container {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--side-gap);
  box-sizing: border-box;
}
.container.narrow { max-width: 860px; }
.section { padding: 72px 0; max-width: 100%; }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.section-head p,
.section-desc {
  color: var(--muted);
  margin: 12px auto 0;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 520px;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.leaf-icon {
  margin-bottom: 8px;
  animation: leafSway 5s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes leafSway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
.section-head.light h2,
.section-head.light p,
.section-head.light .section-label { color: #fff; }
.section-head.light p { opacity: 0.85; }
.section-head.light .section-label { color: var(--gold); opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Shared Header ===== */
.announcement-bar {
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  padding: 9px 0;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee 35s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,68,43,0.06);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: var(--page-max);
  width: 100%;
  margin: 0 auto;
  padding: 10px var(--side-gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--green);
}
.logo-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.main-nav ul { display: flex; gap: 28px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); transition: 0.25s;
}
.icon-btn:hover { background: var(--cream-dark); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  width: 16px; height: 16px; background: #c0392b; color: #fff;
  font-size: 0.6rem; font-weight: 700; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span { height: 2px; background: var(--green); border-radius: 2px; transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== PDP HERO ===== */
.pdp-hero {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 68, 43, 0.04), transparent 60%),
    var(--cream);
  padding: 36px 0 48px;
  max-width: 100%;
  overflow: hidden;
}

.pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  column-gap: 40px;
  row-gap: 28px;
  align-items: start;
  width: 100%;
  max-width: 100%;
}
.pdp-gallery {
  min-width: 0;
  width: 100%;
  max-width: none;
  justify-self: stretch;
}
.pdp-info {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ===== PDP GALLERY ===== */
.pdp-gallery {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow: visible;
}

.thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-width: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 68, 43, 0.06);
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  display: block;
}

.thumb.active,
.thumb:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 68, 43, 0.12);
}

.main-image-wrap {
  min-width: 0;
  width: 100%;
}

.main-image {
  position: relative;
  background: linear-gradient(160deg, #f3efe6, #faf7f1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.06);
  border: 1px solid rgba(0, 68, 43, 0.07);
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: none;
  cursor: zoom-in;
}

.main-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  background: #f7f4ee;
  transition: opacity 0.25s ease;
  padding: 16px;
  display: block;
  position: absolute;
  inset: 0;
}

.main-image img.switching { opacity: 0.4; }

.img-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--green);
  box-shadow: var(--shadow);
  z-index: 3;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.25s;
}

.main-image:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: var(--green); color: #fff; }
.gallery-arrow.prev { left: 12px; }
.gallery-arrow.next { right: 12px; }

.zoom-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 3;
  opacity: 0;
  transition: 0.25s;
}

.main-image:hover .zoom-hint { opacity: 1; }
.zoom-hint:hover { background: var(--green); color: #fff; }

.image-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,68,43,0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.04em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox[hidden] { display: none !important; }

.lightbox img {
  max-width: min(900px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  z-index: 2;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

/* Buy Box */
.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.breadcrumb a:hover { color: var(--green); }

.pdp-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pdp-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--green);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
  max-width: 42ch;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars { color: #e6a817; letter-spacing: 1px; font-size: 0.9rem; }
.stars.big { font-size: 1.3rem; }
.play-icon {
  display: inline-block;
  margin-left: 3px;
  font-size: 0.95rem;
  line-height: 1;
}

.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 68, 43, 0.2);
}

.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.rating-score { font-weight: 700; color: var(--green); font-size: 0.9rem; }
.review-link {
  font-size: 0.8rem;
  color: var(--green);
  text-decoration: underline;
}
.sold-badge {
  background: rgba(201, 162, 39, 0.15);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}
.mrp {
  font-size: 1.05rem;
  color: #999;
  text-decoration: line-through;
}
.save-tag {
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.benefit-list {
  margin-bottom: 22px;
}
.benefit-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 8px;
}
.benefit-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.option-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.pack-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.pack-card {
  position: relative;
  border: 1px solid rgba(0,68,43,0.1);
  border-radius: 16px;
  padding: 18px 14px 16px;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 68, 43, 0.05);
}
.pack-card input { display: none; }
.pack-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 68, 43, 0.1);
}
.pack-card.active {
  border-color: var(--green);
  background: #F7FBF8;
  box-shadow: 0 0 0 1px var(--green), 0 8px 24px rgba(0, 68, 43, 0.08);
}

.pack-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.pack-top strong { font-size: 0.85rem; color: var(--green); }
.pack-off {
  font-size: 0.68rem;
  font-weight: 700;
  color: #c0392b;
  background: #fdecea;
  padding: 2px 6px;
  border-radius: 4px;
}
.pack-mid {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.pack-bottom {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pack-price { font-size: 1.05rem; font-weight: 700; color: var(--green); }
.pack-day { font-size: 0.72rem; color: var(--muted); }

.best-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}

.btn-outline-green {
  padding: 14px 20px;
  border: 1.5px solid var(--green);
  background: transparent;
  color: var(--green);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-solid-green {
  padding: 14px 20px;
  background: var(--green);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-solid-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 68, 43, 0.2);
}

.free-ship-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 16px;
  text-align: center;
}

.usp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.usp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
  padding: 14px 8px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(0, 68, 43, 0.07);
  box-shadow: 0 4px 16px rgba(0, 68, 43, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.usp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 68, 43, 0.1);
  border-color: rgba(201, 162, 39, 0.35);
}
.usp svg {
  color: var(--gold);
  flex-shrink: 0;
}
.usp span {
  display: block;
  line-height: 1.25;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
}

.pincode-check { margin-bottom: 20px; }
.pincode-check label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 8px;
}
.pincode-row { display: flex; gap: 8px; }
.pincode-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,68,43,0.2);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: var(--white);
}
.pincode-row input:focus { border-color: var(--green); }
.pincode-row button {
  padding: 12px 20px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}
.pincode-msg {
  margin-top: 8px;
  font-size: 0.8rem;
  min-height: 1.2em;
}
.pincode-msg.ok { color: var(--green); }
.pincode-msg.err { color: #c0392b; }

.offers-box {
  background: var(--white);
  border: 1px solid rgba(0, 68, 43, 0.1);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 0;
  box-shadow: 0 4px 20px rgba(0, 68, 43, 0.05);
}
.offers-box summary {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  list-style: none;
}
.offers-box summary::-webkit-details-marker { display: none; }
.offers-box summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  font-size: 1.1rem;
}
.offers-box[open] summary::after { content: '-'; }
.offers-box ul { margin-top: 12px; }
.offers-box li {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 7px;
  padding-left: 14px;
  position: relative;
}
.offers-box li::before {
  content: '\25CF';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 5px;
}

/* Feature strip */
.feature-strip {
  background:
    linear-gradient(180deg, #EFEBE3 0%, #E8DFD0 100%);
  padding: 28px 0;
  border-top: 1px solid rgba(0, 68, 43, 0.08);
  border-bottom: 1px solid rgba(0, 68, 43, 0.08);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
}
.feature-item svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
  stroke: currentColor;
}
.feature-item span {
  letter-spacing: 0.02em;
}

/* Videos — cream like home sections */
.videos-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 68, 43, 0.04), transparent 60%),
    var(--cream);
  padding-top: 72px;
  padding-bottom: 72px;
}
.videos-section .section-head h2,
.videos-section .section-head p { color: inherit; }
.videos-section .section-head h2 { color: var(--green); }
.videos-section .section-head p { color: var(--muted); opacity: 1; }

.video-track-wrap,
.product-track-wrap { position: relative; }

.video-track,
.product-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}
.video-track::-webkit-scrollbar,
.product-track::-webkit-scrollbar { display: none; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  align-items: start;
}
.video-grid .video-card {
  min-width: 0;
  max-width: none;
  width: 100%;
}
.video-grid .video-thumb {
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.08);
  border: 1px solid rgba(0, 68, 43, 0.07);
}
.video-grid .play-btn {
  width: 56px;
  height: 56px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-grid .video-card:hover .play-btn {
  transform: scale(1.06);
  background: var(--gold);
  color: var(--green-dark);
}
.video-grid .video-card p {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.35;
}

.video-card { min-width: 220px; max-width: 220px; }
.video-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--green);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.video-card p {
  color: var(--green);
  font-size: 0.88rem;
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
}

.scroll-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  color: var(--green);
  box-shadow: var(--shadow);
  z-index: 3;
  font-size: 0.95rem;
}
.scroll-btn:hover { background: var(--green); color: #fff; }
.scroll-btn.left { left: -8px; }
.scroll-btn.right { right: -8px; }

/* Bestsellers */
.recent-section { background: var(--white); }
.also-viewed-section { background: var(--cream); }

.bought-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.bought-grid .mini-card {
  min-width: 0;
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.bought-grid .mini-card a {
  display: block;
}
.bought-grid .mini-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 0;
  background: linear-gradient(160deg, #f3efe6, #faf7f1);
  padding: 12px;
}
.bought-grid .mini-cart { margin-top: auto; }

.mini-card {
  min-width: 230px;
  max-width: 230px;
  background: var(--white);
  border-radius: 16px;
  padding: 0 0 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.06);
  border: 1px solid rgba(0, 68, 43, 0.07);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 68, 43, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
}
.mini-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 1;
}
.bought-grid .mini-card img,
.mini-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 0;
  margin-bottom: 0;
  background: linear-gradient(160deg, #f3efe6, #faf7f1);
  padding: 12px;
  transition: transform 0.5s ease;
}
.mini-card:hover img { transform: scale(1.06); }
.bought-grid .mini-card h3,
.mini-card h3,
.mini-card > p,
.mini-price,
.mini-cart {
  margin-left: 14px;
  margin-right: 14px;
}
.mini-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green);
  margin-top: 14px;
  margin-bottom: 4px;
  font-weight: 600;
}
.mini-card > p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
  min-height: 2.2em;
  line-height: 1.45;
}
.mini-price {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 10px;
}
.mini-price span { font-weight: 700; color: var(--green); }
.mini-price s { font-size: 0.8rem; color: #999; }
.mini-cart {
  width: calc(100% - 28px);
  background: var(--green);
  color: #fff;
  padding: 11px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s ease;
}
.mini-cart:hover { background: var(--green-dark); }

/* How it works */
.how-it-works {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201, 162, 39, 0.1), transparent 55%),
    linear-gradient(160deg, #0a5c3a 0%, #00442B 50%, #003320 100%);
  padding: 72px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.35s ease, background 0.35s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.step-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  padding: 16px 18px 6px;
}
.step-card p {
  font-size: 0.85rem;
  opacity: 0.85;
  padding: 0 18px 20px;
  line-height: 1.6;
}

/* Ingredients deep dive */
.ingredients-deep {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 68, 43, 0.04), transparent 60%),
    var(--cream);
}
.ingredient-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}
.ing-center img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--cream-dark);
}
.ing-item {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--cream);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.ing-item img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ing-item strong {
  display: block;
  color: var(--green);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.ing-item p { font-size: 0.78rem; color: var(--muted); }
.ing-list.right .ing-item { flex-direction: row-reverse; text-align: right; }

/* Results */
.results-section {
  background: var(--green-dark);
  padding: 70px 0;
  color: #fff;
}
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.results-copy h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.results-copy p {
  opacity: 0.85;
  margin-bottom: 16px;
  font-size: 0.92rem;
}
.results-copy li {
  font-size: 0.88rem;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  opacity: 0.9;
}
.results-copy li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.chart-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}
.chart-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
}
.bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 200px;
  gap: 16px;
}
.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 8px;
}
.bar {
  width: 100%;
  max-width: 48px;
  height: var(--h);
  background: linear-gradient(180deg, var(--gold), #a8841a);
  border-radius: 8px 8px 4px 4px;
  animation: growBar 1s ease forwards;
  transform-origin: bottom;
}
@keyframes growBar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
.bar-col span { font-size: 0.78rem; opacity: 0.8; }
.chart-note {
  text-align: center;
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 16px;
}

/* Experts */
.experts { background: var(--cream); }
.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.expert-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.06);
  border: 1px solid rgba(0, 68, 43, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.expert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 68, 43, 0.12);
  border-color: rgba(201, 162, 39, 0.35);
}
.expert-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.expert-body { padding: 16px; }
.expert-body p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.55;
  min-height: 5.5em;
}
.expert-body strong {
  display: block;
  font-size: 0.88rem;
  color: var(--green);
}
.expert-body span {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Reviews */
.reviews {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 68, 43, 0.03), transparent 60%),
    var(--cream);
}
.reviews-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.rating-summary {
  background: var(--cream);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.big-score {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
}
.rating-summary > p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 8px 0 18px;
}
.bars-breakdown { text-align: left; }
.rb {
  display: grid;
  grid-template-columns: 28px 1fr 36px;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.75rem;
}
.rb-track {
  height: 8px;
  background: #e5e5e5;
  border-radius: 4px;
  overflow: hidden;
}
.rb-track i {
  display: block;
  height: 100%;
  background: var(--gold);
}
.rb em { font-style: normal; color: var(--muted); text-align: right; }

.review-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.06);
  border: 1px solid rgba(0, 68, 43, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 68, 43, 0.1);
}
.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.review-top strong {
  display: block;
  font-size: 0.85rem;
  color: var(--green);
}
.review-card > p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* FAQ + Additional info (side by side) */
.info-faq {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 68, 43, 0.03), transparent 60%),
    var(--cream);
}
.info-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}
.additional-info-col,
.faq-col {
  min-width: 0;
}
.section-head.side {
  text-align: left;
  margin-bottom: 24px;
}
.section-head.side .section-desc,
.section-head.side p.section-label {
  margin-left: 0;
}
.section-head.side h2 {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid rgba(0,68,43,0.08);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green);
}
.faq-q i {
  font-style: normal;
  font-size: 1.3rem;
  font-weight: 400;
  transition: 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-q { background: var(--cream-dark); }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.active .faq-a { max-height: 220px; }
.faq-a p {
  padding: 0 20px 18px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.7;
}

.info-table {
  background: var(--white);
  border-radius: 16px;
  padding: 8px 22px;
  border: 1px solid rgba(0, 68, 43, 0.07);
  box-shadow: 0 4px 24px rgba(0, 68, 43, 0.05);
}
.info-table > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,68,43,0.08);
  font-size: 0.88rem;
}
.info-table > div:last-child { border-bottom: none; }
.info-table span { color: var(--muted); }
.info-table strong { color: var(--green); font-weight: 600; }

/* Sticky buy */
.sticky-buy {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 12px 16px;
  z-index: 900;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-price strong {
  display: block;
  color: var(--green);
  font-size: 1.1rem;
}
.sticky-price span { font-size: 0.75rem; color: var(--muted); }
.sticky-buy .btn-solid-green { flex: 0 0 auto; padding: 12px 24px; }

/* ===== FOOTER (same as Home) ===== */
.site-footer {
  background: var(--green-dark);
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  padding: 56px 24px 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.footer-logo span {
  font-size: 0.7rem;
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 8px;
  line-height: 1.6;
}

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

.socials {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.socials a:hover { background: var(--gold); color: var(--green-dark); }

.licenses {
  font-size: 0.7rem !important;
  opacity: 0.55 !important;
}

.footer-links h4,
.footer-form h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-form h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.footer-links li { margin-bottom: 9px; }

.footer-links a {
  font-size: 0.82rem;
  opacity: 0.8;
  transition: 0.25s ease;
}

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

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-radius: 6px;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
  outline: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder { color: rgba(255,255,255,0.55); }

.footer-form input:focus,
.footer-form textarea:focus {
  background: rgba(255,255,255,0.16);
}

.footer-form .btn-primary {
  width: 100%;
  background: var(--gold);
  color: var(--green-dark);
  margin-top: 4px;
  border: none;
  cursor: pointer;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-form .btn-primary:hover { background: #dfb93a; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  opacity: 0.65;
}

.payments {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payments span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===== Responsive (Product PDP) ===== */
@media (max-width: 1024px) {
  body.page-product { --side-gap: 40px; }
  .container { padding: 0 var(--side-gap); }
  .header-inner { padding: 10px var(--side-gap); }
  .pdp-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 28px; }
  .pdp-gallery,
  .pdp-info { grid-column: auto; max-width: 100%; }
  .pdp-gallery {
    position: static;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  .main-image {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: none;
    max-width: 100%;
  }
  .gallery-arrow { opacity: 1; }
  .zoom-hint { opacity: 1; }
  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .bought-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .experts-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-layout { grid-template-columns: 1fr; }
  .ing-center { order: -1; max-width: 260px; margin: 0 auto 20px; }
  .ing-list.right .ing-item { flex-direction: row; text-align: left; }
  .results-grid { grid-template-columns: 1fr; gap: 28px; }
  .reviews-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body.page-product { --side-gap: 20px; }
  html, body { max-width: 100%; overflow-x: hidden; }
  .container { padding: 0 var(--side-gap); }
  .section { padding: 40px 0; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 1.45rem; }
  .section-head p { font-size: 0.84rem; padding: 0 4px; }
  .pdp-hero { padding: 12px 0 24px; }
  .videos-section { padding-top: 44px; padding-bottom: 44px; }
  .how-it-works { padding: 44px 0; }

  .hamburger { display: flex; z-index: 1001; }
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: #fff;
    padding: 90px 28px 28px;
    box-shadow: var(--shadow-lg);
    transition: left 0.3s;
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { left: 0; }
  .main-nav ul { flex-direction: column; gap: 6px; }
  .main-nav a {
    font-size: 1rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,68,43,0.08);
  }
  .main-nav a::after { display: none; }
  .logo-text em { display: none; }
  .header-inner {
    padding: 8px var(--side-gap);
    gap: 8px;
  }
  .icon-btn { width: 36px; height: 36px; }

  .pdp-gallery {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .main-image {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 360px;
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
  }
  .main-image img {
    padding: 8px;
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
  .thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }
  .thumbs::-webkit-scrollbar { height: 3px; }
  .thumbs::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 4px; }
  .thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    aspect-ratio: auto;
    border-radius: 8px;
    scroll-snap-align: start;
  }
  .gallery-arrow {
    opacity: 1;
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  .zoom-hint { opacity: 1; width: 34px; height: 34px; }
  .image-counter {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .pdp-info h1 {
    font-size: clamp(1.4rem, 6.5vw, 1.7rem);
    line-height: 1.2;
  }
  .subtitle { font-size: 0.82rem; margin-bottom: 10px; }
  .current-price { font-size: 1.5rem; }
  .price-block { gap: 8px; margin-bottom: 14px; }
  .mrp { font-size: 0.95rem; }
  .save-tag { font-size: 0.68rem; }

  .pack-options { grid-template-columns: 1fr; gap: 12px; }
  .pack-card { padding: 16px 14px; }
  .best-tag { font-size: 0.62rem; }
  .usp-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .usp { font-size: 0.68rem; padding: 10px 6px; }
  .usp svg { width: 20px; height: 20px; }
  .cta-row { grid-template-columns: 1fr; gap: 10px; }
  .btn-outline-green,
  .btn-solid-green {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.84rem;
    text-align: center;
  }

  .feature-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feature-item {
    font-size: 0.72rem;
    padding: 10px 6px;
    gap: 8px;
  }
  .feature-item svg { width: 32px; height: 32px; }

  .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .video-grid .video-card { min-width: 0; max-width: none; }
  .video-grid .play-btn { width: 44px; height: 44px; }
  .video-grid .video-card p { font-size: 0.75rem; }

  .bought-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .bought-grid .mini-card { min-width: 0; max-width: none; padding: 10px; }
  .bought-grid .mini-card img { height: 130px; }
  .bought-grid .mini-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .bought-grid .mini-card h3 { font-size: 0.95rem; }
  .bought-grid .mini-card > p { font-size: 0.7rem; min-height: 0; }
  .mini-cart { font-size: 0.72rem; padding: 9px; }

  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card img { height: 160px; }
  .review-cards { grid-template-columns: 1fr; }
  .experts-grid { grid-template-columns: 1fr; }
  .expert-card > img { height: 200px; }
  .ingredient-layout { gap: 16px; }
  .ing-center { max-width: 200px; }
  .info-faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-head.side { text-align: center; }
  .section-head.side .section-label { text-align: center; }
  .info-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .faq-q { padding: 14px 16px; font-size: 0.85rem; }
  .bars { height: 140px; gap: 8px; }
  .results-copy h2 { font-size: 1.45rem; }
  .chart-card { padding: 16px 12px; }
  .offers-box { padding: 12px 14px; }

  .sticky-buy {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px var(--side-gap);
    gap: 10px;
    align-items: center;
  }
  .sticky-buy .sticky-info,
  .sticky-buy .sticky-price {
    flex: 1;
    min-width: 0;
  }
  .sticky-buy .sticky-price strong,
  .sticky-buy .sticky-info strong { font-size: 0.95rem; }
  .sticky-buy .btn-solid-green {
    flex: 0 0 auto;
    width: auto;
    padding: 12px 16px;
    white-space: nowrap;
    font-size: 0.78rem;
  }
  .whatsapp-fab {
    bottom: 18px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  body.sticky-buy-on .whatsapp-fab {
    bottom: 78px;
    right: 12px;
  }
  body { padding-bottom: 0; }
  body.sticky-buy-on { padding-bottom: 78px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 16px 28px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .payments { justify-content: center; }
  .footer-form input,
  .footer-form textarea { width: 100%; }
  .scroll-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .scroll-btn.left { left: 0; }
  .scroll-btn.right { right: 0; }
  .lightbox { padding: 16px; }
}

@media (max-width: 520px) {
  body.page-product { --side-gap: 16px; }
  .announcement-bar { font-size: 0.65rem; padding: 8px 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .usp-row { grid-template-columns: 1fr 1fr; }
  .experts-grid { grid-template-columns: 1fr; }
  .current-price { font-size: 1.35rem; }
  .main-image {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 300px;
  }
  .pdp-info h1 { font-size: 1.35rem; }
  .main-image {
    border-radius: 12px;
  }
  .lightbox { padding: 10px; }
  .lightbox-arrow { width: 36px; height: 36px; }
  .lightbox-arrow.prev { left: 6px; }
  .lightbox-arrow.next { right: 6px; }
  .section-head h2 { font-size: 1.3rem; }
  .chart-card { padding: 14px 10px; }
  .video-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bought-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bought-grid .mini-card img { height: 110px; }
  .feature-item span { font-size: 0.68rem; }
  .sticky-buy .btn-solid-green { padding: 11px 14px; font-size: 0.76rem; }
  .pack-top strong { font-size: 0.82rem; }
  .pack-price { font-size: 1rem; }
}

