/* ============================================================
   Organic Seeds Natural — Oil Theme Premium Upgrade
   ============================================================ */

:root {
  /* Core Palette — Deep Forest + Warm Gold */
  --green-dark:    #14421f;
  --green-mid:     #1e6b2e;
  --green-rich:    #2d8a40;
  --green-light:   #4db860;
  --green-pale:    #e6f4ea;
  --green-xpale:   #f0f9f2;

  --gold:          #c8881a;
  --gold-mid:      #e09b20;
  --gold-light:    #f5d98a;
  --gold-pale:     #fdf6e3;
  --gold-xpale:    #fffbf0;

  --earth:         #7a5c2e;
  --earth-pale:    #f5ede0;
  --cream:         #fefef9;
  --warm-white:    #fffef8;

  --text-dark:     #1a1a1a;
  --text-mid:      #3d3d3d;
  --text-body:     #5a5a5a;
  --text-light:    #888;
  --text-muted:    #aaa;

  --border:        #e2ddd4;
  --border-green:  #b8d9c2;
  --border-gold:   #e8c97a;

  --shadow-xs:  0 1px 4px rgba(0,0,0,.06);
  --shadow-sm:  0 2px 10px rgba(0,0,0,.08);
  --shadow-md:  0 6px 28px rgba(0,0,0,.12);
  --shadow-lg:  0 16px 56px rgba(0,0,0,.16);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.18);
  --shadow-green: 0 8px 32px rgba(30,107,46,.25);

  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: .22s cubic-bezier(.4,0,.2,1);
  --transition-slow: .4s cubic-bezier(.4,0,.2,1);

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ---- Global Resets ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
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; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-sm { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 32px; border-radius: 50px; font-weight: 600;
  font-size: .95rem; transition: all var(--transition); cursor: pointer;
  border: 2px solid transparent; white-space: nowrap; letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-rich), var(--green-mid));
  color: white; border-color: var(--green-rich);
  box-shadow: 0 4px 16px rgba(30,107,46,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green-rich));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,107,46,.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: white; border-color: var(--gold-mid);
  box-shadow: 0 4px 16px rgba(200,136,26,.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,136,26,.45);
}
.btn-outline {
  background: transparent; color: var(--green-mid); border-color: var(--green-mid);
}
.btn-outline:hover { background: var(--green-mid); color: white; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: white; border-color: rgba(255,255,255,.65);
}
.btn-outline-white:hover { background: white; color: var(--green-dark); }
.btn-white {
  background: white; color: var(--green-dark); border-color: white;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, var(--green-dark) 0%, #1e6b2e 50%, #14421f 100%);
  color: white; font-size: .82rem; padding: 10px 0;
  text-align: center; position: relative; overflow: hidden;
}
.announcement-bar::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255,255,255,.03) 120px, rgba(255,255,255,.03) 121px);
}
.announcement-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; position: relative;
}
.ann-item { font-weight: 500; }
.ann-item strong { color: var(--gold-light); }
.ann-sep { opacity: .35; font-size: .7rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,254,248,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { font-size: 2.2rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
  color: var(--green-dark); line-height: 1.15;
  background: linear-gradient(135deg, var(--green-dark), var(--green-rich));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-tagline { font-size: .7rem; color: var(--text-light); letter-spacing: .05em; margin-top: 1px; }

/* Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav > ul { display: flex; gap: 2px; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: .88rem;
  font-weight: 500; color: var(--text-mid); transition: all var(--transition);
  display: flex; align-items: center; gap: 3px;
}
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active {
  background: var(--green-pale); color: var(--green-dark);
}

/* Mega Dropdown */
.dropdown {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%); background: white;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 220px; padding: 10px;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; animation: dropIn .18s ease; }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: .87rem; color: var(--text-mid); transition: all var(--transition);
}
.dropdown li a:hover { background: var(--green-pale); color: var(--green-dark); padding-left: 18px; }
.dropdown li a .d-icon { font-size: 1.1rem; width: 24px; text-align: center; }

@keyframes dropIn { from { opacity: 0; transform: translateX(-50%) translateY(-6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

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

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; width: 300px; height: 100%;
  background: white; z-index: 1000; padding: 0;
  overflow-y: auto; transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-xl);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  background: linear-gradient(135deg, var(--green-dark), var(--green-rich));
  padding: 20px 20px 24px; color: white;
}
.mobile-nav-head .logo-name { -webkit-text-fill-color: white; }
.mobile-nav-head .logo-tagline { color: rgba(255,255,255,.7); }
.mobile-nav-close {
  position: absolute; top: 16px; right: 16px; font-size: 1.4rem;
  color: white; background: rgba(255,255,255,.15); border: none;
  width: 36px; height: 36px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
}
.mobile-nav ul { padding: 12px; }
.mobile-nav ul li a {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border-radius: var(--radius-sm); font-weight: 500; color: var(--text-dark);
  font-size: .95rem; transition: all var(--transition);
}
.mobile-nav ul li a:hover { background: var(--green-pale); color: var(--green-dark); }
.mobile-nav-cta { padding: 16px 20px 24px; }
.mobile-nav-cta .btn { width: 100%; }

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

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-rich); background: var(--green-pale);
  padding: 5px 16px; border-radius: 50px; margin-bottom: 14px;
  border: 1px solid var(--border-green);
}
.section-header h2 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--green-dark); margin-bottom: 14px; line-height: 1.2;
}
.section-header p { color: var(--text-body); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 3px; background: linear-gradient(90deg, var(--green-rich), var(--gold-mid));
  border-radius: 2px; margin: 16px auto 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-slide {
  min-height: 620px; display: flex; align-items: center;
  background-size: cover; background-position: center; padding: 80px 0;
  position: relative;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,66,31,.92) 0%, rgba(30,107,46,.7) 60%, rgba(45,138,64,.4) 100%);
}
.hero-content { position: relative; max-width: 660px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: white; padding: 7px 18px; border-radius: 50px; font-size: .83rem;
  font-weight: 600; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero-content h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: white; line-height: 1.12; margin-bottom: 20px;
}
.hero-highlight {
  background: linear-gradient(135deg, #a8e063, #6dbf44);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9); padding: 6px 14px; border-radius: 50px;
  font-size: .8rem; font-weight: 500; backdrop-filter: blur(4px);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: linear-gradient(90deg, var(--green-pale) 0%, var(--gold-xpale) 50%, var(--green-pale) 100%);
  border-top: 1px solid var(--border-green); border-bottom: 1px solid var(--border-green);
  padding: 18px 0;
}
.trust-grid { display: flex; justify-content: center; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 28px;
  border-right: 1px solid var(--border-green);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.6rem; }
.trust-text strong { font-size: .88rem; color: var(--green-dark); display: block; }
.trust-text span { font-size: .75rem; color: var(--text-light); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition-slow); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-6px);
  border-color: var(--border-green);
}
.product-img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
  background: linear-gradient(135deg, var(--green-xpale), var(--gold-xpale));
  display: flex; align-items: center; justify-content: center; font-size: 6rem;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,66,31,.7) 100%);
  opacity: 0; transition: opacity var(--transition); display: flex;
  align-items: flex-end; justify-content: center; padding-bottom: 16px;
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-quick-view {
  background: white; color: var(--green-dark); padding: 8px 20px;
  border-radius: 50px; font-weight: 600; font-size: .82rem; cursor: pointer;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.btn-quick-view:hover { background: var(--green-pale); }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 4px 10px; border-radius: 50px; font-size: .7rem; font-weight: 700;
  letter-spacing: .03em;
}
.badge-bestseller { background: var(--green-dark); color: white; }
.badge-hot { background: #e53935; color: white; }
.badge-new { background: var(--gold); color: white; }
.badge-sale { background: #f57c00; color: white; }

.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-cat {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--green-rich); margin-bottom: 6px;
}
.product-body h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 6px; line-height: 1.35; flex: 1; }
.product-body h3 a { color: var(--text-dark); }
.product-body h3 a:hover { color: var(--green-mid); }
.product-desc { font-size: .8rem; color: var(--text-light); margin-bottom: 10px; line-height: 1.5; }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--text-light); margin-bottom: 12px; }
.stars { color: #f59e0b; letter-spacing: -2px; }

.variant-row { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.variant-btn {
  padding: 4px 11px; border-radius: var(--radius-sm); font-size: .75rem; font-weight: 600;
  border: 1.5px solid var(--border); color: var(--text-body); background: white;
  cursor: pointer; transition: all var(--transition);
}
.variant-btn:hover, .variant-btn.active {
  border-color: var(--green-rich); color: var(--green-rich); background: var(--green-pale);
}

.price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.price-now { font-size: 1.25rem; font-weight: 700; color: var(--green-dark); }
.price-was { font-size: .88rem; color: var(--text-muted); text-decoration: line-through; }
.price-save {
  font-size: .72rem; font-weight: 700; background: var(--gold-pale);
  color: var(--gold); padding: 2px 8px; border-radius: 4px; border: 1px solid var(--border-gold);
}

.btn-cart { width: 100%; justify-content: center; padding: 12px; }

/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 24px; }

/* ============================================================
   CATEGORY / GOAL CARDS
   ============================================================ */
.goal-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center; transition: all var(--transition);
  cursor: pointer; display: block; color: inherit;
  position: relative; overflow: hidden;
}
.goal-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-pale), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.goal-card:hover { border-color: var(--border-green); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.goal-card:hover::before { opacity: 1; }
.goal-icon { font-size: 2.6rem; margin-bottom: 14px; }
.goal-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--green-dark); margin-bottom: 6px; }
.goal-card p { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   WHY US CARDS
   ============================================================ */
.why-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: all var(--transition);
  border-left: 4px solid transparent;
}
.why-card:hover { border-left-color: var(--green-rich); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.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-body); font-size: .92rem; line-height: 1.72; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: all var(--transition); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 20px;
  font-family: var(--font-head); font-size: 4rem; color: var(--green-pale);
  line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-green); }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; letter-spacing: -1px; }
.testimonial-card blockquote { font-size: .92rem; line-height: 1.75; color: var(--text-body); margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-rich), var(--green-dark));
  color: white; font-weight: 700; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; }
.reviewer span { font-size: .75rem; color: var(--text-light); }
.verified { color: var(--green-rich); font-size: .72rem; font-weight: 700; display: block; margin-top: 2px; }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-card {
  background: white; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--border-green); }
.blog-img-wrap { overflow: hidden; height: 210px; background: var(--green-xpale); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-body { padding: 22px; }
.blog-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--green-rich); background: var(--green-pale);
  padding: 3px 10px; border-radius: 4px; margin-bottom: 10px;
  border: 1px solid var(--border-green);
}
.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: .84rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.65; }
.blog-meta { font-size: .76rem; color: var(--text-muted); display: flex; gap: 12px; margin-bottom: 8px; }
.read-more { font-size: .84rem; font-weight: 600; color: var(--green-mid); display: inline-flex; align-items: center; gap: 4px; }
.read-more:hover { gap: 8px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--text-dark); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--border);
  border-radius: var(--radius); font-family: var(--font-body); font-size: .92rem;
  color: var(--text-dark); background: white; outline: none;
  transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green-rich); box-shadow: 0 0 0 3px rgba(45,138,64,.12); }
.form-textarea { height: 120px; resize: vertical; line-height: 1.6; }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: 5px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { padding: 72px 0; background: var(--gold-pale); border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.newsletter-text h2 { font-family: var(--font-head); font-size: clamp(1.5rem, 2.5vw, 2.1rem); color: var(--green-dark); margin-bottom: 10px; }
.newsletter-text p { color: var(--text-body); font-size: .97rem; }
.newsletter-form { flex: 1; min-width: 280px; max-width: 460px; }
.nl-input-row { display: flex; gap: 0; margin-bottom: 10px; border-radius: 50px; overflow: hidden; border: 2px solid var(--border-gold); background: white; }
.nl-input-row input { flex: 1; padding: 13px 20px; border: none; font-size: .9rem; background: transparent; outline: none; }
.nl-input-row .btn { border-radius: 0; padding: 13px 24px; }
.nl-note { font-size: .8rem; color: var(--text-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.8); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }

.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .footer-logo .logo-name { font-family: var(--font-head); font-size: 1.15rem; color: white; -webkit-text-fill-color: white; }
.footer-brand p { font-size: .84rem; line-height: 1.75; margin-bottom: 22px; opacity: .8; }
.footer-social { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: white;
  transition: all var(--transition); border: 1px solid rgba(255,255,255,.12);
}
.footer-social a:hover { background: var(--green-rich); transform: translateY(-2px); }
.fssai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px; border-radius: var(--radius-sm); font-size: .75rem;
}

.footer-col h4 { color: white; font-size: .95rem; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: .84rem; opacity: .75; transition: all var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.footer-col ul li a:hover { opacity: 1; color: white; padding-left: 4px; }

.footer-contact h4 { color: white; font-size: .95rem; font-weight: 600; margin-bottom: 18px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .84rem; opacity: .8; }
.footer-contact-item .fc-icon { flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,.8); }
.footer-contact-item a:hover { color: white; }
.pay-row { margin-top: 16px; }
.pay-row span { font-size: .78rem; opacity: .6; display: block; margin-bottom: 8px; }
.pay-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 4px 10px; border-radius: var(--radius-sm); font-size: .72rem; font-weight: 600;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: .78rem; opacity: .55; }
.footer-seo-text { font-size: .75rem; opacity: .45; margin-top: 6px; }

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

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 92px; right: 28px;
  background: var(--green-dark); color: white;
  padding: 13px 22px; border-radius: var(--radius); font-size: .9rem; font-weight: 500;
  z-index: 1100; transform: translateY(20px); opacity: 0;
  transition: all .3s ease; pointer-events: none; max-width: 300px;
  box-shadow: var(--shadow-md);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 32px; }
.tab-btn {
  padding: 10px 22px; border-radius: 50px; font-size: .88rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--text-body); background: white;
  cursor: pointer; transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active { background: var(--green-rich); color: white; border-color: var(--green-rich); }

/* ============================================================
   PAGE HERO (reusable inner-page hero)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1e6b2e 50%, var(--green-rich) 100%);
  padding: 72px 0; color: white; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(168,224,99,.15) 0%, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.page-hero p { opacity: .88; font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.page-hero .breadcrumb-nav { margin-top: 20px; font-size: .82rem; opacity: .65; display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
.page-hero .breadcrumb-nav a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb-nav a:hover { color: white; }

/* ============================================================
   CART / CHECKOUT ELEMENTS
   ============================================================ */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { background: var(--green-pale); color: var(--green-dark); padding: 12px 16px; text-align: left; font-size: .88rem; border-bottom: 2px solid var(--border-green); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; background: var(--green-xpale); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.cart-item-name { font-weight: 600; font-size: .92rem; margin-bottom: 3px; }
.cart-item-variant { font-size: .78rem; color: var(--text-light); }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-stepper button { width: 36px; height: 36px; background: var(--green-pale); color: var(--green-dark); font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all var(--transition); border: none; }
.qty-stepper button:hover { background: var(--green-rich); color: white; }
.qty-stepper input { width: 44px; text-align: center; font-weight: 700; font-size: .92rem; border: none; border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border); padding: 8px 4px; }

.order-summary { background: var(--green-xpale); border: 1px solid var(--border-green); border-radius: var(--radius-lg); padding: 28px; }
.order-summary h3 { font-family: var(--font-head); color: var(--green-dark); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-green); font-size: .92rem; color: var(--text-body); }
.summary-row:last-child { border-bottom: none; font-size: 1.1rem; font-weight: 700; color: var(--green-dark); }
.summary-row .label { color: var(--text-body); }
.coupon-input-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-input-row input { flex: 1; }
.coupon-input-row input, .coupon-input-row .btn { border-radius: var(--radius-sm); padding: 11px 16px; }

/* QR Payment */
.qr-payment-box {
  background: white; border: 2px solid var(--border-green); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; margin-top: 24px;
}
.qr-payment-box h3 { font-family: var(--font-head); color: var(--green-dark); margin-bottom: 6px; }
.qr-payment-box .sub { font-size: .85rem; color: var(--text-light); margin-bottom: 20px; }
#qr-canvas { margin: 0 auto 20px; display: block; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.qr-amount-display {
  font-size: 2rem; font-weight: 700; color: var(--green-dark);
  background: var(--green-pale); border-radius: var(--radius); padding: 10px 24px;
  display: inline-block; margin-bottom: 16px; border: 1px solid var(--border-green);
}
.upi-apps { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.upi-app { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: .75rem; color: var(--text-light); }
.upi-app-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; border: 1px solid var(--border); }
.upi-id-display { background: var(--gold-pale); border: 1px dashed var(--border-gold); border-radius: var(--radius-sm); padding: 10px 16px; font-family: monospace; font-size: .95rem; font-weight: 700; color: var(--earth); margin-bottom: 16px; }
.payment-steps { text-align: left; font-size: .85rem; color: var(--text-body); }
.payment-steps li { padding: 6px 0; display: flex; gap: 8px; }
.payment-steps li::before { content: '→'; color: var(--green-rich); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-green { color: var(--green-dark); }
.text-gold { color: var(--gold); }
.bg-green-pale { background: var(--green-pale); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-off-white { background: var(--warm-white); }
.section-pad { padding: 88px 0; }
.section-pad-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.gap-sm { gap: 16px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-menu { display: flex; }
  .mobile-nav { display: block; }
  .hero-slide { min-height: 480px; padding: 60px 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-green); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .nl-input-row { flex-direction: column; border-radius: var(--radius); }
  .nl-input-row input { border-radius: var(--radius) var(--radius) 0 0; }
  .nl-input-row .btn { border-radius: 0 0 var(--radius) var(--radius); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-body { padding: 12px; }
  .hero-content h1 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
