/* =============================================
   GO SATTVA GAUSHALA - Premium Design System
   A nature-inspired, serene aesthetic
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Colors - Rich Forest Green */
  --color-primary: #4A7B5E;
  --color-primary-light: #7BA88E;
  --color-primary-dark: #365A45;

  /* Accent Colors - Muted Gold */
  --color-accent: #B89968;
  --color-accent-light: #D4C4A8;
  --color-accent-dark: #9A7D54;

  /* Background Colors - Warm Cream & White */
  --color-bg: #FFFCF7;
  --color-bg-alt: #F8F3EB;
  --color-bg-dark: #EFE8DC;
  --color-white: #FFFFFF;

  /* Text Colors - Softer Contrast */
  --color-text: #3E3B37;
  --color-text-light: #7A7670;
  --color-text-muted: #A8A39D;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, sans-serif;
  --font-accent: 'Sacramento', cursive;

  /* Font Sizes - Larger Scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;
  --fs-5xl: 5rem;
  --fs-6xl: 6rem;

  /* Spacing - Generous Whitespace */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-4xl: 7rem;
  --space-5xl: 10rem;
  --space-6xl: 12rem;
  --space-7xl: 16rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows - Soft & Diffused */
  --shadow-sm: 0 2px 8px rgba(62, 59, 55, 0.04);
  --shadow-md: 0 4px 16px rgba(62, 59, 55, 0.06);
  --shadow-lg: 0 8px 32px rgba(62, 59, 55, 0.08);
  --shadow-xl: 0 16px 48px rgba(62, 59, 55, 0.1);
  --shadow-floating: 0 12px 40px rgba(62, 59, 55, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;
}

/* ---------- CSS Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* Subtle grain texture overlay for warmth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: var(--fs-5xl);
}

h2 {
  font-size: var(--fs-4xl);
}

h3 {
  font-size: var(--fs-3xl);
}

h4 {
  font-size: var(--fs-2xl);
}

h5 {
  font-size: var(--fs-xl);
}

h6 {
  font-size: var(--fs-lg);
}

p {
  margin-bottom: var(--space-md);
}

.text-accent {
  color: var(--color-accent);
}

.text-muted {
  color: var(--color-text-light);
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-base);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom-color: var(--color-bg-dark);
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-logo span {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.navbar-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  transition: var(--transition-fast);
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-base);
}

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

.navbar-link:hover::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-fast);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 25s ease-out forwards;
  opacity: 0.15;
}

@keyframes heroZoom {
  from {
    transform: scale(1.15);
  }

  to {
    transform: scale(1);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(107, 142, 127, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 153, 104, 0.06) 0%, transparent 60%);
  animation: zoomOut 20s ease-out forwards;
  transform-origin: center center;
}

@keyframes zoomOut {
  from {
    transform: scale(1.15);
  }

  to {
    transform: scale(1);
  }
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--space-5xl) var(--space-xl);
  max-width: 1000px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin: 0 auto var(--space-lg);
  animation: fadeInUp 1s ease forwards;
}

.hero-blessing {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  opacity: 0;
  animation: blessingFadeIn 2s ease 0.5s forwards;
  letter-spacing: 0.1em;
}

.hero-blessing-translation {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-2xl);
  opacity: 0;
  animation: blessingFadeIn 2s ease 1s forwards;
  letter-spacing: 0.05em;
}

@keyframes blessingFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2xl);
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* Removed standard fadeInUp to allow custom reveal */
}

/* Cinematic Reveal Animations */
.reveal-text span {
  opacity: 0;
  display: inline-block;
  transform: translateY(30px);
  filter: blur(8px);
  animation: cinematicReveal 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-text span.space {
  width: 0.3em;
}

@keyframes cinematicReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-3xl);
  font-weight: 300;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

/* Hide mobile-only elements on desktop */
.hero-mobile-image {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-xs);
}

/* ---------- About Section ---------- */
.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-dark) 100%);
  min-height: 500px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(107, 142, 127, 0.2));
}

/* Decorative Section Divider */
.section-divider {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.divider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 var(--space-md);
  position: relative;
  color: var(--color-accent);
}

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

.divider-icon::before,
.divider-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent));
}

.divider-icon::before {
  right: 100%;
  background: linear-gradient(90deg, transparent, var(--color-accent));
}

.divider-icon::after {
  left: 100%;
  background: linear-gradient(90deg, var(--color-accent), transparent);
}

/* Image Frame */
.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.2);
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: space-around;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-bg-dark);
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
}

/* Stat Slide-Up Animation */
.stat-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-content {
  padding: var(--space-2xl) 0;
}

.section-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-2xl);
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.2;
}

.about-text {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Lead Paragraph with Drop Cap Effect */
.lead-paragraph {
  font-size: var(--fs-lg);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.7;
}

.lead-paragraph::first-letter {
  float: left;
  font-size: 3.5em;
  line-height: 0.8;
  font-weight: 700;
  color: var(--color-primary);
  margin-right: var(--space-sm);
  font-family: var(--font-heading);
}

.about-text p {
  margin-bottom: var(--space-xl);
}

.about-highlight {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-2xl);
  margin: var(--space-2xl) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.about-highlight p {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: var(--fs-xl);
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--color-text);
}

/* Featured Quote Block */
.featured-quote {
  position: relative;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-2xl) var(--space-2xl);
  margin: var(--space-3xl) 0;
  text-align: center;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  color: var(--color-accent);
  background: var(--color-bg);
  padding: 0 var(--space-md);
  line-height: 1;
}

.featured-quote p {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.featured-quote cite {
  display: block;
  font-size: var(--fs-sm);
  font-style: normal;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Products Section ---------- */
.products {
  background: var(--color-bg-alt);
}

.products-header {
  text-align: center;
  margin-bottom: var(--space-5xl);
}

.products-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.filter-btn {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-white);
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Pulse Hint - Simple Click Indicator */
.filter-btn.pulse-hint {
  animation: pulseHint 0.6s ease-out;
}

@keyframes pulseHint {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(184, 153, 104, 0.2);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(184, 153, 104, 0.4);
  }
}

.products-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xl);
}

/* ---------- Category Sections ---------- */
.product-category-section {
  padding-top: var(--space-lg);
}

.category-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}

.category-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

/* ---------- Product Cards (Standard) ---------- */
.product-card {
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-floating);
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-dark) 100%);
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.product-category-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.product-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.product-name-hindi {
  font-size: var(--fs-sm);
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.product-description {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.product-benefit {
  font-size: var(--fs-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-bg-alt);
  color: var(--color-text);
  border-radius: var(--radius-full);
  font-weight: 500;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  margin-top: auto;
  border-top: 1px solid var(--color-bg-dark);
}

.product-price {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--color-primary);
}

.product-price span {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--color-text-muted);
}

.products-note {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-accent-light);
}

.products-note p {
  color: var(--color-text-light);
  margin: 0;
}

.products-note strong {
  color: var(--color-accent);
}

/* ---------- Donation Section ---------- */
.donation {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donation::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(184, 153, 104, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}

.donation-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.donation .section-label {
  color: var(--color-accent-light);
}

.donation .section-title {
  color: var(--color-white);
}

.donation-text {
  font-size: var(--fs-lg);
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: var(--space-3xl);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-text);
  color: var(--color-white);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 700;
}

.footer-about {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-accent-light);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-white);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 400px;
  }

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

@media (max-width: 768px) {
  :root {
    --space-5xl: 5rem;
  }

  /* ========== MOBILE NAVBAR - Organic Parchment ========== */
  .navbar {
    padding: var(--space-sm) var(--space-lg);
    /* Reduced vertical padding */
    background: var(--color-cream-soft);
    /* Seamless Cream */
    box-shadow: none;
    /* Flat "paper" feel */
    border-bottom: none;
    /* Continuous flow */
    position: relative;
    /* Normal flow */
    width: 100%;
    z-index: 100;
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-brand {
    position: static;
    transform: none;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .navbar-brand img {
    height: 32px;
    /* Slightly smaller logo */
    /* Filter to tint logo to Forest Green (#2A3E35) - Ink Effect */
    filter: brightness(0) saturate(100%) invert(19%) sepia(13%) saturate(1376%) hue-rotate(102deg) brightness(94%) contrast(91%);
    opacity: 0.9;
  }

  .navbar-toggle {
    display: flex;
    position: static;
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
    background: transparent;
    margin-left: auto;
  }

  /* Invisible spacer for balance */
  .navbar-container::before {
    content: '';
    width: 40px;
  }

  .navbar-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-forest-classic);
    /* Ink Green */
  }

  /* General Section Spacing Reduction for Mobile */
  .section {
    padding: var(--space-2xl) 0;
    /* Reduced from 4xl */
  }

  .about-content {
    padding: var(--space-xl) 0;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
  }

  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --space-5xl: 4rem;
  }

  h1 {
    font-size: var(--fs-3xl);
  }

  h2 {
    font-size: var(--fs-2xl);
  }

  /* ========== MOBILE HERO - Clean Classic Minimalist ========== */

  :root {
    --color-cream-soft: #FFFBF2;
    --color-text-dark: #1A1A1A;
    --color-forest-classic: #2A3E35;
    --color-gold-solid: #C5A028;
    --color-gold-dark: #8A7010;
    /* Darker for readability */
  }

  /* Reset Hero Container */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 0;
    /* Remove top padding so image blends with header */
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-cream-soft);
    overflow: visible;
  }

  /* Hide desktop background elements */
  .hero::before,
  .hero::after,
  .hero-bg,
  .hero-scroll {
    display: none;
  }

  /* ========== 1. Top Image Area ========== */
  .hero-mobile-image {
    display: block;
    width: 100%;
    /* Taller aspect ratio for more impact */
    height: 50vh;
    /* Balanced height */
    min-height: 320px;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
  }

  .hero-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Soft Gradient Blend at Bottom of Image - DECORATIVE ONLY */
  .hero-mobile-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent 0%, var(--color-cream-soft) 100%);
    z-index: 2;
  }

  .hero-mobile-image::before {
    display: none;
  }

  /* ========== 2. Bottom Content Area ========== */
  .hero-content {
    position: relative;
    z-index: 5;
    /* Higher z-index */
    margin: 0;
    /* NO NEGATIVE MARGIN - Prevents overlap mess */
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    /* Start text right after image */
    background: var(--color-cream-soft);
    /* Solid background ensures readability */
    text-align: center;
    width: 100%;
    min-height: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  /* Remove any decorative pseudo-elements */
  .hero-content::before {
    display: none;
  }

  /* Hide logo - navbar has it */
  .hero-logo {
    display: none;
  }

  /* Sanskrit Blessing - Enhanced Readability */
  .hero-blessing {
    font-family: var(--font-body);
    font-size: 1rem;
    /* Larger */
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-xs);
    color: var(--color-text-dark);
    /* Dark text for max readability */
    font-weight: 800;
    /* Extra bold */
    text-shadow: none;
    opacity: 0.9;
  }

  .hero-blessing-translation {
    font-size: 0.95rem;
    color: #555;
    /* Dark grey */
    margin-bottom: var(--space-lg);
    font-style: normal;
    /* Easier to read */
    font-weight: 500;
  }

  /* Title - Dark & Clear */
  .hero-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    margin-bottom: var(--space-md);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-forest-classic);
    text-shadow: none;
    white-space: normal;
  }

  /* Enable Blur Animation on Mobile */
  .reveal-text span {
    opacity: 0;
    display: inline-block;
    transform: translateY(30px);
    filter: blur(8px);
    animation: cinematicReveal 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    color: inherit;
  }

  /* Subtitle - High Contrast */
  .hero-subtitle {
    font-size: 1.1rem;
    color: #4A4A4A;
    /* Dark Grey for contrast */
    margin-bottom: var(--space-2xl);
    padding: 0;
    line-height: 1.6;
    font-weight: 400;
  }

  /* ========== 3. Action Buttons ========== */
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    padding: 0;
    margin-top: var(--space-xl);
  }

  /* Our Story - Secondary Location (Top) - Outline Pill */
  .hero-cta .btn-outline {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--color-forest-classic);
    color: var(--color-forest-classic);
    padding: 14px 40px;
    font-size: 0.95rem;
    width: 100%;
    border-radius: 50px;
    /* Pill shape for elegance */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    order: 1;
    /* Ensure distinct visually */
  }

  /* Explore Products - Primary Location (Bottom) - Green Pill */
  .hero-cta .btn-primary {
    background: var(--color-forest-classic);
    color: #FFFFFF;
    border: none;
    box-shadow: none;
    padding: 16px 40px;
    /* Slightly larger padding for pill */
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    width: 100%;
    border-radius: 50px;
    /* Matching Pill shape */
    text-decoration: none;
    order: 2;
  }

  .hero-cta .btn-primary:active {
    background: #1e2d26;
    opacity: 1;
  }

  .hero-cta .btn {
    width: 100%;
  }

  /* ========== MOBILE FILTER - Horizontal Scroll Pills ========== */
  .products-filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: var(--space-sm);
    padding: var(--space-sm) 0 var(--space-sm) 0;
    /* Added top padding to prevent cropping */
    -webkit-overflow-scrolling: touch;
    /* Smooth iOS scroll */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
  }

  .products-filter::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
  }

  .filter-btn {
    flex-shrink: 0;
    /* Prevent pill shrinking */
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--fs-sm);
    white-space: nowrap;
    border-radius: 50px;
    /* Full pill shape */
  }

  /* ========== MOBILE PRODUCT GRID - 2 Column Compact ========== */
  .products-grid,
  .category-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .product-card {
    border-radius: 16px;
    /* Slightly smaller radius */
  }

  .product-image {
    aspect-ratio: 1 / 1;
    /* Square image for compact look */
  }

  .product-category-badge {
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
    font-size: 10px;
  }

  .product-content {
    padding: var(--space-md);
  }

  .product-name {
    font-size: var(--fs-md);
    /* Larger - increased from base */
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }

  .product-name-hindi {
    font-size: var(--fs-sm);
    /* Larger - increased from xs */
    margin-bottom: var(--space-sm);
  }

  .product-description {
    display: none;
    /* Hide description on mobile for compact */
  }

  .product-benefits {
    display: none;
    /* Hide benefits on mobile for compact */
  }

  .product-footer {
    padding-top: var(--space-sm);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .product-price {
    font-size: var(--fs-xl);
    /* Larger - increased from lg */
  }

  .product-price span {
    font-size: var(--fs-xs);
  }

  .product-footer .btn {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-xs);
  }

  /* Featured Quote Mobile */
  .featured-quote {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    margin: var(--space-xl) 0;
  }

  .quote-icon {
    font-size: 32px;
    top: -15px;
  }

  .featured-quote p {
    font-size: var(--fs-lg);
    line-height: 1.4;
    margin-bottom: var(--space-md);
  }

  .featured-quote cite {
    font-size: var(--fs-xs);
  }
}

/* ---------- Loading State ---------- */
.loading {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--color-bg-dark);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Gentle Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}