/* ==========================================================================
   NELLAI NATURES — Design Tokens
   Signature motif: the "ஆணி" (press-axle) mark — a slow-turning circular
   wheel referencing the chekku (wooden cold-press). It appears as the
   scroll-progress ring, section dividers, and the loader — because the
   brand's whole story is "slow turning, honest extraction."
   ========================================================================== */

:root {
  /* Color tokens — brand palette (Deep Forest Green / Cream / Natural Brown / Subtle Gold) */
  --green: #0E5A3A;
  --green-dark: #0A3D27;
  --cream: #FFF8EF;
  --gold: #C89B3C;
  --brown: #5A3A22;
  --text: #2C2C2C;
  --white: #FFFFFF;
  --bg-light: #F7F8F5;

  /* Derived tones */
  --green-tint: #E2EBE7;
  --gold-tint: #F6ECD9;
  --line: rgba(44, 44, 44, 0.1);
  --shadow-soft: 0 12px 32px rgba(18, 71, 45, 0.10);
  --shadow-lift: 0 20px 48px rgba(18, 71, 45, 0.18);

  /* Type — Poppins for headings/UI, Inter for body copy, Noto Sans Tamil for Tamil script */
  --font: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-tamil: 'Noto Sans Tamil', sans-serif;

  /* Radii / spacing rhythm */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --section-pad: 6.5rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

p { font-family: var(--font-body); }

.tamil { font-family: var(--font-tamil); }

.container-xl {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--green-dark);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-heading {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 0.9rem;
}

.section-sub {
  color: #5b5b54;
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.75rem;
}

.section-head-center { text-align: center; }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.3s ease, color 0.3s ease, border-color .3s ease;
  white-space: nowrap;
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

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

.btn-outline-dark {
  background: transparent;
  border-color: var(--green);
  color: var(--green-dark);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-gold:hover {
  background: #b4872f;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.announcement-bar {
  background: var(--green-dark);
  color: var(--cream);
  font-size: 0.85rem;
  padding: 0.55rem 0;
  overflow: hidden;
}

.announcement-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.announcement-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.02em;
}

.announcement-track .tamil { font-weight: 500; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.navbar.nav-hidden { transform: translateY(-100%); }
.navbar.nav-scrolled { box-shadow: 0 8px 24px rgba(18,71,45,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
}

@keyframes slow-turn {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-dark);
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ==========================================================================
   Hero Slider
   ========================================================================== */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: clamp(520px, 50vw, 900px);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  transition: opacity 0.7s ease;
  background-size: cover;
  background-position: center 82%;
  background-repeat: no-repeat;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Slide backgrounds + colour themes
   background-color is a same-tone fallback shown while the (larger)
   background-image is still decoding, so no white flash is visible. */
.slide-coconut {
  background-color: #f4f0d9;
  background-image: url('../images/slider1.png');
  --slide-text: var(--text);
  --slide-text-soft: #4c4c46;
  --slide-accent: var(--green);
  --slide-badge-bg: var(--green-tint);
  --slide-badge-border: rgba(31,109,67,0.22);
}
.slide-groundnut {
  background-color: #f7f1d0;
  background-image: url('../images/slider2.png');
  --slide-text: var(--text);
  --slide-text-soft: #55524a;
  --slide-accent: #D4A017;
  --slide-badge-bg: #FAF4E3;
  --slide-badge-border: rgba(212,160,23,0.28);
}
.slide-sesame {
  background-color: #f7ecdc;
  background-image: url('../images/slider3.png');
  --slide-text: var(--text);
  --slide-text-soft: #5c5148;
  --slide-accent: #5A3A22;
  --slide-badge-bg: #EBE7E4;
  --slide-badge-border: rgba(90,58,34,0.24);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.68) 32%, rgba(255,255,255,0.18) 56%, rgba(255,255,255,0) 68%);
  pointer-events: none;
}

/* Soft fade so the photo's bottom edge blends into the section below
   instead of ending on a hard line. */
.hero-slide::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(247,248,245,0) 0%, rgba(247,248,245,0.85) 100%);
  pointer-events: none;
}

.hero-slide .container-xl {
  position: relative;
  z-index: 2;
}

.hero-slide-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--slide-accent);
  background: var(--slide-badge-bg);
  border: 1px solid var(--slide-badge-border);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.hero-badge .tamil { font-weight: 600; }

.hero-slide-content h1 {
  color: var(--slide-text);
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.hero-slide-content h1 .accent { color: var(--slide-accent); }

.hero-slide-tagline {
  color: var(--slide-accent);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--slide-badge-border);
}

.hero-slide-desc {
  color: var(--slide-text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-feature-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  padding: 0;
  margin: 0 0 2rem;
}
.hero-feature-row li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--slide-text);
}
.hero-feature-row li i { color: var(--slide-accent); }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-outline-accent {
  background: transparent;
  border-color: var(--slide-accent);
  color: var(--slide-accent);
}
.btn-outline-accent:hover {
  background: var(--slide-accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, transform 0.3s ease;
}
.slider-arrow:hover { background: var(--white); transform: translateY(-50%) scale(1.08); }
.slider-arrow.prev { left: clamp(0.75rem, 3vw, 2.5rem); }
.slider-arrow.next { right: clamp(0.75rem, 3vw, 2.5rem); }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.slider-dot.active { background: var(--gold); transform: scale(1.25); }

/* ==========================================================================
   Trust Section
   ========================================================================== */

.trust-section { padding: 5rem 0; background: var(--bg-light); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2.1rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}

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

.trust-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.trust-card:hover .trust-icon { background: var(--green); color: var(--white); }

.trust-card h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.88rem; color: #6b6b63; margin: 0; line-height: 1.6; }

/* ==========================================================================
   Products
   ========================================================================== */

.products-section { padding: var(--section-pad) 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color .4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card[data-href] { cursor: pointer; }
.product-card[data-href]:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}

.product-media {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--green-tint), var(--gold-tint));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 1.6rem; transition: transform .6s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }

.product-placeholder {
  font-size: 2.4rem;
  color: var(--green);
  opacity: 0.55;
}

.stock-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.stock-badge.out {
  background: #8a8a82;
}

.product-body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }

.product-body h4 { font-size: 1.08rem; margin-bottom: 0.3rem; }
.product-tagline { font-size: 0.85rem; color: #7a7a72; margin-bottom: 1rem; flex: 1; }

.price-row {
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.price-mrp { text-decoration: line-through; color: #a3a39c; font-size: 0.88rem; }
.price-sell { font-weight: 700; color: var(--green-dark); font-size: 1.2rem; }

.product-actions { display: flex; gap: 0.6rem; }
.product-actions .btn { flex: 1; padding: 0.7rem 0.8rem; font-size: 0.82rem; }

.product-card.out-of-stock .product-media { filter: grayscale(0.6); opacity: 0.7; }
.product-card.out-of-stock .btn-whatsapp { pointer-events: none; opacity: 0.45; }

/* ==========================================================================
   Process Timeline (Traditional Process section)
   ========================================================================== */

.process-section {
  padding: var(--section-pad) 0;
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.process-section .section-heading, .process-section h2 { color: var(--white); }
.process-section .section-sub { color: rgba(255,255,255,0.7); }

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.process-flow::before {
  content: '';
  position: absolute;
  top: 34px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(200,155,60,0.5) 0 10px, transparent 10px 20px);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,155,60,0.5);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
}

.process-step h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.62); line-height: 1.6; margin: 0; }

.process-video {
  margin-top: 3.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.play-btn {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.play-btn:hover { transform: scale(1.1); }

/* ==========================================================================
   Honey Section
   ========================================================================== */

.honey-section { padding: var(--section-pad) 0; background: var(--cream); }

.honey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.honey-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.6rem;
  align-items: start;
  box-shadow: var(--shadow-soft);
}

.honey-jar {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold), #e0b95f);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-size: 2rem;
}

.honey-card h4 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.honey-card p { font-size: 0.9rem; color: #6b6b63; line-height: 1.7; margin-bottom: 0.8rem; }
.honey-note {
  font-size: 0.8rem;
  color: var(--green);
  background: var(--green-tint);
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
}

/* ==========================================================================
   About Preview
   ========================================================================== */

.about-preview { padding: var(--section-pad) 0; }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--green-tint), var(--cream));
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-content p { color: #5b5b54; line-height: 1.85; margin-bottom: 1.6rem; font-size: 1.02rem; }

.about-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
.about-grid.reverse .about-media { order: 2; }
.about-grid.reverse .about-content { order: 1; }

/* ==========================================================================
   Quote Block (used for cultural / philosophy quotes)
   ========================================================================== */

.quote-block {
  padding: var(--section-pad) 0;
  background: linear-gradient(155deg, var(--green-tint), var(--gold-tint));
  text-align: center;
}
.quote-block .quote-mark { font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; font-family: Georgia, serif; }
.quote-block blockquote {
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 600;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 1.1rem;
}
.quote-block cite { display: block; font-style: normal; font-weight: 600; color: var(--gold); font-size: 0.92rem; letter-spacing: 0.02em; }
.quote-block .brand-tagline { margin-top: 2.2rem; padding-top: 1.8rem; border-top: 1px solid rgba(31,109,67,0.18); font-size: 1.15rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.01em; }
.quote-block .brand-tagline span { display: block; font-weight: 400; font-size: 0.95rem; color: #5b5b54; margin-top: 0.35rem; }

.process-flow.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* ==========================================================================
   Delivery Section
   ========================================================================== */

.delivery-section { padding: var(--section-pad) 0; background: var(--bg-light); }

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.delivery-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.4rem;
  border: 1px solid var(--line);
  position: relative;
}

.delivery-card.featured { border-color: var(--gold); background: var(--gold-tint); }

.delivery-badge {
  position: absolute; top: -14px; left: 2.4rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}

.delivery-card h4 { font-size: 1.2rem; margin-bottom: 1rem; }
.delivery-list { margin-top: 1rem; }
.delivery-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; color: #4a4a42;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--line);
}
.delivery-list li:last-child { border-bottom: none; }
.delivery-list li i { color: var(--green); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-section { padding: var(--section-pad) 0; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: box-shadow .35s ease, transform .35s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-6px); }

.stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.testimonial-card p.quote { font-size: 0.94rem; color: #4a4a42; line-height: 1.75; margin-bottom: 1.4rem; }

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.author-name { font-weight: 600; font-size: 0.92rem; }
.author-loc { font-size: 0.78rem; color: #8a8a82; }

.review-cta { text-align: center; margin-top: 2.5rem; }

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(200,155,60,0.18), transparent 45%);
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}
.cta-banner p { color: rgba(255,255,255,0.78); margin-bottom: 2.2rem; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--white); font-weight: 700; font-size: 1.2rem; margin-bottom: 1.2rem; }
.footer-logo-img { height: 72px; width: auto; }
.footer-col h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 1.2rem; letter-spacing: 0.03em; }
.footer-col p, .footer-col li { font-size: 0.88rem; line-height: 2; }
.footer-col a:hover { color: var(--gold); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.footer-badge { font-size: 0.72rem; border: 1px solid rgba(255,255,255,0.2); padding: 0.25rem 0.6rem; border-radius: 20px; }

.footer-social { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--green-dark); transform: translateY(-3px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 0;
  font-size: 0.82rem;
}

.back-to-top {
  position: fixed;
  right: 1.8rem; bottom: 1.8rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  z-index: 998;
  box-shadow: var(--shadow-lift);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.wa-float {
  position: fixed;
  left: 1.8rem; bottom: 1.8rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lift);
  z-index: 998;
  animation: pulse-wa 2.6s ease-in-out infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31,109,67,0.45), var(--shadow-lift); }
  50% { box-shadow: 0 0 0 10px rgba(31,109,67,0), var(--shadow-lift); }
}

/* Scroll progress ring (press-wheel signature) */
.scroll-ring {
  position: fixed;
  right: 1.8rem; bottom: 5.7rem;
  width: 48px; height: 48px;
  z-index: 997;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.scroll-ring.show { opacity: 1; }
.scroll-ring circle.bg { stroke: rgba(31,109,67,0.15); }
.scroll-ring circle.fg { stroke: var(--gold); transition: stroke-dashoffset 0.1s linear; }

/* ==========================================================================
   AOS-style reveal (fallback / complement to AOS lib)
   ========================================================================== */

[data-aos] { transition-property: transform, opacity; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow, .process-flow.cols-5 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-flow::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem clamp(1.25rem, 4vw, 3rem);
    gap: 1.2rem;
    box-shadow: var(--shadow-soft);
    border-top: 1px solid var(--line);
  }
  .hero-slide { min-height: 560px; background-position: 68% 82%; }
  .hero-slide::before { background: rgba(255,255,255,0.8); }
  .hero-slide-content { max-width: 100%; text-align: center; }
  .hero-slide-desc { margin-left: auto; margin-right: auto; }
  .hero-feature-row { justify-content: center; }
  .hero-cta { justify-content: center; }
  .slider-arrow { display: none; }
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; }
  .about-grid.reverse .about-media, .about-grid.reverse .about-content { order: initial; }
  .about-media { max-width: 420px; margin: 0 auto; }
  .honey-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .honey-card { grid-template-columns: 90px 1fr; padding: 1.8rem; }
  .honey-jar { width: 90px; height: 90px; font-size: 1.4rem; }
}

@media (max-width: 640px) {
  .logo-img { height: 40px; }
  .trust-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-flow, .process-flow.cols-5 { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .slider-arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  .slider-dots { bottom: 1rem; }
  .wa-float { width: 50px; height: 50px; font-size: 1.3rem; left: 1.2rem; bottom: 1.2rem; }
  .back-to-top { right: 1.2rem; bottom: 1.2rem; }
}

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

/* ==========================================================================
   INNER PAGES — shared components (about, products, details, blogs, contact)
   ========================================================================== */

.page-hero {
  background: linear-gradient(160deg, var(--green-dark) 0%, #0e3a24 60%, #0a2e1c 100%);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 4rem;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 620px; margin: 0 auto; font-size: 1.02rem; line-height: 1.7; }

.breadcrumb-strip {
  background: var(--bg-light);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #6b6b63;
  border-bottom: 1px solid var(--line);
}
.breadcrumb-strip a { color: #6b6b63; }
.breadcrumb-strip a:hover { color: var(--green); }
.breadcrumb-strip i { font-size: 0.65rem; margin: 0 0.4rem; }
.breadcrumb-strip span { color: var(--green-dark); font-weight: 500; }

/* Filter tabs (products page) */
.filter-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.filter-tab {
  background: var(--bg-light);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-tab:hover { border-color: var(--green); color: var(--green-dark); }
.filter-tab.active { background: var(--green); border-color: var(--green); color: var(--white); }
.product-card.hidden-by-filter { display: none; }

/* Product detail page */
.product-detail-section { padding: var(--section-pad) 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.gallery-main {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--green-tint), var(--gold-tint));
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: 1rem;
  overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 2.4rem; }

/* Hover-to-zoom lens (product detail pages) */
.zoom-lens {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: rgba(255,255,255,0.35);
  cursor: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 10;
}
.zoom-lens.active { opacity: 1; }

.zoom-result {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background-repeat: no-repeat;
  background-color: var(--white);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 500;
  transition: opacity 0.15s ease;
}
.zoom-result.active { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
  .zoom-lens, .zoom-result { display: none !important; }
}

@media (hover: hover) and (pointer: fine) {
  .gallery-main { cursor: zoom-in; }
}

.gallery-thumbs { display: flex; gap: 0.9rem; }
.gallery-thumb {
  width: 70px; height: 70px;
  border-radius: var(--r-sm);
  background: var(--bg-light);
  border: 2px solid transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  cursor: pointer;
  transition: border-color 0.25s ease;
  overflow: hidden;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 0.4rem; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--green); }

.detail-info .detail-tagline { color: #6b6b63; font-size: 1.02rem; line-height: 1.7; margin: 1rem 0 1.6rem; }

.detail-price-row { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 1.8rem; }
.detail-price-row .price-sell { font-size: 1.6rem; }
.price-save { background: var(--green-tint); color: var(--green-dark); font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 20px; }

.price-selector { margin-bottom: 2rem; }
.ps-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.7rem; }
.ps-options { display: flex; gap: 0.7rem; }
.ps-option {
  font-family: var(--font);
  background: var(--white);
  border: 2px solid var(--line);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.25s ease;
}
.ps-option.active, .ps-option:hover { border-color: var(--green); color: var(--green-dark); background: var(--green-tint); }

.detail-cta { margin-bottom: 1.8rem; }
.detail-cta .btn { width: 100%; }

.detail-meta-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; color: #4a4a42;
  padding: 0.5rem 0;
}
.detail-meta-list li i { color: var(--green); }

.detail-section-block { margin-bottom: 3.5rem; }
.detail-section-block h3 { font-size: 1.4rem; margin-bottom: 1.6rem; color: var(--green-dark); }

.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.benefit-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-light);
  border-radius: var(--r-sm);
  padding: 1.2rem 1.4rem;
  font-size: 0.92rem;
}
.benefit-item i { color: var(--green); font-size: 1.2rem; }

.process-flow-mini { display: flex; flex-wrap: wrap; gap: 1rem; }
.mini-step {
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--green-tint);
  color: var(--green-dark);
  padding: 0.8rem 1.3rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
}
.mini-step span {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.accordion-simple details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.accordion-simple summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.98rem;
  list-style: none;
}
.accordion-simple summary::-webkit-details-marker { display: none; }
.accordion-simple summary::before {
  content: '+';
  display: inline-block;
  width: 18px;
  color: var(--gold);
  font-weight: 700;
}
.accordion-simple details[open] summary::before { content: '\2212'; }
.accordion-simple p { color: #6b6b63; font-size: 0.9rem; line-height: 1.7; margin: 0.8rem 0 0 1.6rem; }

.related-grid { grid-template-columns: repeat(3, 1fr); }

.sticky-order-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(18,71,45,0.08);
  padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 996;
}
.sticky-order-bar .price-sell { font-size: 1.15rem; margin-right: 0.5rem; }

@media (max-width: 767px) {
  .detail-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .sticky-order-bar { display: flex; }
  body { padding-bottom: 78px; }
}

/* Blogs listing */
.blogs-section { padding: var(--section-pad) 0; }
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.blog-media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--green-tint), var(--gold-tint));
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 2rem;
}
.blog-body { padding: 1.6rem 1.6rem 1.8rem; }
.blog-soon-tag {
  display: inline-block;
  background: var(--gold-tint);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}
.blog-body h4 { font-size: 1.08rem; margin-bottom: 1rem; line-height: 1.4; }
.blog-read-link { font-size: 0.88rem; font-weight: 600; color: var(--green-dark); display: inline-flex; align-items: center; gap: 0.5rem; }
.blog-read-link i { font-size: 0.75rem; transition: transform 0.25s ease; }
.blog-card:hover .blog-read-link i { transform: translateX(4px); }

/* Blog detail */
.blog-detail-section { padding: var(--section-pad) 0; max-width: 820px; margin: 0 auto; }
.blog-detail-header { text-align: center; margin-bottom: 2.5rem; }
.blog-detail-header h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: 1rem 0 1rem; }
.blog-meta { color: #8a8a82; font-size: 0.88rem; }
.blog-meta .dot { margin: 0 0.6rem; }
.blog-detail-media {
  aspect-ratio: 16/8;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--green-tint), var(--gold-tint));
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 2.6rem;
  margin-bottom: 2.5rem;
}
.blog-detail-body p { font-size: 1.02rem; line-height: 1.85; color: #4a4a42; margin-bottom: 1.5rem; }
.blog-detail-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Contact page */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; }

.contact-info-card {
  display: flex; gap: 1.1rem;
  padding: 1.3rem 0;
  border-bottom: 1px dashed var(--line);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-card i { font-size: 1.3rem; color: var(--green); margin-top: 0.2rem; width: 28px; flex-shrink: 0; }
.contact-info-card h5 { font-size: 0.98rem; color: var(--green-dark); margin-bottom: 0.4rem; }
.contact-info-card p { font-size: 0.9rem; color: #5b5b54; line-height: 1.6; margin: 0; }
.contact-info-card a { color: var(--green-dark); font-weight: 500; }
.contact-info-card a:hover { color: var(--green); }

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/8;
  margin-bottom: 1.75rem;
  border: 1px solid var(--line);
}

.contact-form {
  background: var(--bg-light);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.contact-form h5 { font-size: 1.1rem; margin-bottom: 1.3rem; color: var(--green-dark); }
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: var(--font);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.92rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .btn { width: 100%; border: none; }

@media (max-width: 767px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blogs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .blogs-grid { grid-template-columns: 1fr; }
}
