/* ================================================
   COW DIGNITY – Premium Stylesheet v3.0
   Inspired by Two Brothers India Shop
   ================================================ */

/* --- CSS Variables --- */
:root {
  /* ===== Brand palette v5 — forest-green + gold (warm-white canvas) =====
     Canvas #FEFCF7 · Sections #FAF6EE · Cards #FFFFFF · Borders/cream-dark #F3EBDD
     Brand/titles/CTA forest #2D4A1E · Anchors (bar/footer) #1E3512 · success/hover #4A6B35
     Accent gold #C9A96E · gold-light #DFC18A · bright gold (text-on-green) #F5D97A
     Reading text #3D2B1F · secondary #6B4E35 · meta #8B7355 · stars #F5B301.
     Legacy token NAMES kept so every page updates automatically. */
  --page-bg: #FEFCF7;
  --forest: #2D4A1E;
  --forest-mid: #1E3512;
  --forest-lt: #4A6B35;
  --gold: #C9A96E;
  --gold-lt: #F5D97A;
  --gold-bright: #F5D97A;
  --gold-pale: #F3EBDD;
  --tan: #DFC18A;
  --coin-bg: #FDF6E3;
  --star: #F5B301;
  --success: #4A6B35;
  --sale: #C8342E;
  --cream: #FAF6EE;
  --cream-dark: #F3EBDD;
  --brown: #3D2B1F;
  --brown-lt: #6B4E35;
  --brown-muted: #8B7355;
  --saffron: #C9A96E;
  --text-dark: #3D2B1F;
  --text-mid: #6B4E35;
  --text-soft: #8B7355;
  --white: #ffffff;
  --border: #F3EBDD;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  /* Navbar layout — editable from Admin → Settings → Navbar & branding */
  --nav-logo-h: 88px;
  --nav-top-h: 104px;
  --nav-cat-gap: 6px;
  --nav-search-w: 300px;
  --nav-search-border: #000000;
  --nav-icon-size: 17px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400;        /* normal body text; headings/buttons/labels keep their own (heavier) weight */
  color: var(--text-dark);
  background: var(--page-bg);
  /* overflow-x:hidden turns <body> into a scroll container, which BREAKS the
     position:sticky navbar (it scrolls away). overflow-x:clip prevents the
     horizontal scrollbar WITHOUT creating a scroll container, so sticky works.
     'hidden' is kept first as a fallback for very old browsers. */
  overflow-x: hidden;
  overflow-x: clip;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { line-height: 1.2; color: var(--forest); font-family: 'Cinzel', 'Playfair Display', Georgia, serif; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--forest);
}
.section-title em { font-style: italic; color: var(--brown); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== ONE font everywhere: SF Pro Display (Apple system font) =====
   SF Pro is Apple-proprietary: it renders natively on Apple devices and via
   -apple-system / BlinkMacSystemFont; on Windows/Android it falls back to the
   matching system UI font (Segoe UI / Roboto). To force SF Pro on every device,
   self-host licensed SF Pro web-font files and add an @font-face block. */
*, *::before, *::after {
  font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, 'Helvetica Neue', Arial, system-ui, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
em, i, .section-title em { font-style: italic !important; }

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .92rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,74,30,0.3); }
.btn-gold {
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest);
}
.btn-gold:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,74,30,0.30); }
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* --- Announcement Bar --- */
.announcement-bar {
  background: var(--forest-mid);
  color: var(--gold-lt);
  padding: 10px 0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  overflow: hidden;
  position: relative;
}
.announcement-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announcement-track span { flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-size: 1.1rem; font-weight: 700; color: var(--forest); letter-spacing: -.3px; }
.nav-logo-text .tagline { font-size: .5rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; line-height: 1.3; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); background: var(--gold-pale); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cart {
  position: relative;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.nav-cart:hover { background: var(--gold-pale); border-color: var(--gold); }
.nav-cart svg { width: 20px; height: 20px; stroke: var(--forest); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; height: 2px; width: 22px;
  background: var(--forest); border-radius: 2px;
  transition: var(--transition);
}

/* --- Mobile Nav --- */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
}
.mobile-nav {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 300px; max-width: 86vw; background: var(--white); z-index: 1000;
  padding: 0 24px 32px;
  display: flex; flex-direction: column; gap: 2px;
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  position: sticky; top: 0; align-self: flex-end; flex-shrink: 0;
  width: 40px; height: 40px; margin: 14px -4px 6px 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--cream);
  font-size: 1.2rem; color: var(--text-dark);
  cursor: pointer; border: none;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,28,18,0.85) 0%, rgba(10,28,18,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--gold-lt);
  padding: 6px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: .83rem;
}
.hero-trust-item svg { stroke: var(--gold); }

/* Slide indicators */
.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition); cursor: pointer;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* --- Scrolling Ticker (ad panel) --- */
.ticker-strip {
  background: var(--gold-pale);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 600; color: var(--forest);
  flex-shrink: 0;
}
.ticker-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* --- Advertisement Banners Section --- */
.ad-banners-section {
  padding: 24px 0;
  background: var(--white);
}
/* Wider than the standard 1200px content area, to match the
   Two Brothers-style edge-to-edge banner width. */
.ad-banners-section .container {
  max-width: 1400px;
}
.ad-banners-grid {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 16px;
  align-items: stretch;
}
.ad-hero-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  /* Reference proportion (Two Brothers): slider ~1.85:1.
     Height scales with width; the right stack matches this height. */
  aspect-ratio: 1.85 / 1;
}
.ad-hero-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.ad-hero-slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}
.ad-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ad-hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ad-hero-slide-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ad-hero-slide-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
  font-size: .88rem;
  border-radius: 50px;
  transition: var(--transition);
}
.ad-hero-slide-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,74,30,0.35);
}
.ad-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: var(--forest);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 10;
  opacity: 0;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ad-hero-slider:hover .ad-hero-arrow { opacity: 1; }
.ad-hero-prev { left: 12px; }
.ad-hero-next { right: 12px; }
.ad-hero-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.1); }
.ad-hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.ad-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.ad-hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 50px;
}
.ad-right-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ad-right-banner {
  flex: 1;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ad-right-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.ad-right-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ad-right-banner .ad-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}
.ad-right-banner .ad-banner-title {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
}
.ad-right-banner .ad-banner-btn {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--forest);
  font-weight: 700;
  font-size: .78rem;
  border-radius: 50px;
  transition: var(--transition);
}
.ad-right-banner .ad-banner-btn:hover { background: var(--gold-lt); }
.ad-right-placeholder {
  color: var(--text-soft);
  font-size: .88rem;
  font-weight: 500;
}
.ad-banners-section:empty,
.ad-banners-section.ad-hidden { display: none; }

@media (max-width: 768px) {
  /* Stack into one full-width column; each banner keeps a clean ratio */
  .ad-banners-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ad-hero-slider { aspect-ratio: 16 / 9; }
  .ad-right-stack { flex-direction: column; gap: 14px; }
  .ad-right-banner { flex: none; aspect-ratio: 2 / 1; }
  .ad-hero-arrow { opacity: 1; width: 32px; height: 32px; font-size: .9rem; }
  .ad-hero-slide-overlay { padding: 20px; }
  .ad-hero-slide-title { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .ad-banners-section { padding: 16px 0; }
  .ad-banners-grid { gap: 12px; }
  .ad-right-stack { gap: 12px; }
  .ad-hero-slide-overlay { padding: 16px; }
  .ad-hero-slide-title { font-size: .95rem; }
  .ad-hero-slide-btn { padding: 8px 18px; font-size: .8rem; }
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--forest);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- About Strip --- */
.about-strip { padding: 90px 0; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-image-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg); overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-lg);
}
.about-img-sub {
  border-radius: var(--radius); overflow: hidden;
  height: 180px;
  box-shadow: var(--shadow);
}
.about-img-main img,
.about-img-sub img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-main:hover img,
.about-img-sub:hover img { transform: scale(1.04); }
.about-features { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.about-icon svg { width: 22px; height: 22px; stroke: var(--forest); }
.about-feature h4 { font-size: .95rem; color: var(--forest); margin-bottom: 4px; }
.about-feature p { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }

/* --- Products --- */
.products-section { background: var(--white); }
.product-filters {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 40px; justify-content: center;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: .85rem; font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--cream);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.badge-bestseller, .badge-best { background: var(--brown); color: var(--white); }
.badge-new { background: var(--forest-lt); color: var(--white); }
.badge-hot { background: #e05c3a; color: var(--white); }
.badge-pure { background: var(--forest); color: var(--gold-lt); }
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.product-wishlist svg { width: 16px; height: 16px; stroke: var(--text-soft); }
.product-wishlist:hover svg, .product-wishlist.active svg { stroke: #e03a3a; fill: #e03a3a; }
.product-info { padding: 18px; }
.product-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--forest); font-weight: 700; margin-bottom: 6px; }
/* On the white About section, checkmarks use green (the pale brand yellow is unreadable on white) */
.about-strip .trust-item svg { stroke: var(--forest); }
.product-ratings { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.star { color: var(--star); font-size: .88rem; }
.rating-count { font-size: .78rem; color: var(--text-soft); }
.product-name { font-size: 1.02rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.product-desc { font-size: .83rem; color: var(--text-mid); line-height: 1.5; margin-bottom: 14px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.product-price .current { font-size: 1.15rem; font-weight: 800; color: var(--forest); }
.product-price .original { font-size: .82rem; color: var(--text-soft); text-decoration: line-through; }
.product-price .discount { font-size: .75rem; color: #4A6B35; font-weight: 700; }
.add-cart-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.add-cart-btn svg { width: 18px; height: 18px; stroke: var(--white); }
.add-cart-btn:hover { background: var(--gold); transform: scale(1.1); }
.add-cart-btn:hover svg { stroke: var(--forest); }

/* Product variant selector */
.product-variants {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px;
}
.variant-btn {
  padding: 4px 10px; border-radius: 6px;
  font-size: .78rem; font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: var(--transition);
}
.variant-btn.active { border-color: var(--forest); color: var(--forest); background: var(--gold-pale); }

/* --- Video Section --- */
.video-section {
  background: var(--forest);
  padding: 90px 0;
}
.video-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}
.video-embed iframe { width: 100%; height: 100%; border: none; }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.8); font-size: .88rem;
  padding: 8px 0;
}

/* --- Farm Visit Section --- */
.farm-section { background: var(--cream); padding: 90px 0; }
.farm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.farm-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.farm-gallery-item:first-child { grid-column: 1/-1; }
.farm-gallery-item { border-radius: var(--radius); overflow: hidden; }
.farm-gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s; }
.farm-gallery-item:first-child img { height: 280px; }
.farm-gallery-item:hover img { transform: scale(1.04); }
.farm-features { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.farm-feature { display: flex; align-items: flex-start; gap: 16px; }
.farm-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.farm-icon svg { width: 20px; height: 20px; stroke: var(--forest); }
.farm-feature h4 { font-size: .93rem; color: var(--forest); margin-bottom: 4px; }
.farm-feature p { font-size: .83rem; color: var(--text-mid); line-height: 1.5; }

/* --- Testimonials --- */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--forest); }
.testimonial-loc { font-size: .78rem; color: var(--text-soft); }

/* --- Gallery --- */
.gallery-section { background: var(--forest); padding: 90px 0; }
.gallery-section .section-title { color: var(--white); }
.gallery-section .eyebrow { color: var(--gold-lt); }
.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(45,74,30,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item-overlay svg { width: 32px; height: 32px; stroke: var(--white); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* --- Lightbox --- */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9); z-index: 9999;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  color: var(--white); font-size: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* --- Newsletter --- */
.newsletter { background: var(--forest-mid); padding: 80px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.newsletter .section-title { color: var(--white); }
.newsletter .section-subtitle { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-input {
  flex: 1; padding: 14px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50px;
  font-size: .92rem; outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: var(--gold); }

/* --- Cart Drawer --- */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); z-index: 1100;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: -420px; bottom: 0;
  width: 420px; max-width: 95vw;
  background: var(--white);
  z-index: 1200;
  display: flex; flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.2rem; color: var(--forest); }
.cart-close { font-size: 1.3rem; color: var(--text-soft); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-close:hover { background: var(--cream); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-emoji { font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px; background: var(--cream); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 700; font-size: .92rem; color: var(--forest); }
.cart-item-variant { font-size: .78rem; color: var(--text-soft); }
.cart-item-price { font-weight: 700; color: var(--forest); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--forest); font-weight: 700;
}
.qty-btn:hover { background: var(--gold-pale); border-color: var(--gold); }
.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.1rem; font-weight: 700; color: var(--forest);
  margin-bottom: 16px;
}
.cart-empty { text-align: center; padding: 48px 0; color: var(--text-soft); }
.cart-empty svg { width: 56px; height: 56px; margin: 0 auto 16px; stroke: var(--border); }

/* --- WhatsApp Float --- */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 800; }
.whatsapp-btn {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.7); }
}
.whatsapp-popup {
  display: none;
  position: absolute; bottom: 72px; right: 0;
  width: 240px; background: var(--white);
  border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.whatsapp-popup.open { display: block; animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.whatsapp-popup h3, .whatsapp-popup h4 { font-size: .95rem; color: var(--forest); margin-bottom: 6px; }
.whatsapp-popup p { font-size: .8rem; color: var(--text-mid); margin-bottom: 14px; line-height: 1.5; }

/* --- Floating Buy A2 Ghee Button (round) --- */
.float-buy-ghee {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.float-buy-ghee .fbg-text {
  background: var(--forest);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .2px;
  padding: 9px 15px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.float-buy-ghee .fbg-circle {
  width: 64px; height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E3512, #2D4A1E);
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(45,74,30,0.45);
  animation: floatGheePulse 2.6s ease-in-out infinite;
}
.float-buy-ghee .fbg-circle img { width: 46px; height: 46px; object-fit: contain; }
.float-buy-ghee:hover .fbg-circle {
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 12px 30px rgba(45,74,30,0.65);
}
@keyframes floatGheePulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(45,74,30,0.45); transform: scale(1); }
  50% { box-shadow: 0 10px 30px rgba(45,74,30,0.7); transform: scale(1.04); }
}
@media (max-width: 768px) {
  .float-buy-ghee .fbg-text { display: none; }
}
@media (max-width: 480px) {
  .float-buy-ghee { bottom: 92px; right: 16px; }
  .float-buy-ghee .fbg-circle { width: 56px; height: 56px; flex-basis: 56px; }
  .float-buy-ghee .fbg-circle img { width: 40px; height: 40px; }
  .whatsapp-float { bottom: 20px; right: 16px; }
}

/* --- Toast --- */
.toast {
  position: fixed; bottom: 140px; right: 28px; z-index: 2000;
  background: var(--forest);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast svg { width: 18px; height: 18px; stroke: var(--gold); }

/* --- Footer --- */
.footer { background: var(--forest); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand img { height: 56px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); }
.social-btn svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.8); }
.footer-col h3, .footer-col h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }
.payment-icon {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,0.35);
}

/* --- Footer background-image: mobile legibility ---
   On phones the brand illustration (injected by js/footer-bg.js) sits very
   close behind the text. Fade the art into the solid forest green toward the
   bottom and lift the text opacity so every link stays readable. Scoped to
   small screens only — desktop footer is untouched. */
@media (max-width: 768px) {
  .footer { position: relative; }
  .footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(45,74,30,0.12), rgba(45,74,30,0.45) 60%, rgba(45,74,30,0.65));
    pointer-events: none;
    z-index: 0;
  }
  .footer > .container { position: relative; z-index: 1; }
  .footer-brand p { color: rgba(255,255,255,0.82); }
  .footer-col ul li a { color: rgba(255,255,255,0.82); }
  .footer-bottom {
    color: rgba(255,255,255,0.65);
    border-top-color: rgba(255,255,255,0.18);
  }
}

/* --- Reveal Animations --- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0);
}
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* --- Stat Cards --- */
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-masonry { columns: 3; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .about-inner, .video-inner, .farm-grid, .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .hero { min-height: 80vh; }
  .hero-trust { display: none; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .section-pad { padding: 60px 0; }
  .section-pad-sm { padding: 40px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-info { padding: 14px; }
  .product-name { font-size: .92rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-img-wrap { height: 200px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: .68rem; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-features .about-feature { flex-direction: column; text-align: center; align-items: center; }
  .farm-features .farm-feature { flex-direction: column; text-align: center; align-items: center; }
  .testimonial-card { padding: 20px; }
  .whatsapp-popup { width: 200px; }
}

/* ============================================================
   PREMIUM NAVBAR v4 — luxury Bharat-heritage A2 branding
   (appended last so it refines the base navbar rules above)
   ============================================================ */

/* Announcement strip — white-on-forest with a thin premium divider */
.announcement-bar {
  background: linear-gradient(90deg, #2D4A1E, #1E3512 45%, #2D4A1E);
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: .6px;
  border-bottom: 1px solid rgba(255,255,255,.30);
}

/* Navbar shell — ivory, soft luxury shadow, thin gold divider */
.navbar {
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 22px rgba(45,74,30,.05);
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 4px 22px rgba(45,74,30,.12);
}

/* Logo — semi-3D embossed heritage wordmark */
.nav-logo-text .brand {
  font-family: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  font-weight: 800;
  background: linear-gradient(180deg, #1E3512, #2D4A1E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,.65);
}
.nav-logo-text .tagline { color: var(--gold); font-weight: 600; }
.nav-logo-img { height: var(--nav-logo-h, 64px); width: auto; object-fit: contain; }

/* Search — glassmorphism, gold focus ring, forest icon */
.nav-search-input {
  background: #fff !important;
  border: 1.5px solid var(--nav-search-border, #000) !important;
}
.nav-search-wrap.open .nav-search-input { box-shadow: 0 0 0 3px rgba(45,74,30,.16); }
.nav-search-btn svg { stroke: #000; }

/* Nav links — refined hover with gold underline grow */
.nav-links a { position: relative; }
.nav-links a:not(.nav-blink-ghee)::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}
.nav-links a:not(.nav-blink-ghee):hover::after,
.nav-links a:not(.nav-blink-ghee).active::after { transform: scaleX(1); }

/* Premium gold CTA — semi-3D raised pill with cow icon + bestseller badge */
.nav-blink-ghee {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 9px 20px !important;
  border-radius: 50px !important;
  background: linear-gradient(135deg, #1E3512 0%, #2D4A1E 55%, #023d36 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  letter-spacing: .3px;
  border: 1px solid rgba(255,255,255,.30) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    inset 0 -2px 4px rgba(0,0,0,.25),
    0 6px 16px rgba(45,74,30,.45) !important;
  animation: gheeGlow 2.8s ease-in-out infinite;
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s;
}
.nav-blink-ghee .cta-ico { font-size: 1.05rem; line-height: 1; filter: drop-shadow(0 1px 1px rgba(0,0,0,.2)); }
.nav-blink-ghee::after {
  content: attr(data-badge);
  position: absolute; top: -9px; right: -6px;
  background: #C8342E; color: #fff;
  font-size: .56rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  padding: 2px 7px; border-radius: 50px;
  box-shadow: 0 2px 6px rgba(192,57,43,.5);
}
.nav-blink-ghee:not([data-badge])::after { content: none; }
.nav-blink-ghee:hover {
  transform: translateY(-2px) scale(1.04);
  animation: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 10px 26px rgba(45,74,30,.55) !important;
}
@keyframes gheeGlow {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.25), inset 0 -2px 4px rgba(0,0,0,.25), 0 6px 16px rgba(45,74,30,.45); }
  50%      { box-shadow: inset 0 1px 0 rgba(255,255,255,.25), inset 0 -2px 4px rgba(0,0,0,.25), 0 6px 22px rgba(45,74,30,.75), 0 0 26px rgba(10,107,93,.4); }
}
@media (prefers-reduced-motion: reduce) { .nav-blink-ghee { animation: none; } }

/* Right-side icon buttons — gold-edged with lift on hover */
.nav-account, .nav-wishlist, .nav-cart {
  transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, background .25s, border-color .25s;
}
.nav-account:hover, .nav-wishlist:hover, .nav-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45,74,30,.16);
}

/* Mobile gold CTA in the slide-out menu */
.mobile-cta-ghee {
  justify-content: center;
  margin: 8px 0 4px;
}
.mobile-cta-ghee::after { display: none; }

/* ============================================================
   SHARED TWO-TIER NAVBAR — used by every page (index, products,
   a2-ghee, blog, farm-life, customer …). 3-colour palette only.
   ============================================================ */
.nav-top{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px;min-height:var(--nav-top-h,104px)}
.nav-top .nav-search-wrap{justify-self:start}
.nav-top .nav-logo{justify-self:center}
.nav-top .nav-actions{justify-self:end}
.nav-logo{display:flex;align-items:center;margin:0}
.nav-logo img{height:var(--nav-logo-h,88px);width:auto;object-fit:contain;display:block}
.nav-search-wrap{position:relative;display:flex;align-items:center}
.nav-search-wrap .nav-search-input{width:var(--nav-search-w,300px);padding:11px 18px 11px 46px;border:1.5px solid var(--nav-search-border,#000);border-radius:50px;background:#fff;font-size:.9rem;color:var(--text-dark);outline:none;transition:var(--transition)}
.nav-search-wrap .nav-search-input::placeholder{color:#8B7355}
.nav-search-wrap .nav-search-input:focus{border-color:var(--forest);box-shadow:0 0 0 3px rgba(45,74,30,.16)}
.nav-search-wrap .nav-search-btn{position:absolute;left:15px;width:20px;height:20px;display:flex;align-items:center;justify-content:center;color:#000;background:none;border:none;z-index:1;cursor:pointer}
.nav-actions{display:flex;align-items:center;gap:12px}
.nav-account{display:inline-flex;align-items:center;gap:7px;padding:9px 15px;border:1.5px solid var(--border);border-radius:50px;color:var(--forest);font-size:.85rem;font-weight:600;background:#fff;cursor:pointer;transition:var(--transition)}
.nav-account:hover{background:var(--gold-pale);border-color:var(--forest)}
.nav-account svg{width:19px;height:19px;stroke:var(--forest)}
.nav-wishlist{position:relative;width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1.5px solid var(--border);transition:var(--transition)}
.nav-wishlist:hover{background:var(--gold-pale);border-color:var(--forest)}
.nav-wishlist svg{width:20px;height:20px;stroke:var(--forest)}
.nav-cats{border-top:1px solid var(--border);background:#fff}
.nav-cats-inner{display:flex;align-items:center;justify-content:center;gap:var(--nav-cat-gap,2px);height:56px}
.nav-cat-link{display:inline-flex;align-items:center;gap:7px;padding:8px 12px;font-size:.92rem;font-weight:700;letter-spacing:.3px;color:var(--forest);border-radius:50px;white-space:nowrap;transition:var(--transition)}
.nav-cat-link:hover{background:var(--gold-pale);color:var(--forest)}
.nav-cat-ico{display:inline-flex;align-items:center;justify-content:center;line-height:0}
.nav-cat-ico svg{width:var(--nav-icon-size,17px);height:var(--nav-icon-size,17px);stroke:currentColor;fill:none}
.nav-hide-icons .nav-cat-ico{display:none}
/* Our Products dropdown */
.nav-cat-dd{position:relative;display:inline-flex}
.nav-cat-dd::after{content:"";position:absolute;top:100%;left:0;right:0;height:14px}
.nav-dd-caret{font-size:.58rem;margin-left:4px;transition:transform .2s}
.nav-cat-dd:hover .nav-dd-caret{transform:rotate(180deg)}
.nav-dd-panel{position:absolute;top:calc(100% + 9px);left:50%;transform:translateX(-50%) translateY(6px);min-width:250px;background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:0 16px 40px rgba(0,0,0,.13);padding:8px;opacity:0;visibility:hidden;transition:opacity .18s,transform .18s;z-index:1200}
.nav-cat-dd:hover .nav-dd-panel{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.nav-dd-item{display:flex;align-items:center;gap:11px;padding:9px 12px;border-radius:10px;color:var(--forest);font-size:.86rem;font-weight:700;white-space:nowrap;transition:background .15s}
.nav-dd-item:hover{background:var(--gold-pale)}
.nav-dd-item small{display:block;font-weight:400;font-size:.72rem;color:var(--text-soft);margin-top:1px}
.nav-dd-ico{flex:0 0 auto;display:inline-flex;width:20px;height:20px;color:var(--forest)}
.nav-dd-ico svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.nav-dd-sep{height:1px;background:var(--border);margin:6px}
.nav-cat-dd.dd-right .nav-dd-panel{left:auto;right:0;transform:translateY(6px)}
.nav-cat-dd.dd-right:hover .nav-dd-panel{transform:translateY(0)}
@media(max-width:768px){.nav-dd-panel{display:none !important}.nav-dd-caret{display:none}}
.nav-cat-wa{background:var(--forest);color:#fff !important;box-shadow:0 4px 12px rgba(45,74,30,.30)}
.nav-cat-wa:hover{background:var(--forest-mid);color:#fff !important}
.nav-cat-wa svg{width:16px;height:16px;fill:#fff;stroke:none}
@media(max-width:1024px){.nav-top .nav-search-wrap .nav-search-input{width:180px}.nav-account .nav-acct-label{display:none}.nav-account{padding:9px}}
@media(max-width:768px){
  .nav-top{grid-template-columns:auto 1fr auto;min-height:60px;gap:10px}
  .nav-top .nav-search-wrap .nav-search-input{display:none}
  .nav-top .nav-search-wrap.open .nav-search-input{display:block;position:absolute;top:48px;left:0;width:72vw;z-index:30;background:#fff}
  .nav-top .nav-search-wrap .nav-search-btn{position:static;width:40px;height:40px;border:1.5px solid var(--border);border-radius:50%;color:var(--forest)}
  .nav-logo img{height:46px}
  .nav-account{display:none}
  .nav-hamburger{display:flex !important}
  .nav-cats{overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none}
  .nav-cats::-webkit-scrollbar{display:none}
  .nav-cats-inner{justify-content:flex-start;height:50px;padding:0 6px;gap:4px}
  .nav-cat-link{padding:7px 14px;font-size:.82rem}
}
@media(max-width:480px){.nav-logo img{height:40px}.nav-cart,.nav-wishlist{width:38px !important;height:38px !important}}

/* Simple content-page hero + cards used by blog / farm-life / customer pages */
.page-hero{background:var(--forest);color:#fff;text-align:center;padding:54px 20px}
.page-hero h1{color:#fff;font-size:clamp(1.8rem,4vw,2.6rem);margin:0 0 10px}
.page-hero p{color:rgba(255,255,255,.85);max-width:640px;margin:0 auto;font-size:1rem}
.page-wrap{max-width:1180px;margin:0 auto;padding:54px 20px}
.page-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pg-card{background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;display:flex;flex-direction:column;transition:var(--transition)}
.pg-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);border-color:var(--forest)}
.pg-card .pg-media{height:190px;background:#f4f4ef;overflow:hidden}
.pg-card .pg-media img{width:100%;height:100%;object-fit:cover}
.pg-card .pg-body{padding:20px;display:flex;flex-direction:column;flex:1}
.pg-card h3{color:var(--forest);font-size:1.1rem;margin:0 0 8px}
.pg-card p{color:var(--text-mid);font-size:.9rem;line-height:1.6;margin:0 0 14px;flex:1}
.pg-card .pg-link{color:var(--brown);font-weight:700;font-size:.85rem}
@media(max-width:980px){.page-cards{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.page-cards{grid-template-columns:1fr}}
