/* ============================================================
   GRAINLEEY FOODS — Premium Stylesheet
   Color Palette:
     Forest Green:  #1E4D20
     Deep Green:    #2D6A31
     Gold:          #C8940A
     Warm Gold:     #D4A827
     Cream:         #F7F2E8
     Warm White:    #FDFAF4
     Dark Brown:    #3B2507
     Off-black:     #1A1A1A
     Accent Red:    #C0392B
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1E4D20;
  --green-mid:  #2D6A31;
  --green-light:#3D8B42;
  --gold:       #C8940A;
  --gold-light: #D4A827;
  --gold-pale:  #F5DFA0;
  --cream:      #F7F2E8;
  --warm-white: #FDFAF4;
  --brown:      #3B2507;
  --brown-light:#7B5230;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-light: #7A7A7A;
  --red:        #C0392B;
  --wa-green:   #25D366;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255,253,244,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--transition);
}

.navbar.scrolled .nav-inner { padding: 12px 24px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(200,148,10,0.5);
  background: white;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.nav-logo-img:hover { transform: rotate(-5deg) scale(1.05); box-shadow: 0 4px 18px rgba(200,148,10,0.4); }

.footer-logo-img {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(200,148,10,0.4);
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

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

.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-dark);
}

.navbar .logo-brand { color: white; }
.navbar.scrolled .logo-brand { color: var(--green-dark); }

.logo-tagline {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a { color: var(--text-mid); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: white; }
.navbar.scrolled .nav-links a:hover { color: var(--green-dark); }

.nav-cta {
  background: var(--green-dark) !important;
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30,77,32,0.3);
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--green-dark); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,45,22,0.88) 0%,
    rgba(30,77,32,0.78) 40%,
    rgba(50,100,55,0.55) 70%,
    rgba(30,77,32,0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 780px;
  margin-left: max(24px, calc(50vw - 590px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,148,10,0.2);
  border: 1px solid rgba(200,148,10,0.5);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
}

.hero-headline em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}

.delivery-icon { font-size: 28px; }

.delivery-text {
  display: flex;
  flex-direction: column;
}

.delivery-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-date {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
}

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

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,148,10,0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  transform: translateY(-3px);
}

.btn-wa {
  background: var(--wa-green);
  color: white;
  border-color: var(--wa-green);
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  font-size: 16px;
  padding: 16px 30px;
}

.btn-wa:hover {
  background: #1DA851;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ── SCROLL HINT ─────────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-arrow {
  font-size: 20px;
  color: var(--gold-light);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── FEATURES STRIP ────────────────────────────────────────── */
.features-strip {
  background: var(--green-dark);
  padding: clamp(24px, 4vw, 40px) 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  transition: background var(--transition);
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.06); }

.feature-icon { font-size: 28px; }

.feature-item span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--brown);
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-dot {
  color: var(--brown) !important;
  font-size: 10px !important;
}

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

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.light .section-title { color: white; }
.section-header.light .section-sub { color: rgba(255,255,255,0.7); }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 50px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PRODUCTS SECTION ────────────────────────────────────── */
.products-section {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  align-items: stretch;
  justify-items: stretch;
}

.product-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

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

.product-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.product-card.featured:hover { transform: translateY(-16px); }

.featured-ribbon {
  position: absolute;
  top: 16px; right: -1px;
  background: var(--gold);
  color: var(--brown);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 14px 6px 14px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8px 50%);
}

.product-num {
  position: absolute;
  top: 20px; left: 20px;
  width: 36px; height: 36px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  font-family: 'Playfair Display', serif;
  z-index: 1;
}

.product-badge-tag {
  background: var(--cream);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--brown-light);
  padding: 10px 20px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-top: 0;
}

.card-sharbati .product-badge-tag { background: #EEF7EE; color: #2D6A31; }
.card-multigrain .product-badge-tag { background: #FFF8E8; color: #8B5A00; }
.card-khapli .product-badge-tag { background: #F5EEF8; color: #6C3483; }

/* ── PACK MOCKUP (product cards — branded visuals with shared logo) ── */
.product-img-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.pack-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: transform var(--transition);
  padding: 20px;
}

.product-card:hover .pack-mockup { transform: scale(1.04); }

.pack-sharbati {
  background: linear-gradient(145deg, #1E4D20 0%, #2D6A31 50%, #3a7a3f 100%);
}

.pack-multigrain {
  background: linear-gradient(145deg, #5C3A1E 0%, #8B5A2B 50%, #A0692E 100%);
}

.pack-khapli {
  background: linear-gradient(145deg, #4A1670 0%, #6C3483 50%, #8E44A0 100%);
}

.pack-logo {
  width: 72px; height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.pack-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: white;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 0.04em;
}

.pack-name span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pack-wheat-deco {
  font-size: 16px;
  opacity: 0.7;
  letter-spacing: 4px;
}

/* keep old .product-img for any non-mockup images */
.product-img {
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-info {
  padding: 24px 24px 0;
  flex: 1;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.product-sub-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.product-features li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.product-disclaimer {
  font-size: 10px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 8px;
}

/* Multigrain blend */
.multigrain-blend {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 16px;
}

.blend-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 8px;
}

.blend-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blend-tags span {
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
}

.blend-tags .optional {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--brown);
}

/* Pricing */
.product-pricing {
  padding: 0 24px;
  margin-top: 8px;
}

.price-block {
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.price-block.intro { }

.price-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.price-block.intro .price-label { color: var(--green-dark); }

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-row.small {
  font-size: 12px;
  color: var(--text-light);
  gap: 8px;
}

.sep { color: rgba(0,0,0,0.2); }

.price-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 2px;
}

.price-unit.best {
  background: linear-gradient(135deg, #FFF3CD, #FFF8E1);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  position: relative;
}

.price-kg {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.price-amt {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.price-unit.best .price-amt { color: var(--red); }

.price-save {
  font-size: 9px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.product-cta {
  display: block;
  margin: 20px 24px 24px;
  text-align: center;
  background: var(--green-dark);
  color: white;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.product-cta:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,77,32,0.3);
}

.card-multigrain .product-cta { background: var(--gold); color: var(--brown); }
.card-multigrain .product-cta:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(200,148,10,0.4); }

/* ── RATES SECTION ────────────────────────────────────────── */
.rates-section {
  background: var(--green-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.rates-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,148,10,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.rates-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,148,10,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.launch-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--brown);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 16px 0;
  box-shadow: 0 4px 20px rgba(200,148,10,0.4);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,148,10,0.4); }
  50% { box-shadow: 0 4px 32px rgba(200,148,10,0.7); }
}

.rates-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 15px;
}

.rates-table thead tr {
  background: var(--green-mid);
}

.rates-table thead th {
  padding: 18px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: white;
  text-transform: uppercase;
}

.rates-table thead th.col-product { text-align: left; padding-left: 28px; }
.rates-table thead th.col-5kg { background: var(--gold); color: var(--brown); position: relative; }

.best-value-badge {
  display: block;
  font-size: 9px;
  font-weight: 800;
  background: var(--red);
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
  letter-spacing: 0.08em;
  display: inline-block;
}

.rates-table tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition);
}

.rates-table tbody tr:last-child { border-bottom: none; }
.rates-table tbody tr:hover { background: var(--cream); }

.rates-table tbody td {
  padding: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
}

.rates-table tbody td.col-product { text-align: left; padding-left: 28px; }

.prod-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.prod-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.prod-icon-sharbati { background: #D5E8D5; }
.prod-icon-multigrain { background: #D5C5A0; }
.prod-icon-khapli { background: #D8BFE8; }
.prod-icon-jowar { background: #F0D0A8; color: white; font-size: 14px; }
.prod-icon-bajra { background: #A8CCE8; color: white; font-size: 14px; }
.prod-icon-maize { background: #F5E8A0; }

.prod-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prod-detail strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.prod-detail span {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

.price-highlight {
  background: rgba(255,245,180,0.6);
  font-weight: 700;
  color: var(--red) !important;
  font-size: 17px;
}

.price-highlight small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  opacity: 0.8;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.rates-footnote {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.rates-footnote span { font-size: 22px; }

.rates-footnote p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.rates-footnote p strong { color: var(--gold-light); }

/* ── WHY SECTION ─────────────────────────────────────────── */
.why-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.why-left .section-title { text-align: left; margin-bottom: 36px; }
.why-left .section-eyebrow { display: inline-block; margin-bottom: 12px; width: auto; }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: background var(--transition), transform var(--transition);
}

.why-list li:hover {
  background: var(--cream);
  transform: translateX(6px);
}

.why-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.why-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.why-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.why-text span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Thank You Card */
.thank-you-card {
  background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.thank-you-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,148,10,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.ty-grain-icon { font-size: 48px; margin-bottom: 16px; }
.ty-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.ty-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}

.ty-sub strong { color: white; font-weight: 700; }

.ty-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.ty-body {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.ty-heart { font-size: 32px; margin: 12px 0; }

.ty-sign {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── ORDER SECTION ─────────────────────────────────────────── */
.order-section {
  padding: 100px 0;
  background: var(--cream);
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}


.order-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.order-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.order-step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

.order-format-box {
  background: var(--cream);
  border: 2px dashed var(--green-mid);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 12px;
}

.format-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.format-example {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 6px;
  padding: 10px 14px;
}

.eg-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.eg-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  font-family: monospace;
}

/* WhatsApp Card */
.order-wa-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
}

.wa-icon {
  width: 72px; height: 72px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

.wa-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.wa-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--brown);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

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

.footer .logo-brand { color: var(--gold-light); }
.footer .logo-tagline { color: rgba(255,255,255,0.6); }

.footer-tagline-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.footer-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ── ANIMATIONS (scroll-triggered) ──────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE — only things fluid CSS can't auto-handle ─── */

/* Hamburger + mobile nav */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--green-dark);
    padding: 80px 24px 32px;
    gap: 8px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open li a { color: white !important; font-size: 18px; padding: 12px 0; display: block; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open .nav-cta { margin-top: 16px; background: var(--gold) !important; color: var(--brown) !important; text-align: center; border-radius: 50px; }
  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hero: remove left margin constraint on small screens */
  .hero-content { margin-left: 0; padding: clamp(80px, 12vw, 120px) 24px 60px; }

  /* Rates table: shrink text + padding for readability */
  .rates-table { font-size: 13px; }
  .rates-table thead th, .rates-table tbody td { padding: 14px 12px; }
  .rates-table .col-product { min-width: 160px; }

  /* Featured card: remove forced lift on mobile so all cards sit level */
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-8px); }

  /* Order WA card: un-sticky on small screens */
  .order-wa-card { position: static; }

  /* Thank you card: tighten padding */
  .thank-you-card { padding: clamp(24px, 6vw, 36px); }

  /* Hero actions: stack vertically */
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}


/* ── SCROLL-REVEAL (JS toggled) ─────────────────────────── */
.product-card,
.rates-table tbody tr,
.why-list li,
.order-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-card.reveal,
.rates-table tbody tr.reveal,
.why-list li.reveal,
.order-step.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ── ACTIVE NAV LINK ─────────────────────────────────────── */
.nav-links a.active {
  color: var(--gold-light) !important;
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── SHOW / HIDE UTILITIES ───────────────────────────────── */
.desktop-only { display: block; }
.mobile-only  { display: none; }

@media (max-width: 700px) {
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }
}

/* ── MOBILE PRICE CARDS ──────────────────────────────────── */
.mobile-price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 420px) {
  .mobile-price-cards { grid-template-columns: 1fr; }
}

.mpc-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mpc-card:active { transform: scale(0.98); }

.mpc-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mpc-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.mpc-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mpc-info strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.mpc-info span {
  font-size: 10px;
  color: var(--text-light);
}

.mpc-weights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.mpc-btn {
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 7px 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  font-family: 'Inter', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

.mpc-btn:hover {
  background: #e0f0e0;
  border-color: var(--green-mid);
  color: var(--green-dark);
}

.mpc-btn.active {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.mpc-btn.best {
  background: #FFF8E8;
  color: var(--brown);
  border-color: var(--gold);
}

.mpc-btn.best.active {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

.mpc-price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.mpc-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green-dark);
  transition: all 0.2s ease;
}

.mpc-save {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}

