/* Aadi Aarambh — Modern Brand Theme */
:root {
  --green-dark: #071a10;
  --green-mid: #0f2e1f;
  --green-light: #1b5e3a;
  --green-accent: #2d8a5c;
  --green-glow: rgba(45, 138, 92, 0.25);
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a68a1f;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --cream: #f7f4ed;
  --cream-dark: #ebe4d6;
  --white: #ffffff;
  --text: #1a1f1c;
  --text-muted: #5c6560;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(212, 175, 55, 0.2);
  --shadow: 0 4px 30px rgba(7, 26, 16, 0.08);
  --shadow-lg: 0 20px 60px rgba(7, 26, 16, 0.14);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-brand: "Cinzel", "Georgia", serif;
  --font-serif: "Cinzel", "Georgia", serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(45, 138, 92, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ── */
.site-header {
  background: linear-gradient(180deg, var(--green-dark) 0%, rgba(7, 26, 16, 0.97) 100%);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo,
.logo-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: none;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 2px 8px var(--gold-glow));
  transition: transform var(--transition), filter var(--transition);
}

.logo-link:hover .brand-logo,
.logo-link:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 16px var(--gold-glow));
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-text .brand-small {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1;
}

.logo-text .brand-small::before,
.logo-text .brand-small::after {
  content: "";
  height: 1px;
  width: 18px;
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.85;
}

.logo-text .brand-small::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.logo-text .brand-main {
  font-family: var(--font-brand);
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
  text-shadow: 0 1px 12px rgba(212, 175, 55, 0.25);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  color: rgba(247, 244, 237, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav a.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.1));
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 45%, #163d28 100%);
  color: var(--cream);
  padding: 5rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,39,0.12) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(64,145,108,0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero-text h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-text .tagline-hindi {
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.hero-text p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: min(300px, 75vw);
  filter: drop-shadow(0 12px 40px rgba(212, 175, 55, 0.35));
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-green {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}

.btn-green:hover {
  background: var(--green-accent);
  border-color: var(--green-accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Sections ── */
section { padding: 4.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

/* ── Category Cards ── */
#categories {
  background: linear-gradient(165deg, #0a1f14 0%, var(--green-dark) 50%, #0d2818 100%);
  position: relative;
}

#categories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

#categories .section-header h2 { color: var(--gold-light); }
#categories .section-header p { color: rgba(247, 244, 237, 0.7); }
#categories .section-eyebrow { color: var(--gold); }
#categories .container { position: relative; z-index: 1; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.category-card {
  position: relative;
  background: linear-gradient(160deg, rgba(15, 46, 31, 0.95) 0%, rgba(7, 26, 16, 0.98) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0);
  transition: box-shadow 0.45s ease;
  pointer-events: none;
  z-index: 4;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 36px rgba(212, 175, 55, 0.18);
}

.category-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.35), inset 0 0 24px rgba(212, 175, 55, 0.06);
}

.category-card-media {
  position: relative;
  margin: 0;
  height: 230px;
  overflow: hidden;
  background: var(--green-dark);
}

.category-card-zoom {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

.category-card:hover .category-card-zoom {
  transform: scale(1.1);
}

.category-card-panels {
  display: grid;
  height: 100%;
  width: 100%;
  gap: 0;
}

.category-card-panels--2 { grid-template-columns: 1fr 1fr; }
.category-card-panels--3 { grid-template-columns: repeat(3, 1fr); }

.category-card-panels img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.category-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(212, 175, 55, 0.12) 48%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.category-card:hover .category-card-media::before {
  opacity: 1;
}

.category-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(7, 26, 16, 0.92) 0%, rgba(7, 26, 16, 0.12) 50%, transparent 100%);
  pointer-events: none;
}

.category-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  font-family: var(--font-brand);
  color: var(--gold-light);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.15rem;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: color 0.4s ease, letter-spacing 0.4s ease;
}

.category-card:hover .category-card-label {
  color: #fff;
  letter-spacing: 0.16em;
}

.category-card-body {
  padding: 1.4rem 1.5rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 40px;
  align-content: flex-start;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 0.45rem 0.95rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.category-card:hover .product-tag {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.5);
}

.pack-row { margin-top: auto; }

.pack-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(212, 175, 55, 0.7);
  margin-bottom: 0.5rem;
}

.pack-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pack-badge {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 244, 237, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.26rem 0.65rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.category-card .pack-badge {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 244, 237, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.category-card-action {
  padding: 0 1.5rem 1.5rem;
  margin-top: auto;
}

.category-card-action .btn,
.category-card-action .btn-gold {
  width: 100%;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  display: block;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card-action .btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark);
  border: none;
}

.category-card-action .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
  color: var(--green-dark);
}

/* legacy selectors kept for other pages */
.category-card-header { display: none; }

.category-card-body ul { display: none; }

/* ── Feature Cards (trendy hover) ── */
.section-features {
  background: linear-gradient(165deg, #0a1f14 0%, var(--green-dark) 40%, #0d2818 100%);
  position: relative;
  overflow: hidden;
}

.section-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(45, 138, 92, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.section-features .section-header h2 { color: var(--gold-light); }
.section-features .section-header p { color: rgba(247, 244, 237, 0.75); }
.section-features .section-eyebrow { color: var(--gold); }

.features-slider-viewport {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.features-slider-viewport::before,
.features-slider-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.features-slider-viewport::before {
  left: 0;
  background: linear-gradient(to right, #0d2818 15%, transparent);
  opacity: 0;
}

.features-slider-viewport::after {
  right: 0;
  background: linear-gradient(to left, #0a1f14 15%, transparent);
  opacity: 1;
}

.features-slider-viewport.is-scrolled::before { opacity: 1; }
.features-slider-viewport.is-scrolled::after { opacity: 0; }

.features-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.feature-card {
  position: relative;
  flex: 0 0 calc((100% - 3.75rem) / 4);
  min-width: 0;
  padding: 1.75rem 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
  cursor: default;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.feature-card--link { cursor: pointer; }

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(15, 46, 31, 0.95) 0%, rgba(7, 26, 16, 0.98) 100%);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card--1::after { background: linear-gradient(135deg, rgba(45, 138, 92, 0.2), transparent); }
.feature-card--2::after { background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent); }
.feature-card--3::after { background: linear-gradient(135deg, rgba(27, 94, 58, 0.25), transparent); }
.feature-card--4::after { background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(45, 138, 92, 0.1)); }
.feature-card--5::after { background: linear-gradient(135deg, rgba(45, 138, 92, 0.12), rgba(212, 175, 55, 0.1)); }

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.08);
}

.feature-card:hover::before {
  opacity: 0.85;
  background: linear-gradient(145deg, rgba(27, 94, 58, 0.9) 0%, rgba(7, 26, 16, 0.95) 100%);
}

.feature-card-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-brand);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.5);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.feature-card-icon {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  transition: background 0.4s ease, transform 0.4s ease;
}

.feature-card:hover .feature-card-icon {
  background: rgba(212, 175, 55, 0.22);
  transform: scale(1.1);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.feature-card-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.feature-lead {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(247, 244, 237, 0.55);
  letter-spacing: 0.02em;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.feature-detail {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(247, 244, 237, 0.88);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;
}

.feature-card:hover .feature-lead {
  opacity: 0;
  transform: translateY(-6px);
  position: absolute;
  pointer-events: none;
}

.feature-card:hover .feature-detail {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}

.feature-card-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.feature-card--link:hover .feature-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.feature-card--link { color: inherit; }
.feature-card--link:hover { color: inherit; }

/* ── WhatsApp ── */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #25d366 !important;
  font-weight: 600;
}

.whatsapp-link:hover { color: #5dff8f !important; }

.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-fab svg { width: 28px; height: 28px; }

.footer-address {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(250, 248, 243, 0.75);
  margin-bottom: 0.75rem;
}

.footer-address strong { color: var(--gold-light); }

@media (hover: none) {
  .feature-lead { display: none; }
  .feature-detail {
    opacity: 1;
    max-height: none;
    transform: none;
  }
  .feature-card-cta {
    opacity: 1;
    transform: none;
  }
  .category-card:hover .category-card-zoom {
    transform: none;
  }
}

/* ── Buyer Types ── */
.buyer-types {
  background: var(--green-dark);
  color: var(--cream);
}

.buyer-types .section-header h2 { color: var(--gold); }
.buyer-types .section-header p { color: rgba(250,248,243,0.8); }

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.buyer-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}

.buyer-card:hover {
  background: rgba(201,162,39,0.1);
  border-color: var(--gold);
}

.buyer-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.buyer-card h3 {
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.buyer-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ── Products Page ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--cream);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-brand);
  color: var(--gold-light);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-hero p { opacity: 0.9; font-size: 1.1rem; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--green-light);
  background: var(--white);
  color: var(--green-dark);
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover { transform: translateY(-4px); }

.product-card-image {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--green-mid);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-image--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(145deg, var(--green-mid), var(--green-accent));
}

.product-card-body { padding: 1.5rem; }

.product-card-body .category-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}


.product-card-body .pack-badge {
  background: rgba(7, 26, 16, 0.05);
  color: var(--green-mid);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.product-card-body .pack-sizes { margin-top: 0; }

/* ── Forms ── */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-dark);
}

.form-group label .required { color: #c0392b; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-success.show { display: block; }

/* ── Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--green-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-card h2 {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item .icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--gold-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-item p, .contact-item a {
  color: var(--cream);
  font-size: 1rem;
}

.contact-item a:hover { color: var(--gold-light); }

/* ── Packaging Locator ── */
.locator-search {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
}

.locator-search .search-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: end;
}

.locator-search .search-row .btn {
  width: 100%;
  min-height: 48px;
}

.locator-results {
  display: grid;
  gap: 1rem;
}

.locator-result {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.locator-result h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.locator-result .meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.locator-result .availability {
  font-weight: 700;
  color: var(--green-accent);
  font-size: 0.9rem;
}

.locator-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--green-dark);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--green-dark);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.cta-banner .btn-primary {
  background: var(--green-dark);
  color: var(--gold);
  border-color: var(--green-dark);
}

.cta-banner .btn-primary:hover {
  background: var(--green-mid);
  color: var(--gold-light);
}

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(250,248,243,0.85);
  margin-top: auto;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 80px;
  border: none;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 2px 12px var(--gold-glow));
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(250,248,243,0.75);
  font-size: 0.9rem;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .categories-grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-logo { order: -1; }
  .hero-logo img { width: 200px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locator-search .search-row { grid-template-columns: 1fr; }

  .features-slider-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .features-slider-viewport::-webkit-scrollbar { display: none; }

  .features-slider-viewport::before,
  .features-slider-viewport::after { display: none; }

  .features-grid {
    transform: none !important;
  }

  .feature-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 1rem;
    border-top: 1px solid rgba(201,162,39,0.2);
  }

  .main-nav.open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .locator-result { grid-template-columns: 1fr; }
  .packing-unit-card { grid-template-columns: 1fr; }
}

/* ── Packing Units (Packaging Locator) ── */
.mp-banner {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  color: var(--cream);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.mp-banner .mp-flag { font-size: 2.5rem; }

.mp-banner h2 {
  color: var(--gold-light);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.mp-banner p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.units-overview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.unit-overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.unit-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.unit-overview-card .unit-pin { font-size: 1.75rem; margin-bottom: 0.5rem; }

.unit-overview-card h3 {
  font-size: 1.2rem;
  color: var(--green-mid);
  margin-bottom: 0.25rem;
}

.unit-overview-card .unit-district {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.unit-overview-card .unit-products {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.packing-results {
  display: grid;
  gap: 1.5rem;
}

.packing-unit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
  transition: box-shadow var(--transition);
}

.packing-unit-card:hover { box-shadow: var(--shadow-lg); }

.packing-unit-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 1.5rem 2rem;
  color: var(--cream);
}

.unit-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.packing-unit-header h4 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.facility-name {
  font-size: 0.9rem;
  opacity: 0.85;
}

.packing-unit-body { padding: 1.75rem 2rem; }

.unit-location {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dark);
}

.unit-location .loc-icon { font-size: 1.25rem; }

.unit-location strong {
  display: block;
  color: var(--green-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.unit-location span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.unit-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.unit-detail { margin-bottom: 1rem; }

.detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-chip {
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--cream);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.locator-empty .empty-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.locator-empty .empty-hint { margin-top: 0.5rem; font-size: 0.95rem; }

.page-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.page-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  transition: all var(--transition);
}

.page-tab:hover,
.page-tab.active {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .units-overview { grid-template-columns: 1fr; }
  .mp-banner { flex-direction: column; text-align: center; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ── About Page ── */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--green-dark);
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/products/about-farm.jpg") center/cover no-repeat;
  opacity: 0.35;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-hero h1 {
  color: var(--gold-light);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
}

.about-hero .lead {
  color: rgba(247, 244, 237, 0.92);
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-hero .tagline-hindi {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.about-story-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-accent));
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--green-mid);
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.values-strip {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--cream);
  text-align: center;
}

.values-strip h2 {
  color: var(--gold-light);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.values-strip p {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.9;
  font-size: 1.05rem;
  line-height: 1.75;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.85rem;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* ── Modern button polish ── */
.btn {
  border-radius: 10px;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-mid), var(--green-accent));
}
