/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-900: #1c3b26;
  --green-800: #245234;
  --green-700: #2f6a41;
  --green-600: #3f7d4f;
  --green-100: #e7f0e5;
  --gold: #c99a2e;
  --gold-light: #e8c877;
  --cream: #faf6ee;
  --cream-2: #f4ead9;
  --ink: #223224;
  --ink-soft: #55645a;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(28, 59, 38, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--green-900); }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45); }

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

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

.btn-lg { padding: 16px 34px; font-size: 1.02rem; }

.wa-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== Topbar ===== */
.topbar {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}

.topbar-item:hover { color: var(--gold-light); }

.social-links { display: flex; align-items: center; gap: 14px; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.social-links a:hover { opacity: 1; transform: translateY(-1px); }
.social-links svg { width: 18px; height: 18px; }

.footer-social { margin-top: 16px; gap: 16px; }
.footer-social svg { width: 20px; height: 20px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 59, 38, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 68px; width: auto; }
.logo-fallback { display: none; align-items: center; gap: 8px; }
.logo-icon { font-size: 1.6rem; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: var(--green-900); }
.logo-text em { font-style: normal; color: var(--gold); }

.nav {
  display: flex;
  gap: 32px;
  font-weight: 500;
}

.nav a { color: var(--ink); position: relative; padding: 6px 0; }
.nav a:hover { color: var(--green-700); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.header-cta { padding: 10px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--green-900); border-radius: 2px; }

/* ===== Hero ===== */
.hero {
  padding: 70px 0 60px;
  background: radial-gradient(circle at 80% 20%, var(--green-100), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--green-700); font-size: 0.7em; display: inline-block; margin-top: 6px; }

.hero-sub {
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 26px;
  font-size: 1.02rem;
}

.price-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 28px;
}
.price-now { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green-800); }
.price-old { text-decoration: line-through; color: #9a9a9a; font-size: 1.1rem; }
.price-badge { background: var(--gold); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.cod-note { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }

.trust-row { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.88rem; color: var(--green-800); font-weight: 500; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob {
  position: absolute;
  width: 340px; height: 340px;
  background: var(--green-100);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 0;
}

.bottle-photo { width: 260px; position: relative; z-index: 1; filter: drop-shadow(0 20px 25px rgba(28,59,38,0.25)); border-radius: 18px; }
.bottle { display: none; width: 220px; position: relative; z-index: 1; filter: drop-shadow(0 20px 25px rgba(28,59,38,0.25)); }

.leaf { position: absolute; font-size: 2rem; z-index: 2; }
.leaf-1 { top: 10%; right: 8%; }
.leaf-2 { bottom: 12%; left: 6%; }

/* ===== Product Section ===== */
.product { padding: 80px 0; }

.product-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.product-card-media { position: relative; }

.product-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--gold);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(201, 154, 46, 0.35);
}

.product-photo { width: 100%; max-width: 260px; margin: 0 auto; border-radius: 14px; filter: drop-shadow(0 15px 20px rgba(28,59,38,0.2)); }
.product-illustration { display: none; width: 100%; max-width: 260px; margin: 0 auto; filter: drop-shadow(0 15px 20px rgba(28,59,38,0.2)); }

.product-card-info h3 { font-size: 1.8rem; margin-bottom: 14px; }
.product-desc { color: var(--ink-soft); margin-bottom: 20px; }

.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-list li { font-weight: 500; font-size: 0.95rem; }

.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.qty-label { font-weight: 500; color: var(--ink-soft); font-size: 0.92rem; }
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--green-100);
  border-radius: 50px;
  overflow: hidden;
}
.qty-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-100);
  border: none;
  color: var(--green-800);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.qty-btn:hover { background: var(--gold-light); }
.qty-value { min-width: 40px; text-align: center; font-weight: 600; font-size: 1rem; }

.unavailable-notice {
  background: #fdecea;
  color: #9a4a1f;
  border: 1px solid #f3c3b4;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== Why Us ===== */
.why-us { padding: 80px 0; background: var(--cream-2); }

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

.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(28,59,38,0.06);
  transition: transform 0.25s ease;
}
.value-card:hover { transform: translateY(-6px); }
.value-icon { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.value-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; color: var(--ink-soft); }

/* ===== How to Order ===== */
.how-to-order { padding: 80px 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 44px;
}

.step-card {
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.step-card h4 { color: #fff; margin-bottom: 8px; }
.step-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

.cta-center { text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--green-900); color: #eef4ea; padding: 60px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .logo-text { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.65); margin-top: 10px; }

.footer-contact h4 { color: #fff; margin-bottom: 14px; }
.footer-contact p { color: rgba(255,255,255,0.8); margin-bottom: 8px; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact .btn { margin-top: 14px; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { text-decoration: underline; }

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  z-index: 999;
  animation: pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; color: #fff; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .price-box, .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 20px; }
  .product-card { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 24px; gap: 16px; border-bottom: 1px solid rgba(28,59,38,0.08); display: none; }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .topbar-inner { padding: 8px 16px; }
  .topbar-item { font-size: 0.76rem; }
}
