@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Cormorant+SC:wght@400;600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Variables ── */
:root {
  --forest:    #1a4d2e;
  --leaf:      #4caf50;
  --amber:     #f59e0b;
  --earth:     #3d1c02;
  --cream:     #fdf6e3;
  --card:      #fffef8;
  --bright:    #76c442;
  --muted:     #5a6e4a;
  --border:    rgba(76, 175, 80, 0.22);
  --border-amber: rgba(245, 158, 11, 0.3);
  --shadow:    0 4px 32px rgba(26, 77, 46, 0.13);
  --shadow-hover: 0 16px 56px rgba(26, 77, 46, 0.24);
  --radius:    16px;
  --header-h:  76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--earth);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

.section-label {
  font-family: 'Cormorant SC', serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Helpers ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--forest), #2d7a3a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26, 77, 46, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #13391f, var(--forest));
  box-shadow: 0 8px 32px rgba(26, 77, 46, 0.55);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1db954;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(253, 246, 227, 0.72);
  border-bottom: 1.5px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s, background 0.3s, border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(253, 246, 227, 0.95);
  box-shadow: 0 4px 24px rgba(26, 77, 46, 0.12);
  border-bottom-color: rgba(76, 175, 80, 0.4);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.logo-tagline {
  display: block;
  width: 100%;
  font-family: 'Playfair Display', serif;
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--amber) 0%, var(--bright) 60%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-top: -3px;
  padding-left: 2px;
  text-shadow: none;
}
.logo-mark { flex-shrink: 0; }
.logo-img-fallback { display: none; }
.logo-img { height: 48px; width: auto; object-fit: contain; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--earth);
}
.logo-text span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  font-family: 'Cormorant SC', serif;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(to right, var(--leaf), var(--bright));
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover { color: var(--forest); }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
  width: 32px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--earth);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px max(24px, calc((100vw - 1180px)/2 + 24px));
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d2b15 0%, #1a4d2e 40%, #0a1f0e 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(13, 43, 21, 0.88) 0%,
    rgba(13, 43, 21, 0.82) 38%,
    rgba(13, 43, 21, 0.55) 62%,
    rgba(13, 43, 21, 0.18) 100%
  );
  pointer-events: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(118, 196, 66, 0.15);
  border: 1px solid rgba(118, 196, 66, 0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: italic;
  color: var(--bright);
  text-shadow: 0 0 40px rgba(118,196,66,0.5);
}

.brand-motto {
  font-family: 'Cormorant SC', serif;
  font-size: 1rem;
  letter-spacing: 0.26em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.92;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.78;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-bottle-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

/* Organic blob background */
.hero-blob {
  position: absolute;
  inset: -32px;
  border-radius: 62% 38% 46% 54% / 52% 48% 52% 48%;
  background: radial-gradient(ellipse, rgba(76, 175, 80, 0.22) 0%, rgba(118, 196, 66, 0.08) 60%, transparent 80%);
  animation: blob-morph 8s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 62% 38% 46% 54% / 52% 48% 52% 48%; }
  33%       { border-radius: 46% 54% 62% 38% / 48% 52% 48% 52%; }
  66%       { border-radius: 54% 46% 38% 62% / 52% 48% 54% 46%; }
}

.hero-ring {
  position: absolute;
  inset: -12px;
  border: 1.5px dashed rgba(245, 158, 11, 0.35);
  border-radius: 290px 290px 210px 210px;
  z-index: 0;
  animation: spin 36s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-bottle-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 280px 280px 200px 200px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(118, 196, 66, 0.3);
  position: relative; z-index: 1;
  animation: float 5s ease-in-out infinite;
}
.hero-bottle-fallback {
  width: 100%;
  height: 520px;
  border-radius: 280px 280px 200px 200px;
  background: linear-gradient(145deg, rgba(76,175,80,0.2), rgba(118,196,66,0.15));
  display: none;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  left: -24px;
  background: rgba(253, 246, 227, 0.97);
  border: 1px solid var(--border-amber);
  border-radius: var(--radius);
  padding: 12px 18px;
  box-shadow: 0 8px 32px rgba(26, 77, 46, 0.2);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}
.hero-badge .text { font-size: 0.75rem; color: var(--muted); }
.hero-badge .text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--earth);
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--earth);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.trust-shimmer {
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.18), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -80px; }
  100% { left: 110%; }
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative; z-index: 1;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { transform: translateY(-4px); }
.trust-icon { line-height: 0; }
.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════ */
.products-section {
  background: linear-gradient(175deg, var(--cream) 0%, #f3ecd0 50%, var(--cream) 100%);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 { color: var(--forest); margin-bottom: 10px; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--border-amber);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  transform-origin: center center;
  will-change: transform;
}
.product-card:hover { box-shadow: var(--shadow-hover); }

/* Colour top stripe per card */
.product-card:nth-child(1) { border-top: 4px solid var(--amber); }
.product-card:nth-child(2) { border-top: 4px solid #e8a000; }
.product-card:nth-child(3) { border-top: 4px solid var(--forest); }
.product-card:nth-child(4) { border-top: 4px solid #7a4a20; }
.product-card:nth-child(5) { border-top: 4px solid var(--bright); }

.product-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img { transform: scale(1.07); }

.img-fallback {
  position: absolute; inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8dfc8, #d4c8a8);
}

.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--amber), #e8900a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
}

.product-card-body {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.product-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(26, 77, 46, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(26, 77, 46, 0.1);
}
.price-size {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
}
.product-card .btn-whatsapp {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  font-size: 0.88rem;
  padding: 12px 20px;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-section {
  background: linear-gradient(160deg, #0d2b15 0%, var(--forest) 50%, #0a1f0e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(118,196,66,0.05)' stroke-width='40'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 140px;
}
.process-section .section-header h2 { color: #fff; }
.process-section .section-header p { color: rgba(255,255,255,0.65); }
.process-section .section-label { color: rgba(245,158,11,0.9); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(to right, rgba(118,196,66,0.4), rgba(245,158,11,0.4), rgba(118,196,66,0.4));
}

.process-step {
  text-align: center;
  padding: 0 28px;
  position: relative;
}
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant SC', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  position: relative; z-index: 1;
  transition: all 0.3s;
  background: rgba(255,255,255,0.06);
}
.process-step:nth-child(1) .step-number { background: rgba(245,158,11,0.25); border-color: rgba(245,158,11,0.6); color: #fbbf24; }
.process-step:nth-child(2) .step-number { background: rgba(118,196,66,0.2); border-color: rgba(118,196,66,0.55); color: var(--bright); }
.process-step:nth-child(3) .step-number { background: rgba(76,175,80,0.2); border-color: rgba(76,175,80,0.55); color: #a5d6a7; }
.process-step:hover .step-number { transform: scale(1.12); filter: brightness(1.2); }

.step-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.7; }

/* ═══════════════════════════════════════
   QUOTE BANNER
═══════════════════════════════════════ */
.quote-banner {
  background: linear-gradient(160deg, var(--earth) 0%, #5a2a08 50%, var(--earth) 100%);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(245,158,11,0.1), transparent 65%);
  pointer-events: none;
}
.qb-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative; z-index: 1;
}
.qb-ornament { line-height: 0; }
.qb-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.5), transparent);
}
.qb-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(253, 246, 227, 0.92);
  line-height: 1.72;
  border: none;
  margin: 0;
  padding: 0 16px;
}
.qb-brand {
  font-family: 'Cormorant SC', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--amber);
  text-transform: uppercase;
  opacity: 0.82;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-section {
  background: linear-gradient(160deg, var(--cream) 0%, #f0e8d0 55%, var(--cream) 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 { color: var(--forest); margin-bottom: 20px; }
.about-content p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
  margin-bottom: 28px;
}
.about-checks { display: flex; flex-direction: column; gap: 14px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--earth);
  font-weight: 500;
}
.check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-frame {
  position: relative;
  border-radius: 20px;
  width: 100%;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 2px dashed rgba(76,175,80,0.35);
  border-radius: 26px;
  z-index: -1;
}
.about-village-img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26, 77, 46, 0.25);
  border: 2px solid rgba(76, 175, 80, 0.22);
}
.about-img-fallback {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    rgba(26,77,46,0.08),
    rgba(245,158,11,0.12),
    rgba(118,196,66,0.08),
    rgba(26,77,46,0.08)
  );
  display: none;
  align-items: center;
  justify-content: center;
}
.about-img-fallback.show { display: flex; }
.about-center-text {
  text-align: center;
  font-family: 'Playfair Display', serif;
}
.about-center-text .big-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  display: block;
}
.about-center-text .big-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-family: 'Cormorant SC', serif;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  background: linear-gradient(175deg, #f0f7ea 0%, var(--cream) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--leaf);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
/* Unique left border per card */
.testimonial-card:nth-child(1) { border-left-color: var(--amber); }
.testimonial-card:nth-child(2) { border-left-color: var(--forest); }
.testimonial-card:nth-child(3) { border-left-color: var(--bright); }
.testimonial-card:nth-child(4) { border-left-color: #7a4a20; }
.testimonial-card:nth-child(5) { border-left-color: #1a385a; }
.testimonial-card:nth-child(6) { border-left-color: var(--leaf); }

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--leaf);
  opacity: 0.35;
  display: block;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.93rem;
  color: var(--earth);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card:nth-child(1) .author-avatar { background: linear-gradient(135deg, var(--amber), #d97706); }
.testimonial-card:nth-child(3) .author-avatar { background: linear-gradient(135deg, var(--bright), var(--leaf)); }
.testimonial-card:nth-child(4) .author-avatar { background: linear-gradient(135deg, #7a4a20, #a0622a); }
.testimonial-card:nth-child(5) .author-avatar { background: linear-gradient(135deg, #1a385a, #285888); }
.author-info .name { font-weight: 700; font-size: 0.88rem; color: var(--earth); }
.author-info .city { font-size: 0.78rem; color: var(--muted); }
.star-row { color: var(--amber); font-size: 0.75rem; letter-spacing: 2px; margin-bottom: 4px; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section {
  background: linear-gradient(160deg, #0a1c10 0%, #112818 35%, var(--forest) 65%, #244e3a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,158,11,0.12), transparent 60%);
}
.contact-section .section-label { color: rgba(245,158,11,0.9); }
.contact-section h2 { color: #fff; margin-bottom: 14px; }
.contact-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin: 0 auto 44px;
}
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.wa-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 18px 44px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.wa-btn-large:hover {
  background: #1db954;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 44px rgba(37,211,102,0.55);
}
.wa-icon { flex-shrink: 0; }
.contact-phone {
  font-size: 1.35rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.06em;
}
.contact-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(160deg, #080e07, #0d1f0d);
  color: rgba(255,248,240,0.65);
  padding: 52px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer-leaf-watermark {
  position: absolute;
  bottom: -60px; right: -60px;
  opacity: 0.5;
  pointer-events: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-text { color: rgba(255,248,240,0.88); }
.footer-brand .logo-text span { color: rgba(255,248,240,0.4); }
.footer-tagline {
  font-size: 1rem;
  color: rgba(255,248,240,0.75);
  letter-spacing: 0.12em;
  font-family: 'Cormorant SC', serif;
  margin-top: 12px;
}
.footer-logo-img { height: 90px; width: auto; object-fit: contain; }
.footer-address { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; font-size: 0.82rem; color: rgba(255,248,240,0.55); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,248,240,0.45);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,248,240,0.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: rgba(255,248,240,0.28);
}

/* ── Blog ── */
.blog-section { background: var(--cream); }
.blog-section .section-label,
.blog-section h2 { text-align: center; display: block; }
.blog-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 56px;
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--leaf);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.blog-card:nth-child(2) { border-top-color: var(--amber); }
.blog-card-tag {
  display: inline-block;
  background: rgba(76,175,80,0.12);
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  width: fit-content;
}
.blog-card:nth-child(2) .blog-card-tag {
  background: rgba(245,158,11,0.12);
  color: #92400e;
}
.blog-card h3 { color: var(--forest); line-height: 1.35; }
.blog-date {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.75;
}
.blog-body {
  font-size: 0.93rem;
  color: var(--earth);
  line-height: 1.85;
}
.blog-read-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--leaf);
  letter-spacing: 0.02em;
  transition: color 0.2s, gap 0.2s;
}
.blog-read-more:hover { color: var(--forest); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(253, 246, 227, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(26, 77, 46, 0.1);
    padding: 8px 0;
    z-index: 99;
  }
  .nav-menu.open { display: flex; }
  .nav-link {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-link::after { display: none; }
  .nav-menu .btn { margin: 12px 24px; width: calc(100% - 48px); justify-content: center; }
  .nav-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 24px 40px;
    text-align: center;
  }
  .hero-content { padding: 0; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-bottle-img, .hero-bottle-fallback { height: 340px; }
  .hero-badge { display: none; }
  .hero-overlay {
    background: linear-gradient(160deg, rgba(13,43,21,0.9) 0%, rgba(13,43,21,0.88) 100%);
  }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-steps::before { display: none; }

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 300px; margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .blog-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  h1 { font-size: 2.3rem; }
}

/* ═══════════════════════════════════════
   NEW V2 STYLES
═══════════════════════════════════════ */

/* ── CSS additions ── */
:root {
  --gold-deep: #b7791f;
  --wa-green:  #25D366;
  --warm-tint: #fef9f0;
}

/* ── Promo bar ── */
.promo-bar {
  background: var(--forest);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 101;
}
.promo-bar-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.promo-sep { opacity: 0.35; }
.promo-bar a { color: var(--amber); text-decoration: underline; }

/* Push header below promo bar */
.site-header { top: 37px; }

/* ── Hero Telugu subtitle ── */
.hero-telugu {
  font-family: 'Noto Sans Telugu', 'DM Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

/* ── Trust bar 5-column ── */
.trust-grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ── Category tabs ── */
.category-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 36px;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.cat-tab:hover { border-color: var(--leaf); color: var(--forest); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--forest), #2d7a3a);
  border-color: var(--forest);
  color: #fff;
}

/* Product grid — hidden cards */
.product-card.hidden { display: none; }

/* ── Product card enhancements ── */
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--amber), #e8900a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(245,158,11,0.4);
}
.fresh-chip {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(26,77,46,0.88);
  color: rgba(255,255,255,0.92);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}
.product-telugu {
  font-size: 0.82rem;
  color: var(--amber);
  font-style: italic;
  margin-bottom: 8px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}
.product-rating .stars { color: var(--amber); letter-spacing: 1px; }
.product-rating .rating-val { font-weight: 700; color: var(--earth); }
.product-rating .rating-count { color: var(--muted); }
.product-sold {
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ── Variant chips ── */
.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.variant-chip {
  background: rgba(26,77,46,0.06);
  border: 1.5px solid rgba(26,77,46,0.18);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.variant-chip:hover { border-color: var(--leaf); color: var(--forest); }
.variant-chip.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.chip-price { font-weight: 700; color: inherit; }

/* ── Why Choose section ── */
.why-section { background: var(--warm-tint); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; line-height: 1; }
.why-card h3 { color: var(--forest); font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── Chekku Heritage ── */
.chekku-section {
  background: linear-gradient(160deg, #0d2b15 0%, #1a4d2e 50%, #0a1f0e 100%);
  position: relative;
  overflow: hidden;
}
.chekku-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,158,11,0.1), transparent 60%);
}
.chekku-inner { padding: 96px 0; position: relative; z-index: 1; }
.chekku-content { max-width: 680px; }
.chekku-telugu {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  color: var(--amber);
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1;
}
.chekku-content h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1.25;
}
.chekku-content p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 560px;
}
.btn-lg-wa {
  padding: 15px 36px;
  font-size: 1rem;
}

/* ── Explore by Oil ── */
.explore-section {
  background: linear-gradient(175deg, var(--cream) 0%, var(--warm-tint) 100%);
}
.explore-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 36px;
  scrollbar-width: none;
}
.explore-tabs::-webkit-scrollbar { display: none; }
.explore-tab {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.explore-tab:hover { border-color: var(--leaf); color: var(--forest); }
.explore-tab.active { background: linear-gradient(135deg, var(--forest), #2d7a3a); border-color: var(--forest); color: #fff; }

.explore-panel { display: none; animation: fadeIn 0.3s ease; }
.explore-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.explore-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.explore-img-col img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.explore-info-col {
  padding: 36px 36px 36px 0;
}
.explore-info-col h3 {
  font-size: 1.7rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.explore-telugu {
  font-size: 0.92rem;
  color: var(--amber);
  font-style: italic;
  margin-bottom: 14px;
}
.explore-benefit {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.explore-variants { display: flex; flex-direction: column; gap: 10px; }
.explore-variant {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  background: rgba(26,77,46,0.05);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.ev-size { font-size: 0.88rem; font-weight: 600; color: var(--earth); flex: 1; }
.ev-price { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--gold-deep); }
.btn-sm { padding: 7px 16px !important; font-size: 0.78rem !important; }

/* ── Combos section ── */
.combos-section {
  background: linear-gradient(175deg, #0d2b15 0%, #1a4d2e 60%, #0a1f0e 100%);
}
.combos-section .section-header h2 { color: #fff; }
.combos-section .section-header p { color: rgba(255,255,255,0.65); }
.combos-section .section-label { color: rgba(245,158,11,0.9); }
.combos-section .section-divider::before,
.combos-section .section-divider::after { background: rgba(245,158,11,0.3); }

.combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.combo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(4px);
  transition: transform 0.25s, box-shadow 0.25s;
}
.combo-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.combo-badge {
  position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), #e8900a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.combo-badge-green { background: linear-gradient(135deg, var(--leaf), #2d7a3a); }
.combo-badge-earth { background: linear-gradient(135deg, #7a4a20, #5c3010); }
.combo-emoji { font-size: 2.4rem; margin: 16px 0 10px; }
.combo-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.combo-card p { font-size: 0.86rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 16px; }
.combo-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.combo-items span {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: 6px;
}
.combo-items span:nth-child(even) { background: none; color: var(--amber); font-size: 1rem; }
.combo-wa-btn { width: 100%; justify-content: center; font-size: 0.85rem; }

/* ── Testimonials carousel ── */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonials-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.testimonial-slide {
  display: none;
  animation: fadeIn 0.4s ease;
}
.testimonial-slide.active { display: block; }
.carousel-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--forest);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.carousel-btn:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.carousel-dot.active { background: var(--forest); width: 22px; border-radius: 4px; }

/* ── How to Order strip ── */
.how-to-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hto-step {
  text-align: center;
  position: relative;
}
.hto-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
}
.hto-icon { font-size: 2rem; margin-bottom: 6px; }
.hto-text { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500; }
.hto-arrow { font-size: 1.5rem; color: var(--amber); opacity: 0.7; }

/* ── WhatsApp FAB ── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 999;
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: all 0.25s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.wa-fab.visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-fab:hover { background: #1db954; transform: translateY(-3px) scale(1.04); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }

/* ── Footer WA opt-in ── */
.footer-wa-optin {
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(255,248,240,0.5);
  line-height: 1.6;
}
.footer-wa-optin strong { color: rgba(255,248,240,0.8); }

/* ═══════════════════════════════════════
   NEW RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .combos-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .trust-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .combos-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .explore-panel-inner { grid-template-columns: 1fr; }
  .explore-img-col img { height: 220px; }
  .explore-info-col { padding: 24px; }
  .hto-arrow { display: none; }
  .how-to-order { gap: 24px; }
  .carousel-btn { display: none; }
}

@media (max-width: 640px) {
  .promo-bar .promo-sep { display: none; }
  .promo-bar-inner { flex-direction: column; gap: 4px; }
  .trust-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .chekku-telugu { font-size: 2.2rem; }
  .site-header { top: 56px; }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  h1 { font-size: 2.3rem; }
  .products-grid { grid-template-columns: 1fr; }
  .wa-fab { bottom: 16px; right: 16px; padding: 10px 16px 10px 14px; font-size: 0.82rem; }
}

/* ════════════════════════════════════════════
   PRODUCT CARD UPDATES
════════════════════════════════════════════ */
.product-name-link { cursor: pointer; }
.product-name-link:hover { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

.product-view-details {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--forest);
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--forest);
  padding-bottom: 1px;
}
.product-view-details:hover { color: var(--amber); border-color: var(--amber); }

.product-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.product-card-actions .btn { flex: 1; justify-content: center; font-size: 0.78rem; padding: 9px 10px; }

/* ════════════════════════════════════════════
   ADD TO CART BUTTON
════════════════════════════════════════════ */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--forest);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-add-cart:hover { background: #2d7a3a; transform: translateY(-1px); }
.btn-add-cart:active { transform: translateY(0); }
.btn-add-cart svg { flex-shrink: 0; }

/* ════════════════════════════════════════════
   CART ICON IN HEADER
════════════════════════════════════════════ */
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  color: var(--forest);
  display: flex;
  align-items: center;
  border-radius: 8px;
  transition: background 0.15s;
}
.cart-icon-btn:hover { background: rgba(26,77,46,0.08); }
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #e53e3e;
  color: #fff;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}

/* ════════════════════════════════════════════
   PRODUCT DETAIL MODAL
════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 12, 0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

.modal-panel {
  background: var(--card);
  border-radius: 20px;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: modalSlideUp 0.25s ease;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-scroll {
  overflow-y: auto;
  max-height: 90vh;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(26,77,46,0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: rgba(26,77,46,0.2); }

.modal-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 480px;
}

.modal-img-col {
  background: linear-gradient(160deg, #f0f8f0 0%, #e8f5e9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-radius: 20px 0 0 20px;
}
.modal-img-wrap {
  position: relative;
  width: 100%;
  max-width: 260px;
}
.modal-product-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(26,77,46,0.18);
}
.modal-img-fallback {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  background: linear-gradient(160deg, #c8e6c9, #a5d6a7);
  display: none;
}
.modal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.modal-info-col {
  padding: 40px 36px 32px;
  overflow-y: auto;
  max-height: 90vh;
}
.modal-product-name {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--earth);
  margin-bottom: 4px;
}
.modal-telugu {
  font-size: 0.95rem;
  color: var(--amber);
  font-style: italic;
  margin-bottom: 10px;
  font-family: 'Noto Sans Telugu', 'DM Sans', sans-serif;
}
.modal-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.modal-stars { font-size: 1rem; color: var(--amber); }
.modal-desc {
  font-size: 0.93rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 16px;
}

/* Benefits pills */
.modal-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.benefit-pill {
  background: rgba(26,77,46,0.09);
  color: var(--forest);
  border: 1px solid rgba(26,77,46,0.18);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* How It's Made grid */
.modal-how-made {
  background: var(--warm-tint, #fef9f0);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 22px;
  border: 1px solid var(--border-amber);
}
.how-made-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.how-made-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.how-made-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.how-made-icon {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.how-made-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.how-made-text strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--earth);
}
.how-made-text span {
  font-size: 0.72rem;
  color: #666;
  line-height: 1.4;
}

/* Modal variant chips */
.modal-variants-section { margin-bottom: 16px; }
.modal-variants-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  margin-bottom: 8px;
}
.modal-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-chip {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--earth);
}
.modal-chip .chip-price { color: var(--muted); font-weight: 400; margin-left: 2px; }
.modal-chip.active {
  background: linear-gradient(135deg, var(--forest), #2d7a3a);
  color: #fff;
  border-color: var(--forest);
}
.modal-chip.active .chip-price { color: rgba(255,255,255,0.75); }
.modal-chip:hover:not(.active) { border-color: var(--forest); color: var(--forest); }

/* Modal price + actions */
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 18px;
}
.modal-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-deep, #b7791f);
}
.modal-price-label { font-size: 0.82rem; color: var(--muted); }

.modal-actions {
  display: flex;
  gap: 10px;
}
.modal-add-cart-btn { flex: 1; }
.modal-wa-btn { flex: 1.2; justify-content: center; }

/* ════════════════════════════════════════════
   CART DRAWER
════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: var(--card);
  z-index: 1950;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.15s;
}
.cart-drawer-close:hover { background: rgba(26,77,46,0.08); color: var(--forest); }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  gap: 10px;
  color: var(--muted);
  text-align: center;
  padding: 32px;
}
.cart-empty-icon { font-size: 2.5rem; opacity: 0.4; }
.cart-empty p { font-size: 0.95rem; }
.cart-empty a { color: var(--forest); font-weight: 600; font-size: 0.88rem; }

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--earth);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-variant {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.qty-btn {
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s;
}
.qty-btn:hover { background: #2d7a3a; }
.qty-val {
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
  color: var(--earth);
}
.cart-item-remove {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.15s;
  margin-left: 4px;
}
.cart-item-remove:hover { color: #e53e3e; }

.cart-footer {
  padding: 18px 22px;
  border-top: 1.5px solid var(--border);
  flex-shrink: 0;
  background: var(--card);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cart-total-label { font-weight: 700; font-size: 0.9rem; color: var(--muted); }
.cart-total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-deep, #b7791f);
}
.cart-wa-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 0.92rem;
}

/* ── Added to cart toast ── */
.cart-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--forest);
  color: #fff;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(26,77,46,0.35);
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ════════════════════════════════════════════
   MODAL + CART RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 700px) {
  .modal-inner { grid-template-columns: 1fr; }
  .modal-img-col { border-radius: 20px 20px 0 0; padding: 24px; max-height: 220px; overflow: hidden; }
  .modal-img-wrap { max-width: 180px; }
  .modal-info-col { padding: 24px 22px 28px; max-height: none; }
  .how-made-grid { grid-template-columns: 1fr; }
  .modal-actions { flex-direction: column; }
  .cart-drawer { width: 100vw; }
}
