/* ============================================================
   Organic Seeds Natural – Main Stylesheet
   ============================================================ */
@import url('theme.css');

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

:root {
  --green-dark:   #1e5631;
  --green-mid:    #2d7a3a;
  --green-light:  #4a9e5c;
  --green-pale:   #e8f5e0;
  --gold:         #c9912a;
  --gold-light:   #f5e6c8;
  --text-dark:    #1a1a1a;
  --text-mid:     #444;
  --text-light:   #777;
  --white:        #fff;
  --off-white:    #fafaf8;
  --border:       #e0e0d8;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.14);
  --transition:   0.22s ease;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,122,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green-dark);
}
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }

/* ---- Section Headings ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.82rem;
  padding: 9px 0;
  text-align: center;
}
.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ann-sep { opacity: .4; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 2rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  line-height: 1.2;
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: .04em;
}

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; gap: 4px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: all var(--transition);
}
.dropdown li a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  padding-left: 24px;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-icon, .btn-search, .btn-cart {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-dark);
  transition: all var(--transition);
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.btn-icon:hover, .btn-search:hover, .btn-cart:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--green-mid);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-menu { display: none; font-size: 1.5rem; padding: 4px 8px; color: var(--text-dark); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 100%;
  background: var(--white);
  z-index: 1000;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  display: block;
  text-align: right;
  font-size: 1.5rem;
  margin-bottom: 24px;
  cursor: pointer;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul li a:hover { background: var(--green-pale); color: var(--green-dark); }
.mobile-nav-cta { margin-top: 24px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; }

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
}
.overlay.show { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 580px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.hero-content { max-width: 620px; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-highlight { color: #a8e063; }
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.85);
  font-size: 0.85rem;
}
.hero-trust span { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--green-pale);
  border-bottom: 1px solid #d0e8c0;
  padding: 20px 0;
}
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  border-right: 1px solid #c8ddb8;
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.6rem; }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 0.9rem; color: var(--green-dark); }
.trust-text span { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   HEALTH GOALS
   ============================================================ */
.health-goals {
  padding: 80px 0;
  background: var(--off-white);
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
}
.goal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.goal-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--green-pale);
}
.goal-icon { font-size: 2.4rem; margin-bottom: 12px; }
.goal-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.goal-card p { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-section { padding: 80px 0; background: var(--white); }

.product-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.tab-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 2px solid var(--border);
  color: var(--text-mid);
  transition: all var(--transition);
  cursor: pointer;
  background: var(--white);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--green-mid);
  color: white;
  border-color: var(--green-mid);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-light);
}

.product-badge-wrap {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.badge-bestseller { background: var(--green-dark); color: white; }
.badge-hot { background: #e53935; color: white; }
.badge-new { background: var(--gold); color: white; }

.product-img-link {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--off-white);
}
.product-img-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-link img { transform: scale(1.06); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-quick-view {
  background: white;
  color: var(--green-dark);
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-quick-view:hover { background: var(--green-mid); color: white; }

.product-info { padding: 18px 18px 20px; }
.product-category {
  font-size: 0.75rem;
  color: var(--green-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
  display: block;
}
.product-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-info h3 a { color: var(--text-dark); }
.product-info h3 a:hover { color: var(--green-mid); }
.product-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  margin-bottom: 12px;
  color: var(--text-mid);
}
.stars { color: #f5a623; font-size: 0.9rem; letter-spacing: -1px; }

.product-variants {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.variant-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  cursor: pointer;
  background: white;
  transition: all var(--transition);
}
.variant-btn:hover, .variant-btn.active {
  border-color: var(--green-mid);
  color: var(--green-mid);
  background: var(--green-pale);
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.price-current { font-size: 1.2rem; font-weight: 700; color: var(--green-dark); }
.price-original {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.price-save {
  font-size: 0.78rem;
  background: #fef3e2;
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.btn-add-cart { width: 100%; justify-content: center; }

.products-cta { text-align: center; margin-top: 40px; }

/* Combo card highlight */
.combo-card { border: 2px solid var(--gold); }
.combo-card .product-info { background: var(--gold-light); }

/* ============================================================
   COMBO BANNER
   ============================================================ */
.combo-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 64px 0;
  color: white;
}
.combo-banner-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.combo-text { flex: 1; min-width: 280px; }
.combo-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.combo-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}
.combo-text p { opacity: .9; margin-bottom: 20px; font-size: 1.05rem; }
.combo-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.combo-list li { font-size: 0.95rem; opacity: .9; }
.combo-text .btn-primary {
  background: white;
  color: var(--green-dark);
  border-color: white;
}
.combo-text .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.combo-img { flex: 1; min-width: 260px; }
.combo-img img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us { padding: 80px 0; background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.why-card p { color: var(--text-mid); font-size: 0.92rem; line-height: 1.7; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 80px 0; background: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  background: var(--green-pale);
  border: 1px solid #c8ddb8;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  position: relative;
}
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 10px; }
.process-step h3 { font-family: var(--font-head); font-size: 0.95rem; color: var(--green-dark); margin-bottom: 6px; }
.process-step p { font-size: 0.78rem; color: var(--text-light); }
.process-arrow {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: var(--green-mid);
  padding: 0 8px;
  margin-top: 30px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 80px 0; background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--green-light);
}
.review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: -1px; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-mid);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.reviewer span { font-size: 0.78rem; color: var(--text-light); }

.testimonials-summary {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
  flex-wrap: wrap;
}

/* ============================================================
   DISCOUNT BANNER
   ============================================================ */
.discount-banner {
  background: linear-gradient(135deg, #1a4730 0%, #2d7a3a 60%, #4a9e5c 100%);
  padding: 60px 0;
}
.discount-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.discount-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: white;
  margin-bottom: 10px;
}
.discount-text p { color: rgba(255,255,255,.85); font-size: 1rem; }
.code-highlight {
  background: white;
  color: var(--green-dark);
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-family: monospace;
  font-size: 1.1rem;
}
.discount-action { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.coupon-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid var(--gold);
}
#coupon-code {
  padding: 10px 20px;
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .1em;
}
.btn-copy {
  background: var(--gold);
  color: white;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-copy:hover { background: #b07820; }
.discount-action .btn-primary {
  background: white;
  color: var(--green-dark);
  border-color: white;
}
.discount-action .btn-primary:hover { background: var(--gold-light); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-preview { padding: 80px 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--white);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-light);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover img { transform: scale(1.04); }
.blog-info { padding: 20px; }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.blog-card h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--green-mid); }
.blog-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }
.read-more { font-size: 0.85rem; font-weight: 600; color: var(--green-mid); }
.read-more:hover { text-decoration: underline; }
.blog-cta { text-align: center; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: 70px 0;
  background: var(--gold-light);
  border-top: 1px solid #e8d5a0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 10px;
}
.newsletter-text p { color: var(--text-mid); font-size: 0.95rem; }
.newsletter-form { flex: 1; min-width: 280px; max-width: 440px; }
.form-row { display: flex; gap: 0; margin-bottom: 10px; }
.form-row input {
  flex: 1;
  padding: 13px 20px;
  border: 2px solid #d4b870;
  border-right: none;
  border-radius: 50px 0 0 50px;
  font-size: 0.9rem;
  background: white;
  outline: none;
  font-family: var(--font-body);
}
.form-row input:focus { border-color: var(--green-mid); }
.form-row .btn { border-radius: 0 50px 50px 0; padding: 13px 24px; }
.form-note { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.85);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-brand .logo-icon { font-size: 1.8rem; }
.footer-brand .logo-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: white;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; margin-bottom: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-mid); transform: translateY(-2px); }
.footer-fssai {
  font-size: 0.75rem;
  background: rgba(255,255,255,.1);
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-block;
}

.footer-links h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links ul li a {
  font-size: 0.85rem;
  opacity: .8;
  transition: all var(--transition);
}
.footer-links ul li a:hover { opacity: 1; color: white; padding-left: 4px; }

.footer-contact h4 { color: white; font-size: 0.95rem; margin-bottom: 16px; font-weight: 600; }
.footer-contact p { font-size: 0.84rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: white; }
.payment-icons { margin-top: 16px; }
.payment-icons span { font-size: 0.8rem; display: block; margin-bottom: 8px; opacity: .7; }
.payment-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; opacity: .65; margin-bottom: 4px; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 800;
  transition: all var(--transition);
}
.whatsapp-float:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 90px;
  right: 28px;
  background: var(--green-dark);
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1100;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  max-width: 280px;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .process-steps { gap: 12px; }
  .process-arrow { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-menu { display: flex; }
  .mobile-nav { display: block; }

  .hero-slide { min-height: 460px; padding: 50px 0; }
  .hero-actions { flex-direction: column; gap: 10px; }

  .trust-grid { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid #c8ddb8; width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }

  .combo-banner-inner { flex-direction: column; }
  .combo-img { display: none; }

  .discount-inner { flex-direction: column; }
  .discount-action { width: 100%; align-items: center; }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .form-row { flex-direction: column; gap: 10px; }
  .form-row input { border-right: 2px solid #d4b870; border-radius: 50px; }
  .form-row .btn { border-radius: 50px; width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }

  .process-step { min-width: 130px; }

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

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-info { padding: 12px; }
  .hero-trust { gap: 10px; font-size: 0.78rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCT PAGE PLACEHOLDER IMAGES (gradient fallback)
   ============================================================ */
.product-img-link img[src=""] ,
.product-img-link img:not([src]) {
  display: none;
}
.product-img-link::after {
  content: '🌿';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--green-pale) 0%, #d4ebb0 100%);
}
/* Show real image if loaded, hide emoji */
.product-img-link img[src]:not([src=""]) ~ * { display: none; }
