/* ==========================================================================
   VALENTIA FARM FRESH - DESI & LUXURY DAIRY WEBSITE STYLESHEET
   Authentic Desi Aesthetics + Posh Society Doorstep Delivery Architecture
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette - Desi Heritage & Pasture */
  --primary: #1e5a28;
  --primary-hover: #16461f;
  --primary-light: #eaf5ec;
  --primary-subtle: #f0f8f2;
  --accent-green: #388e3c;
  --accent-lime: #7cb342;
  
  /* Traditional Indian Gold, Amber & Terracotta */
  --gold: #c67d0a;
  --gold-vibrant: #e5910c;
  --gold-light: #fdf6e9;
  --gold-hover: #9c6004;
  --copper: #9c4d24;
  --saffron: #f28500;

  /* Neutrals & Surfaces */
  --bg-page: #fbf9f4;
  --bg-surface: #ffffff;
  --bg-alt: #f5f0e6;
  --bg-dark: #142217;
  --bg-dark-card: #1e3323;
  --bg-desi-card: #fffdf9;
  
  /* Text Colors */
  --text-dark: #192a1d;
  --text-body: #3c4f40;
  --text-muted: #6b7e6f;
  --text-light: #f5f9f6;
  --text-white: #ffffff;

  /* Borders & Shadows */
  --border-subtle: rgba(30, 90, 40, 0.12);
  --border-gold: rgba(198, 125, 10, 0.25);
  --border-light: #e8e2d5;
  --shadow-sm: 0 2px 8px rgba(22, 58, 28, 0.05);
  --shadow-md: 0 8px 24px rgba(22, 58, 28, 0.08);
  --shadow-lg: 0 16px 40px rgba(22, 58, 28, 0.12);
  --shadow-gold: 0 10px 30px rgba(198, 125, 10, 0.2);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1240px;
  --header-height: 80px;
}

/* --------------------------------------------------------------------------
   2. Modern Reset & Base Rules
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-body);
  background-color: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

.font-desi {
  font-family: 'Playfair Display', Georgia, serif;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Utility Classes & Layout Container
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.15rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(30, 90, 40, 0.2);
}

.badge-tag.gold {
  background-color: var(--gold-light);
  color: var(--gold);
  border-color: var(--border-gold);
}

.badge-tag svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Desi Ornamental Divider */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem auto 1.25rem;
}

.leaf-divider::before,
.leaf-divider::after {
  content: "";
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, rgba(198, 125, 10, 0.4), transparent);
}

.leaf-divider svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #287332 100%);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(30, 90, 40, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #184c20 0%, #206129 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 90, 40, 0.35);
  color: var(--text-white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #df8d0e 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(198, 125, 10, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(198, 125, 10, 0.45);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--primary-subtle);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   4. Top Notification / Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background-color: var(--bg-dark);
  color: #d1dfd4;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-lime);
}

.announcement-contact a {
  color: var(--text-white);
  font-weight: 600;
}

.announcement-contact a:hover {
  color: var(--accent-lime);
}

/* --------------------------------------------------------------------------
   5. Sticky Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(30, 90, 40, 0.08);
}

.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo-symbol {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
  color: white;
  flex-shrink: 0;
}

.logo-symbol svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

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

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.5px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.3vw, 1.4rem);
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.4rem 0.2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-fast);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.phone-quick-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--primary);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.phone-quick-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
}

.phone-quick-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.nav-sample-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  border-radius: var(--radius-xs);
  background-color: var(--primary-light);
  color: var(--primary);
}

.mobile-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1100;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f0f3f1;
  color: var(--text-dark);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.drawer-link:hover {
  color: var(--primary);
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   6. Hero Section (Desi + Posh Lucknow Touch)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #ebf5ee 0%, var(--bg-page) 70%);
  padding-top: 2.25rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subheadline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gold-light);
  color: var(--gold-hover);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.hero-title span.highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.hero-title span.highlight::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(217, 145, 30, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1.35rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trust-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  display: block;
}

/* Quick Product Calc Strip in Hero */
.hero-quick-calc-strip {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(212, 160, 23, 0.35);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  flex-wrap: wrap;
}

.calc-strip-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.calc-strip-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-strip-toggle {
  display: inline-flex;
  background: #edf3eb;
  padding: 3px;
  border-radius: var(--radius-sm);
  border: 1px solid #d7e4d5;
  gap: 4px;
}

.calc-strip-toggle .quick-toggle-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--text-dark);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all 0.18s ease;
}

.calc-strip-toggle .quick-toggle-btn.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.calc-strip-price strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-primary);
  display: block;
  line-height: 1;
}

.calc-strip-price small {
  font-size: 0.72rem;
  color: #c67d0a;
  font-weight: 600;
}

/* Hero Visual / Bottle Graphic (Authentic Valentia Hero Product Showcase) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}

.hero-product-halo {
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.28) 0%, rgba(212, 160, 23, 0.14) 45%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(18px);
  z-index: 1;
  pointer-events: none;
}

.hero-bottle-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottle-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 22px 35px rgba(27, 77, 34, 0.25));
  animation: heroBottleFloat 4.5s ease-in-out infinite alternate;
  transition: transform 0.35s ease;
}

.hero-bottle-img:hover {
  transform: scale(1.04) rotate(-1deg);
}

@keyframes heroBottleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Floating Badges on Hero */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  border: 1.5px solid rgba(212, 160, 23, 0.35);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatAnim 4.5s ease-in-out infinite alternate;
}

.floating-card-1 {
  top: 6%;
  right: -2%;
}

.floating-card-2 {
  top: 48%;
  left: -4%;
  animation-delay: 1.8s;
}

.floating-card-3 {
  bottom: 5%;
  right: 1%;
  animation-delay: 2.8s;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.badge-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}

.badge-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.badge-info span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. Real Cattle Showcase Section (Cow & Buffalo Side-by-Side)
   -------------------------------------------------------------------------- */
.cattle-section {
  background-color: #ffffff;
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cattle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.cattle-card {
  background: var(--bg-desi-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cattle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.cattle-img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.cattle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.cattle-card:hover .cattle-img {
  transform: scale(1.05);
}

.cattle-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(20, 34, 23, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cattle-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cattle-content h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cattle-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cattle-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.benefit-item span {
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   8. Why Pure Ghee Costs ₹1,200 - ₹1,800 vs ₹700 Market Ghee (Value Justification)
   -------------------------------------------------------------------------- */
.ghee-justification-section {
  background: linear-gradient(135deg, #fdf8ee 0%, #faefe0 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

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

.justification-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
  color: #4a2806;
}

.math-box {
  background: #ffffff;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  margin: 1.75rem 0;
}

.math-title {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.math-equation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px dashed var(--border-gold);
  border-bottom: 1px dashed var(--border-gold);
  font-size: 1.05rem;
  font-weight: 700;
  color: #3b2205;
}

.math-note {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: #7d501c;
  line-height: 1.5;
}

.comparison-pills {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comp-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-gold);
  font-size: 0.92rem;
}

.comp-pill strong {
  color: var(--gold);
}

.justification-visual {
  position: relative;
}

.ghee-feature-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--border-gold);
}

.ghee-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.ghee-price-box {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.ghee-price-box.gold {
  background: linear-gradient(135deg, #fff7ea 0%, #ffeed2 100%);
  border: 2px solid var(--gold);
}

.ghee-price-box h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.ghee-price-box .price-tag {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   9. Product Catalog & Pricing Section
   -------------------------------------------------------------------------- */
.products-section {
  background-color: var(--bg-alt);
}

.product-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.filter-tab:hover,
.filter-tab.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(30, 90, 40, 0.2);
}

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

.product-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46, 125, 50, 0.3);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background-color: var(--gold);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.product-badge.popular {
  background-color: var(--primary);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background-color: #f7f9f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  background-color: var(--primary-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.spec-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.spec-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 700;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price .price-val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.product-price .price-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. Interactive Milk Subscription Calculator
   -------------------------------------------------------------------------- */
.calculator-section {
  background: radial-gradient(circle at 10% 90%, #e8f4eb 0%, var(--bg-alt) 80%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.calculator-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.calc-form-side {
  padding: 3rem;
}

.calc-group {
  margin-bottom: 2rem;
}

.calc-label {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

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

.calc-option-btn {
  padding: 0.85rem 0.5rem;
  text-align: center;
  background-color: var(--bg-page);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.calc-option-btn:hover {
  border-color: var(--accent-green);
}

.calc-option-btn.active {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.calc-option-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.calc-option-btn.active .calc-option-title {
  color: var(--primary);
}

.calc-option-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-range-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.calc-slider {
  flex-grow: 1;
  height: 8px;
  border-radius: 4px;
  background: #d8e5db;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-range-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  min-width: 60px;
}

/* Calculator Summary Box */
.calc-summary-side {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
  color: var(--text-light);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary-header h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.calc-summary-header p {
  color: #a3b8a7;
  font-size: 0.9rem;
}

.calc-breakdown {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #c9dbcc;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breakdown-row strong {
  color: #ffffff;
}

.breakdown-row.total {
  font-size: 1.25rem;
  color: #ffffff;
  border-bottom: none;
  padding-top: 0.5rem;
}

.total-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #79d784;
}

.calc-savings-badge {
  background: rgba(217, 145, 30, 0.2);
  border: 1px solid rgba(217, 145, 30, 0.4);
  color: #f7bb63;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   11. Purity Comparison: Valentia vs Regular Commercial Milk
   -------------------------------------------------------------------------- */
.comparison-section {
  background-color: #ffffff;
}

.comparison-table-wrapper {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  padding: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-bottom: 2px solid var(--border-light);
}

.comparison-table th.col-feature {
  width: 36%;
  background-color: #fcfbf8;
  color: var(--text-dark);
}

.comparison-table th.col-valentia {
  width: 32%;
  background-color: var(--primary-light);
  color: var(--primary);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

.comparison-table th.col-regular {
  width: 32%;
  background-color: #f7f7f7;
  color: #666666;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.comparison-table td.col-valentia {
  background-color: rgba(234, 245, 236, 0.4);
  font-weight: 600;
  color: var(--primary);
  border-left: 1px solid var(--border-subtle);
  border-right: 1px solid var(--border-subtle);
}

.comparison-table td.col-regular {
  color: #777777;
}

.status-icon-yes {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.status-icon-no {
  color: #c62828;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* --------------------------------------------------------------------------
   12. Pincode / Posh Society Delivery Checker
   -------------------------------------------------------------------------- */
.pincode-section {
  background: linear-gradient(135deg, #1b4d24 0%, #0d2812 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.pincode-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  backdrop-filter: blur(12px);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pincode-wrapper h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.pincode-wrapper p {
  color: #c0d8c4;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.pincode-form {
  display: flex;
  max-width: 580px;
  margin: 0 auto 1.5rem auto;
  gap: 0.75rem;
}

.pincode-input {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
  transition: all var(--transition-fast);
}

.pincode-input:focus {
  border-color: var(--gold);
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(198, 125, 10, 0.4);
}

.pincode-result {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.pincode-result.success {
  color: #79e088;
}

.pincode-result.failure {
  color: #ff9800;
}

.popular-areas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: #a1c2a7;
}

.area-chip {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.area-chip:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}

/* --------------------------------------------------------------------------
   13. Customer Testimonials & Doctor Endorsements
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--bg-page);
}

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

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.25);
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  color: #f5a623;
  margin-bottom: 1.25rem;
}

.star-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   14. Certifications & Badges Strip
   -------------------------------------------------------------------------- */
.certifications-section {
  background-color: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cert-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.cert-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cert-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cert-text span {
  font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   15. FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--bg-alt);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  width: 100%;
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  text-align: left;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 1.75rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Contact & Free Trial Section
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-channels {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background-color: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.channel-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.channel-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.channel-text a, .channel-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background-color: #fdfdfd;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
  background-color: #ffffff;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* --------------------------------------------------------------------------
   17. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: #c2d4c5;
  padding-top: 5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: #a4bca8;
  line-height: 1.65;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #a4bca8;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.app-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-fast);
}

.app-badge-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #849e88;
}

/* --------------------------------------------------------------------------
   18. Modals & Interactive Overlays
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18, 33, 21, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  border: 1px solid var(--border-light);
}

.modal-overlay.active .modal-dialog {
  transform: scale(1);
}

.modal-header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.45rem;
  color: var(--text-dark);
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f1f5f2;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.modal-close-btn:hover {
  background-color: #e2e9e3;
}

.modal-body {
  padding: 2rem;
}

/* --------------------------------------------------------------------------
   19. Floating Actions (WhatsApp, Quick Call, Scroll to Top)
   -------------------------------------------------------------------------- */
.floating-actions-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 990;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transition: all var(--transition-normal);
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.float-whatsapp {
  background-color: #25d366;
}

.float-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.float-call {
  background-color: var(--primary);
}

.float-call svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.scroll-top-btn {
  background-color: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border-light);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  pointer-events: none;
}

.toast {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   20. Responsive Media Queries
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   20. Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1280px) {
  .phone-quick-btn {
    display: none;
  }
  .nav-links {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 0.88rem;
  }
}

@media (max-width: 1140px) {
  :root {
    --header-height: 70px;
  }

  .announcement-bar {
    display: none;
  }

  .nav-links,
  .phone-quick-btn {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-quick-calc-strip {
    justify-content: center;
  }

  .hero-trust-bar {
    max-width: 600px;
    margin: 0 auto;
  }

  .cattle-grid {
    grid-template-columns: 1fr;
  }

  .justification-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator-card {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 66px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
    letter-spacing: 1px;
  }

  .nav-sample-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }

  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-section {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }

  .hero-quick-calc-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1.1rem;
  }

  .hero-quick-calc-strip .calc-strip-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .hero-quick-calc-strip #hero-start-today-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .calc-form-side,
  .calc-summary-side {
    padding: 2rem 1.5rem;
  }

  .calc-options-grid {
    grid-template-columns: 1fr;
  }

  .comparison-table-wrapper {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 600px;
  }

  .pincode-wrapper {
    padding: 2.5rem 1.5rem;
  }

  .pincode-form {
    flex-direction: column;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-card-1 {
    top: 4%;
    left: 2%;
  }

  .floating-card-2 {
    bottom: 4%;
    right: 2%;
  }

  .ghee-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    gap: 0.5rem;
  }

  .logo-symbol {
    width: 34px;
    height: 34px;
  }

  .logo-symbol svg {
    width: 20px;
    height: 20px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.8px;
  }

  .nav-sample-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }

  .floating-actions-bar {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }

  .float-whatsapp svg {
    width: 26px;
    height: 26px;
  }

  .float-call svg {
    width: 20px;
    height: 20px;
  }
}

/* --------------------------------------------------------------------------
   21. Product-First E-Commerce Vibe, Bottle Steppers & "Start Today" System
   -------------------------------------------------------------------------- */

/* Tactile Bottle Stepper */
.bottle-stepper {
  display: inline-flex;
  align-items: center;
  background: #f4f7f2;
  border: 1.5px solid #d7e2d4;
  border-radius: 30px;
  padding: 3px 5px;
  gap: 6px;
}

.step-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  transition: all 0.18s ease;
  user-select: none;
  line-height: 1;
}

.step-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08);
}

.step-btn:active {
  transform: scale(0.92);
}

.qty-display {
  min-width: 72px;
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-family: var(--font-primary);
}

/* Product Card Upgrades */
.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 160, 23, 0.4);
}

.card-bottle-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.85rem 0 0.5rem;
  padding: 0.5rem 0.6rem;
  background: #fafbf9;
  border-radius: var(--radius-xs);
  border: 1px solid #edf2eb;
}

.card-selector-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Dynamic Delivery Fee Indicator */
.delivery-fee-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  padding: 5px 8px;
  border-radius: 6px;
  background: #fbfdfa;
  border: 1px dashed #d0e0cd;
  margin-bottom: 0.85rem;
}

.fee-badge-paid {
  color: #c67d0a;
  font-weight: 700;
}

.fee-badge-free {
  color: #2e7d32;
  font-weight: 800;
  background: #e8f5e9;
  padding: 2px 7px;
  border-radius: 10px;
  font-size: 0.74rem;
}

/* Big Vibrant "Start Today" Button */
.btn-start-today {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1.25rem;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: var(--font-primary);
  background: linear-gradient(135deg, #246d32 0%, #174b20 100%);
  color: #ffffff !important;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(23, 75, 32, 0.25);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-start-today:hover {
  background: linear-gradient(135deg, #b9760f 0%, #945d07 100%);
  box-shadow: 0 6px 18px rgba(185, 118, 15, 0.35);
  transform: translateY(-2px);
}

.btn-start-today:active {
  transform: translateY(0);
}

/* Card Bottom Price Summary */
.card-price-calc {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}

.calc-total-label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.calc-total-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-primary);
}

.calc-total-amount small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero Quick Product Box */
.hero-product-quick-box {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 2px solid rgba(212, 160, 23, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  margin-top: 1.5rem;
  position: relative;
  z-index: 5;
}

.quick-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eef2ec;
}

.quick-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quick-box-badge {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.quick-product-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1rem;
}

.quick-toggle-btn {
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-xs);
  border: 1.5px solid #d7e2d4;
  background: #ffffff;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.quick-toggle-btn.active {
  border-color: var(--primary);
  background: #f0f7f1;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(30, 90, 40, 0.12);
}

.quick-toggle-btn small {
  display: block;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.quick-toggle-btn.active small {
  color: var(--primary);
  font-weight: 700;
}

.quick-box-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

/* "Start Today" Configurator Modal */
.modal-product-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8faf7;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  border: 1px solid #e3ede1;
}

.modal-product-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xs);
  object-fit: cover;
}

.modal-product-info h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.modal-product-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

.modal-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.modal-qty-chip {
  padding: 0.5rem 0.85rem;
  border-radius: 20px;
  border: 1.5px solid #d7e2d4;
  background: #ffffff;
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.modal-qty-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.modal-qty-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.modal-schedule-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.schedule-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ffffff;
}

.schedule-option-card.active {
  border-color: var(--primary);
  background: #f4f8f4;
}

.schedule-option-card .sched-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.schedule-option-card .sched-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.schedule-option-card .sched-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
}

/* Itemized Order Breakdown */
.itemized-receipt {
  background: #fafbf9;
  border: 1px solid #e7eee5;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.receipt-row strong {
  color: var(--text-dark);
}

.receipt-row.total-row {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #d5ded2;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

/* Sticky Mobile Bottom Bar */
.mobile-sticky-order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border-top: 1.5px solid rgba(212, 160, 23, 0.35);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.65rem 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
}

.sticky-bar-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.sticky-bar-sub {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
}

.sticky-bar-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 25px;
  box-shadow: 0 3px 10px rgba(23, 75, 32, 0.25);
}

/* Responsive Overrides for Mobile */
@media (max-width: 768px) {
  .hero-visual {
    min-height: 390px;
    margin-top: 1rem;
  }

  .hero-product-halo {
    width: 280px;
    height: 280px;
  }

  .hero-bottle-img {
    max-width: 260px;
    max-height: 370px;
  }

  .floating-card-1 {
    top: 2%;
    right: 0;
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
  }

  .floating-card-2 {
    top: auto;
    bottom: 10%;
    left: 0;
    padding: 0.45rem 0.75rem;
    font-size: 0.76rem;
  }

  .floating-card-3 {
    display: none;
  }

  .hero-quick-calc-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .calc-strip-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .calc-strip-price {
    text-align: right;
  }

  .mobile-sticky-order-bar {
    display: flex;
  }
  
  body {
    padding-bottom: 65px; /* ensure content doesn't hide behind sticky bar */
  }

  .floating-actions-bar {
    bottom: 75px; /* raise floating whatsapp/call above bottom bar */
  }

  .nav-sample-btn {
    display: none !important; /* give clean room to logo & hamburger */
  }

  .mobile-toggle-btn {
    display: flex !important;
  }

  .cattle-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-quick-calc-strip {
    padding: 0.85rem;
  }

  .brand-logo-img {
    height: 38px;
  }
}

