/* ============================================================
   APNA UTTARAKHAND — Design System & Styles v2
   Minimalist · Editorial · Glassmorphism · Himalayan Palette
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Himalayan Earthy Palette — Elevated & High-Contrast */
  --forest-deep:    #0e1c12; /* Deep Himalayan pine night */
  --forest-night:   #132418;
  --forest:         #1c3523;
  --forest-mid:     #2b5237;
  --forest-light:   #447c54;
  --terracotta:     #c45b37; /* Warm Almora clay */
  --terracotta-dark:#a34221;
  --rust:           #cf6944;
  --gold:           #cca762; /* Luminous antique gold */
  --gold-muted:     #cca762;
  --gold-light:     #e8d3a7;
  --gold-glow:      rgba(204, 167, 98, 0.25);
  --cream:          #f7f4ec;
  --cream-warm:     #f5eee1;
  --cream-bg:       #fbf9f4;
  --off-white:      #fdfcf9;
  --stone:          #595147; /* Crisp, readable contrast */
  --stone-light:    #82786b;
  --charcoal:       #181512; /* Deep espresso */
  --charcoal-soft:  #2d2722;

  /* Glass */
  --glass-bg:       rgba(253, 252, 249, 0.12);
  --glass-bg-light: rgba(253, 252, 249, 0.08);
  --glass-border:   rgba(253, 252, 249, 0.18);
  --glass-shadow:   rgba(0, 0, 0, 0.2);

  --glass-cream-bg:       rgba(245, 240, 232, 0.7);
  --glass-cream-bg-solid: rgba(245, 240, 232, 0.9);
  --glass-cream-border:   rgba(204, 167, 98, 0.25);

  /* Typography */
  --font-serif:     'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hindi:     'Noto Sans Devanagari', sans-serif;

  /* Spacing */
  --section-pad:    clamp(4rem, 10vw, 8rem);
  --section-pad-x:  clamp(1.25rem, 5vw, 4rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.6s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--cream-bg);
  overflow-x: hidden;
}

/* Global link reset — prevents browser default purple visited links */
a, a:visited {
  color: inherit;
  text-decoration: none;
}

/* Subtle grain texture on body */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

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

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

/* ── Page Loader ───────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.page-loader__inner {
  text-align: center;
  animation: loaderPulse 1.5s ease-in-out;
}

.page-loader__logo {
  width: 320px;
  height: auto;
  max-width: 80vw;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  animation: loaderFadeIn 0.6s ease forwards;
  border-radius: 16px;
  background: rgba(255,255,255,0.95);
  padding: 20px 28px;
  box-shadow: 0 8px 50px rgba(0,0,0,0.2);
}

.page-loader__text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  opacity: 0;
  animation: loaderFadeIn 0.6s 0.3s ease forwards;
}

.page-loader__hindi {
  font-family: var(--font-hindi);
  font-size: 0.85rem;
  color: var(--gold-muted);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: loaderFadeIn 0.6s 0.6s ease forwards;
  margin-top: 0.3rem;
}

@keyframes loaderFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

/* ── Scroll Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.36s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.48s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2500;
  padding: 1.15rem var(--section-pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14, 28, 18, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(253, 252, 249, 0.08);
  transition: all 0.35s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(12, 24, 15, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 0.75rem var(--section-pad-x);
  border-bottom: 1px solid rgba(204, 167, 98, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.nav__brand,
.nav__brand:visited,
.nav__brand:active,
.nav__brand:focus {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--cream) !important;
  text-decoration: none !important;
  min-width: 0;
  flex-shrink: 1;
}

.nav__logo {
  height: 44px;
  width: auto;
  max-width: 105px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 4px 10px;
  display: block;
  transition: transform 0.3s ease, height 0.3s ease;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.nav.scrolled .nav__logo {
  height: 38px;
}

.nav__brand:hover .nav__logo {
  transform: scale(1.05);
}

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

.nav__actions .cart-nav-btn--mobile {
  display: none;
}

.nav__brand-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream) !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav__brand-text span {
  font-family: var(--font-hindi);
  font-size: 0.72rem;
  font-weight: 400;
  display: block;
  color: var(--gold-light) !important;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav__links a,
.nav__links a:visited {
  font-size: 0.82rem;
  font-weight: 500;
  color: #f7f4ec !important; /* Always visible warm cream, never browser purple */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  text-decoration: none !important;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
  transition: width 0.35s var(--ease-out-expo);
}

.nav__links a:hover,
.nav__links a:focus,
.nav__links a:active,
.nav__links a.active {
  color: var(--gold-light) !important;
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__cta,
.nav__cta:visited {
  font-size: 0.78rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 600 !important;
  padding: 0.55rem 1.35rem !important;
  background: linear-gradient(135deg, var(--gold) 0%, #b38e4d 100%) !important;
  color: #0e1c12 !important; /* Dark forest text for perfect contrast */
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 4px 15px rgba(204, 167, 98, 0.3) !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
}

.nav__cta:hover,
.nav__cta:focus {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  color: #08110b !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 167, 98, 0.45) !important;
}

.nav__cta::after {
  display: none !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.35s ease;
  transform-origin: center;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(14, 28, 18, 0.45) 0%,
      rgba(14, 28, 18, 0.2) 50%,
      rgba(28, 22, 16, 0.45) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 3rem 2.5rem;
  text-align: center;

  /* Glassmorphism */
  background: rgba(26, 46, 26, 0.25);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(253, 252, 249, 0.12);
  border-radius: 8px;
  box-shadow:
    0 8px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(253, 252, 249, 0.08);
}

.hero__logo {
  width: 260px;
  height: auto;
  max-width: 70vw;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  padding: 16px 24px;
  box-shadow: 0 6px 40px rgba(0,0,0,0.15);
  opacity: 0;
  animation: fadeSlideUp 1s 0.2s var(--ease-out-expo) forwards;
}

.hero__hindi {
  font-family: var(--font-hindi);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 400;
  color: var(--gold-muted);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.4s var(--ease-out-expo) forwards;
}

.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.55s var(--ease-out-expo) forwards;
}

.hero__headline {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 300;
  color: rgba(253, 252, 249, 0.85);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.75s var(--ease-out-expo) forwards;
}

.hero__sub {
  font-size: clamp(0.82rem, 1.6vw, 0.92rem);
  font-weight: 300;
  color: rgba(253, 252, 249, 0.5);
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 1s 0.9s var(--ease-out-expo) forwards;
}

.hero__divider {
  width: 50px;
  height: 1px;
  background: var(--gold-muted);
  margin: 1.25rem auto;
  opacity: 0;
  animation: fadeSlideUp 1s 0.65s var(--ease-out-expo) forwards;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  word-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: var(--gold-muted);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeSlideUp 1s 1.05s var(--ease-out-expo) forwards;
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 4px 30px rgba(201, 169, 110, 0.35);
  transform: translateY(-2px);
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}

.btn-hero-browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  word-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(253, 252, 249, 0.08);
  border: 1px solid rgba(204, 167, 98, 0.5);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeSlideUp 1s 1.15s var(--ease-out-expo) forwards;
}

.btn-hero-browse:hover {
  background: rgba(204, 167, 98, 0.22);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 25px rgba(204, 167, 98, 0.25);
}

.btn-secondary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  word-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  background: var(--gold-muted);
  color: var(--forest-deep);
  border-color: var(--gold-muted);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s ease forwards;
}

@media (max-height: 820px), (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  word-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
  background: rgba(253, 252, 249, 0.12);
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-muted);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--forest-deep);
  padding: 1.25rem var(--section-pad-x);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.trust-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(253, 252, 249, 0.65);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.trust-bar__icon {
  width: 18px;
  height: 18px;
  color: var(--gold-muted);
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 16px;
  background: rgba(253, 252, 249, 0.12);
}

/* ── Section Common ────────────────────────────────────────── */
.section {
  padding: var(--section-pad) var(--section-pad-x);
  position: relative;
}

.section__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  word-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: block;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--forest-deep);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--stone);
  max-width: 600px;
  line-height: 1.8;
}

.section__divider {
  width: 50px;
  height: 1px;
  background: var(--gold-muted);
  margin: 1.25rem 0;
}

/* ── Mountain Dividers ─────────────────────────────────────── */
.mountain-divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.mountain-divider--cream-to-white {
  top: -1px;
  color: var(--cream-warm);
}

.mountain-divider--dark-to-cream {
  top: -1px;
  color: var(--forest-deep);
}

.mountain-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Founder's Vision ──────────────────────────────────────── */
.founder {
  background: var(--off-white);
  padding-top: calc(var(--section-pad) + 2rem);
}

.founder__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.founder__image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.founder__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 6px;
  pointer-events: none;
}

.founder__accent {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: rgba(26, 46, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(253, 252, 249, 0.1);
  border-radius: 4px;
  z-index: 3;
}

.founder__accent p {
  font-family: var(--font-hindi);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  text-align: center;
}

.founder__text {
  max-width: 520px;
}

.founder__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--forest);
  line-height: 1.65;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-muted);
}

.founder__cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

.founder__body p {
  font-size: 0.93rem;
  color: var(--charcoal-soft);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.founder__body p strong {
  color: var(--forest);
  font-weight: 500;
}

/* ── Parallax Spice Divider ────────────────────────────────── */
.parallax-divider {
  position: relative;
  height: clamp(250px, 35vw, 380px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-divider__img {
  position: absolute;
  inset: -60px 0;
  width: 100%;
  height: calc(100% + 120px);
  object-fit: cover;
  will-change: transform;
}

.parallax-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(26, 46, 26, 0.65) 0%,
    rgba(42, 37, 32, 0.55) 100%);
  z-index: 1;
}

.parallax-divider__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-divider__hindi {
  font-family: var(--font-hindi);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 400;
  color: var(--gold-muted);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.parallax-divider__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(253, 252, 249, 0.6);
  letter-spacing: 0.08em;
}

/* ── Sourcing Model ────────────────────────────────────────── */
.sourcing {
  background:
    linear-gradient(175deg, var(--forest-deep) 0%, #1d331d 100%);
  position: relative;
  overflow: hidden;
}

.sourcing::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sourcing .section__label {
  color: var(--gold-muted);
}

.sourcing .section__title {
  color: var(--cream);
}

.sourcing .section__subtitle {
  color: rgba(253, 252, 249, 0.5);
}

.sourcing__grid {
  max-width: 1200px;
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* connecting line */
.sourcing__grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201, 169, 110, 0.3) 15%,
    rgba(201, 169, 110, 0.3) 85%,
    transparent);
}

.sourcing__step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(253, 252, 249, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(253, 252, 249, 0.08);
  border-radius: 6px;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.sourcing__step:hover {
  background: rgba(253, 252, 249, 0.08);
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.sourcing__number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-muted);
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background: var(--forest-deep);
}

.sourcing__icon-wrap {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold-light);
  opacity: 0.7;
}

.sourcing__icon-wrap svg {
  width: 100%;
  height: 100%;
}

.sourcing__step h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.sourcing__step p {
  font-size: 0.83rem;
  color: rgba(253, 252, 249, 0.5);
  line-height: 1.7;
}

/* ── Products ──────────────────────────────────────────────── */
.products {
  background: var(--cream-warm);
  padding-top: calc(var(--section-pad) + 2rem);
}

.products__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products__hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 4rem;
}

.products__image {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.products__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.products__image:hover img {
  transform: scale(1.03);
}

.products__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--glass-cream-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-cream-border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  background: var(--glass-cream-bg-solid);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(201, 169, 110, 0.35);
}

.product-card__img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

.product-card__body {
  padding: 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.product-card__body p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  word-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}

.product-card__arrow {
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__arrow {
  transform: translateX(4px);
}

/* ── Impact ────────────────────────────────────────────────── */
.impact {
  position: relative;
  overflow: hidden;
}

.impact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.impact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(26, 46, 26, 0.9) 0%,
      rgba(42, 37, 32, 0.88) 100%);
}

.impact__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.impact .section__label {
  color: var(--gold-muted);
}

.impact .section__title {
  color: var(--cream);
}

.impact .section__subtitle {
  color: rgba(253, 252, 249, 0.5);
  margin: 0 auto 3rem;
}

.impact .section__divider {
  margin: 1.25rem auto;
}

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

.stat-card {
  padding: 2.5rem 1.5rem;
  background: rgba(253, 252, 249, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(253, 252, 249, 0.1);
  border-radius: 6px;
  transition: all 0.5s var(--ease-out-expo);
}

.stat-card:hover {
  background: rgba(253, 252, 249, 0.1);
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.3);
}

.stat-card__number {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold-muted);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(253, 252, 249, 0.55);
  letter-spacing: 0.04em;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials {
  background: var(--off-white);
}

.testimonials__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2.5rem 2rem;
  background: var(--glass-cream-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-cream-border);
  border-radius: 6px;
  text-align: left;
  transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
  background: var(--glass-cream-bg-solid);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.testimonial-card__stars {
  color: var(--gold-muted);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.3rem;
}

.testimonial-card__verified {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--forest-mid);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-card__text {
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--cream);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--forest-deep);
}

.testimonial-card__location {
  font-size: 0.75rem;
  color: var(--stone);
}

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter {
  background: var(--cream-warm);
  padding-top: 0;
  padding-bottom: var(--section-pad);
}

.newsletter__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(26, 46, 26, 0.04);
  border: 1px solid var(--glass-cream-border);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
}

.newsletter__text {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
}

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

.newsletter__input-wrap {
  display: flex;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--glass-cream-border);
  transition: border-color 0.3s ease;
}

.newsletter__input-wrap:focus-within {
  border-color: var(--gold-muted);
}

.newsletter__input {
  flex: 1;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--charcoal);
  background: var(--off-white);
  border: none;
  outline: none;
  min-width: 0;
}

.newsletter__input::placeholder {
  color: var(--stone-light);
}

.newsletter__btn {
  padding: 0.85rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  word-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--forest);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.newsletter__btn:hover {
  background: var(--forest-deep);
}

.newsletter__privacy {
  font-size: 0.72rem;
  color: var(--stone-light);
  text-align: right;
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--forest-deep) 0%, #1d331d 50%, var(--charcoal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner .section__label {
  color: var(--gold-muted);
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253, 252, 249, 0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.cta-banner__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  padding: 4rem var(--section-pad-x) 2rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: opacity 0.3s ease;
}

.footer__brand-link:hover {
  opacity: 0.85;
}

.footer__logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  padding: 6px 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
}

.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.2;
}

.footer__brand-hindi {
  font-family: var(--font-hindi);
  font-size: 0.75rem;
  color: var(--gold-muted);
  font-weight: 300;
  display: block;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(253, 252, 249, 0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  word-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.45);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  list-style: none;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
}

.footer__col ul a {
  font-size: 0.85rem;
  color: rgba(253, 252, 249, 0.55);
  transition: color 0.3s ease;
}

.footer__col ul a:hover {
  color: var(--gold-muted);
}

.footer__bottom {
  border-top: 1px solid rgba(253, 252, 249, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.76rem;
  color: rgba(253, 252, 249, 0.25);
}

.footer__social {
  display: flex;
  gap: 1.25rem;
}

.footer__social a {
  font-size: 0.8rem;
  color: rgba(253, 252, 249, 0.35);
  transition: color 0.3s ease;
}

.footer__social a:hover {
  color: var(--gold-muted);
}

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease-out-expo);
  z-index: 990;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--forest-deep);
  border-color: var(--gold-muted);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: all 0.4s var(--ease-out-expo);
}

.whatsapp-float.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

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

/* subtle pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── Mobile Overlay Menu ───────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2400;
  background: rgba(10, 20, 13, 0.98);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
  transform: translateY(-10px);
  padding: 2.5rem 1.5rem;
}

.mobile-menu.open,
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu__logo {
  height: 52px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.5rem;
  display: block;
}

.mobile-menu a,
.mobile-menu a:visited {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
  transition: color 0.25s ease, transform 0.25s ease;
  padding: 0.35rem 1rem;
}

.mobile-menu a:hover,
.mobile-menu a:active,
.mobile-menu a:focus {
  color: var(--gold-light) !important;
  transform: scale(1.05);
}

.mobile-menu__cart-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  background: rgba(204, 167, 98, 0.15) !important;
  border: 1px solid rgba(204, 167, 98, 0.5) !important;
  border-radius: 30px !important;
  padding: 0.65rem 1.4rem !important;
  font-size: 1.1rem !important;
  color: var(--gold-light) !important;
}

.mobile-menu__cta {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  color: #0c180f !important;
  border-radius: 30px !important;
  padding: 0.75rem 2rem !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 25px rgba(204, 167, 98, 0.35) !important;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sourcing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sourcing__grid::before {
    display: none;
  }

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

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

  .nav__links {
    gap: 1.25rem;
  }
}

@media (max-width: 880px) {
  .nav {
    padding: 0.75rem 1.25rem !important;
  }

  .nav__links {
    display: none !important;
  }

  .nav__actions .cart-nav-btn--mobile {
    display: inline-flex !important;
  }

  .nav__hamburger {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.65rem 1rem !important;
  }

  .nav.scrolled {
    padding: 0.55rem 1rem !important;
  }

  .nav__brand {
    gap: 0.55rem;
    max-width: calc(100% - 95px);
  }

  .nav__logo {
    height: 38px !important;
    max-width: 85px !important;
    padding: 3px 6px !important;
    flex-shrink: 0 !important;
  }

  .nav__brand-text {
    font-size: 1.05rem !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav__brand-text span {
    font-size: 0.65rem !important;
  }

  /* Hero Section Mobile Optimization */
  .hero__content {
    padding: 2.25rem 1.25rem;
    margin: 0 0.75rem;
    width: calc(100% - 1.5rem);
    max-width: 500px;
  }

  .hero__logo {
    width: 200px !important;
    max-width: 70vw !important;
    height: auto !important;
    padding: 10px 18px !important;
    border-radius: 12px !important;
    margin: 0 auto 1.25rem !important;
    display: block !important;
    background: #ffffff !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25) !important;
    opacity: 1 !important;
  }

  .hero__brand {
    font-size: clamp(1.9rem, 7vw, 2.75rem) !important;
    line-height: 1.15;
  }

  .hero__headline {
    font-size: clamp(1rem, 3.8vw, 1.2rem) !important;
  }

  .hero__sub {
    font-size: clamp(0.85rem, 3.2vw, 0.95rem) !important;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero__actions .btn-primary,
  .hero__actions .btn-hero-browse {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
  }

  .trust-bar__inner {
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .trust-bar__divider {
    display: none;
  }

  .trust-bar__item {
    font-size: 0.75rem;
  }

  .founder__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .founder__image {
    max-width: 420px;
    margin: 0 auto;
  }

  .founder__text {
    max-width: 100%;
  }

  .founder__quote {
    text-align: left;
    margin: 1.5rem 0;
  }

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

  .products__categories {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

  .newsletter__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .newsletter__privacy {
    text-align: center;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer__brand-link {
    justify-content: center;
  }

  .footer__logo {
    width: 110px !important;
    height: auto !important;
    padding: 5px 10px !important;
  }

  .footer__desc {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .back-to-top {
    right: 4.5rem;
    bottom: 1.5rem;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
  }

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

@media (max-width: 480px) {
  .nav__logo {
    height: 32px !important;
    max-width: 72px !important;
    padding: 2px 5px !important;
  }

  .nav__brand-text {
    font-size: 0.95rem !important;
  }

  .hero__logo {
    width: 165px !important;
    max-width: 62vw !important;
    padding: 8px 14px !important;
  }

  .page-loader__logo {
    width: 200px !important;
    max-width: 70vw !important;
    padding: 12px 18px !important;
  }

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

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

  .hero__content {
    padding: 2rem 1.15rem;
  }

  .cta-banner__buttons {
    flex-direction: column;
    align-items: center;
  }

  .newsletter__input-wrap {
    flex-direction: column;
  }

  .newsletter__btn {
    padding: 0.85rem;
  }

  .trust-bar__inner {
    flex-direction: column;
    gap: 0.6rem;
  }
}

/* ── Reduced Motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__hindi,
  .hero__brand,
  .hero__headline,
  .hero__sub,
  .hero__divider,
  .hero__logo,
  .btn-primary,
  .hero__scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .page-loader {
    display: none !important;
  }

  .hero__scroll-line::after,
  .whatsapp-float::before {
    animation: none !important;
  }

  .hero__bg img,
  .parallax-divider__img,
  .founder__image img {
    transform: none !important;
  }
}

/* ============================================================
   CART DRAWER & CHECKOUT SYSTEM
   ============================================================ */

/* Backdrop */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 12, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo);
}

.cart-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* Slide-out Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #112015;
  background-image: 
    radial-gradient(ellipse at 90% 10%, rgba(204, 167, 98, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(43, 82, 55, 0.3) 0%, transparent 70%);
  border-left: 1px solid rgba(204, 167, 98, 0.25);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer__header {
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(253, 252, 249, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-drawer__icon {
  font-size: 1.6rem;
}

.cart-drawer__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: normal;
  margin: 0;
}

.cart-drawer__subtitle {
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.cart-drawer__close {
  background: transparent;
  border: 1px solid rgba(253, 252, 249, 0.15);
  color: rgba(247, 244, 236, 0.7);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.cart-drawer__close:hover {
  color: #ffffff;
  border-color: var(--gold);
  background: rgba(253, 252, 249, 0.1);
}

/* Shipping Progress Bar */
.cart-shipping-bar {
  padding: 0.75rem 1.5rem;
  background: rgba(20, 38, 24, 0.8);
  border-bottom: 1px solid rgba(253, 252, 249, 0.06);
}

.shipping-bar__text {
  font-size: 0.8rem;
  color: rgba(247, 244, 236, 0.9);
  margin-bottom: 0.4rem;
}

.shipping-bar__text strong {
  color: var(--gold);
}

.shipping-bar__track {
  height: 5px;
  background: rgba(253, 252, 249, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, #25d366 100%);
  border-radius: 10px;
  transition: width 0.3s ease;
}

/* Cart Items Body */
.cart-drawer__body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: rgba(247, 244, 236, 0.7);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cart-empty-state h3 {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.btn-browse-catalog {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, #b38e4d 100%);
  color: #0e1c12 !important;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(253, 252, 249, 0.04);
  border: 1px solid rgba(253, 252, 249, 0.08);
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.cart-item:hover {
  border-color: rgba(204, 167, 98, 0.3);
}

.cart-item__thumb {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(253, 252, 249, 0.1);
  flex-shrink: 0;
}

.cart-item__details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cart-item__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.cart-item__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: normal;
  margin: 0;
}

.cart-item__del {
  background: transparent;
  border: none;
  color: rgba(247, 244, 236, 0.4);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 0.25rem;
}

.cart-item__del:hover {
  color: #ff7b7b;
}

.cart-item__meta {
  font-size: 0.76rem;
  color: var(--gold-light);
  margin: 0.2rem 0 0.6rem;
}

.cart-item__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 28, 18, 0.8);
  border: 1px solid rgba(253, 252, 249, 0.15);
  border-radius: 6px;
  overflow: hidden;
}

.cart-stepper__btn {
  background: transparent;
  border: none;
  color: var(--cream);
  width: 26px;
  height: 26px;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-stepper__btn:hover {
  background: rgba(253, 252, 249, 0.1);
  color: var(--gold);
}

.cart-stepper__qty {
  padding: 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  min-width: 20px;
  text-align: center;
}

.cart-item__price {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* Cart Footer */
.cart-drawer__footer {
  padding: 1.25rem 1.5rem 1.5rem;
  background: rgba(14, 28, 18, 0.95);
  border-top: 1px solid rgba(253, 252, 249, 0.1);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(247, 244, 236, 0.75);
  margin-bottom: 0.4rem;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(253, 252, 249, 0.08);
  margin-bottom: 1.25rem;
}

.cart-summary-total .total-price {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
}

.cart-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-checkout-upi {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--gold) 0%, #b38e4d 100%);
  color: #0e1c12;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(204, 167, 98, 0.3);
}

.btn-checkout-upi:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 167, 98, 0.45);
}

.btn-checkout-wa {
  width: 100%;
  padding: 0.75rem;
  background: #25d366;
  color: #061e0d;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-checkout-wa:hover {
  background: #1ebc57;
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 998;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #b38e4d 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.floating-cart-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 30px rgba(204, 167, 98, 0.4);
}

.floating-cart-icon {
  font-size: 1.5rem;
}

.floating-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #c45b37;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #112015;
}

/* Nav Cart Icon Button */
.cart-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(253, 252, 249, 0.08);
  border: 1px solid rgba(204, 167, 98, 0.4);
  color: var(--cream) !important;
  padding: 0;
  cursor: pointer;
  z-index: 2501;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-nav-btn * {
  pointer-events: none;
}

.cart-nav-btn:hover {
  background: rgba(204, 167, 98, 0.25);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(204, 167, 98, 0.2);
}

.cart-nav-icon {
  width: 20px;
  height: 20px;
  display: block;
  stroke: var(--cream);
  transition: stroke 0.2s ease;
}

.cart-nav-btn:hover .cart-nav-icon {
  stroke: var(--gold-light);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -5px;
  background: var(--gold);
  color: #0e1c12;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
  border: 1.5px solid #0f1e13;
}

/* Product Tile In-Cart States */
.product-card.has-in-cart {
  border-color: rgba(204, 167, 98, 0.5) !important;
  box-shadow: 0 8px 30px rgba(204, 167, 98, 0.18) !important;
}

.badge-in-cart {
  background: linear-gradient(135deg, #cca762 0%, #b38e4d 100%) !important;
  color: #0e1c12 !important;
  font-weight: 700 !important;
  padding: 0.32rem 0.8rem !important;
  border-radius: 20px !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  box-shadow: 0 3px 12px rgba(204, 167, 98, 0.4) !important;
}

.tile-stepper {
  display: inline-flex;
  align-items: center;
  background: rgba(204, 167, 98, 0.18);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(204, 167, 98, 0.2);
}

.tile-stepper__btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  width: 32px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tile-stepper__btn:hover {
  background: rgba(204, 167, 98, 0.4);
  color: #0e1c12;
}

.tile-stepper__qty {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
  padding: 0 0.5rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Toast */
.cart-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(14, 28, 18, 0.95);
  border: 1px solid var(--gold);
  color: #ffffff;
  padding: 0.8rem 1.4rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-out-expo);
  z-index: 2500;
}

.cart-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   DIRECT CHECKOUT MODAL
   ============================================================ */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkout-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.checkout-modal {
  background: #122116;
  border: 1px solid rgba(204, 167, 98, 0.3);
  border-radius: 16px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
  animation: modalSlide 0.35s var(--ease-out-expo);
}

.checkout-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(253, 252, 249, 0.08);
}

.checkout-modal__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #ffffff;
  margin: 0;
}

.checkout-modal__subtitle {
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-top: 0.2rem;
}

.checkout-modal__close {
  background: transparent;
  border: none;
  color: rgba(247, 244, 236, 0.5);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.checkout-modal__close:hover {
  color: #ffffff;
}

.checkout-section-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  word-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-field-full {
  grid-column: 1 / -1;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.checkout-field label {
  font-size: 0.78rem;
  color: rgba(247, 244, 236, 0.85);
  font-weight: 500;
}

.checkout-field input {
  background: rgba(14, 28, 18, 0.85);
  border: 1px solid rgba(253, 252, 249, 0.15);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: #ffffff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.checkout-field input:focus {
  border-color: var(--gold);
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(253, 252, 249, 0.12);
  background: rgba(253, 252, 249, 0.03);
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option.active {
  border-color: var(--gold);
  background: rgba(204, 167, 98, 0.12);
}

.payment-option input[type="radio"] {
  accent-color: var(--gold);
}

.pay-opt-info {
  display: flex;
  flex-direction: column;
}

.pay-opt-info strong {
  color: #ffffff;
  font-size: 0.9rem;
}

.pay-opt-info span {
  color: rgba(247, 244, 236, 0.6);
  font-size: 0.76rem;
}

.upi-pay-box {
  background: rgba(14, 28, 18, 0.9);
  border: 1px dashed rgba(204, 167, 98, 0.4);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.upi-qr-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.upi-qr-img {
  width: 130px;
  height: 130px;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
}

.upi-qr-meta {
  flex: 1;
  min-width: 180px;
}

.upi-id-tag {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}

.upi-qr-meta p {
  font-size: 0.78rem;
  color: rgba(247, 244, 236, 0.7);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.btn-upi-intent {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  background: rgba(204, 167, 98, 0.2);
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.checkout-summary-box {
  padding: 0.9rem 1.25rem;
  background: rgba(253, 252, 249, 0.04);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.checkout-summary-box .summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.checkout-summary-box .total {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.checkout-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.btn-confirm-order {
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, var(--gold) 0%, #b38e4d 100%);
  color: #0e1c12;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-confirm-order:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
}

/* Order Success Screen */
.order-success-card {
  text-align: center;
  padding: 1.5rem 0;
}

.success-icon {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.success-subtitle {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.order-id-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(204, 167, 98, 0.15);
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.success-details-box {
  text-align: left;
  background: rgba(253, 252, 249, 0.04);
  border: 1px solid rgba(253, 252, 249, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.success-details-box .s-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(253, 252, 249, 0.05);
  font-size: 0.85rem;
}

.success-details-box .s-row:last-child {
  border-bottom: none;
}

.order-dispatch-note {
  font-size: 0.85rem;
  color: rgba(247, 244, 236, 0.75);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.order-success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}



