/* SPIRATHON NATURALS - MASTER LUXURY DESIGN SYSTEM */
:root {
  --bg-deep: #081F18;            /* Deep Botanical Green Canvas */
  --bg-forest: #12382D;          /* Forest Green Card Surfaces & Nav */
  --bg-card: rgba(18, 56, 45, 0.7); /* Elevated Card Glassmorphism */
  --surface-ivory: #F8F5ED;      /* Warm Ivory for Headings on Dark */
  --surface-sage: #DCE4D2;       /* Soft Sage Accent & Badges */
  --accent-gold: #B99A5B;        /* Botanical Gold Borders & Highlights */
  --accent-gold-hover: #cfad68;  /* Lighter Gold Hover */
  --accent-orange: #D57A38;      /* Sea Buckthorn High-Conversion Orange */
  --accent-orange-hover: #b86428;/* Darker Orange Hover */
  --text-dark: #1B2B24;          /* Dark Text on Light Surface */
  --text-muted: #8E9F94;         /* Muted Botanical Subtitles */
  --border-subtle: rgba(185, 154, 91, 0.22); /* Gold subtle 1px border */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-luxury: 0 16px 36px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--surface-ivory);
  background-color: var(--bg-deep);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.01em;
  color: var(--surface-ivory);
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select {
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SVGs */
.svg-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.svg-star {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
  stroke: var(--accent-gold);
}

/* TOP ANNOUNCEMENT BAR */
.top-bar {
  background-color: #051410;
  color: var(--surface-sage);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SITE HEADER */
.site-header {
  background: rgba(8, 31, 24, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo-emblem {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(185, 154, 91, 0.15);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-emblem-svg {
  width: 26px;
  height: 26px;
}
.brand-title-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--surface-ivory);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.brand-tagline {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 600;
}

/* CLEAN SINGLE-LINE NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--surface-ivory);
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-icon-btn {
  background: rgba(18, 56, 45, 0.7);
  border: 1px solid var(--border-subtle);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface-ivory);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.nav-icon-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(185, 154, 91, 0.15);
}
.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent-orange);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-deep);
}
.btn-consult {
  background: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-consult:hover {
  background: var(--accent-gold);
  color: var(--bg-deep);
}

/* BUTTONS */
.btn-primary {
  background: var(--accent-orange);
  color: #FFFFFF;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(213, 122, 56, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
  animation: pulseSubtle 3.5s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(213, 122, 56, 0.45);
}
.btn-secondary {
  background: rgba(18, 56, 45, 0.6);
  color: var(--surface-ivory);
  border: 1px solid var(--accent-gold);
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
/* HERO SECTION */
.hero-section {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 70% 30%, rgba(18, 56, 45, 0.7) 0%, rgba(8, 31, 24, 0.95) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(185, 154, 91, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--surface-ivory);
}
.hero-title span {
  color: var(--accent-gold);
  font-style: italic;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--surface-sage);
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}
.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--surface-ivory);
}
.bullet-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(185, 154, 91, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(185, 154, 91, 0.2);
}
.proof-stars {
  display: flex;
  gap: 3px;
}
.proof-text {
  font-size: 13px;
  color: var(--surface-sage);
}
.proof-text strong {
  color: var(--surface-ivory);
}

/* HERO SHOWCASE CARD (CLEAN LUXURY PHOTOGRAPHY) */
.hero-showcase-card {
  position: relative;
  background: rgba(18, 56, 45, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: floatHeroCard 6s ease-in-out infinite;
}
.hero-showcase-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #0d2820;
}
.hero-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-showcase-card:hover .hero-showcase-img {
  transform: scale(1.02);
}
.hero-floating-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(8, 31, 24, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-card-bottom-bar {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(8, 31, 24, 0.9);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-card-meta-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 700;
}
.hero-card-product-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--surface-ivory);
}

/* TRUST RIBBON */
.trust-ribbon {
  background: #051410;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
  cursor: default;
}
.trust-item:hover {
  transform: translateY(-4px);
  background: rgba(185, 154, 91, 0.08);
}
.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(185, 154, 91, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trust-item:hover .trust-icon-box {
  transform: scale(1.15) rotate(6deg);
  background: rgba(185, 154, 91, 0.25);
  border-color: #cfad68;
  box-shadow: 0 0 16px rgba(185, 154, 91, 0.45);
}
.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--surface-ivory);
  margin-bottom: 2px;
}
.trust-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* SECTION COMMON STYLES */
.section-padding {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 38px;
  color: var(--surface-ivory);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-sub {
  font-size: 16px;
  color: var(--surface-sage);
  line-height: 1.6;
}

/* FILTER PILLS / CATEGORY TABS */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-tab {
  background: rgba(18, 56, 45, 0.6);
  border: 1px solid var(--border-subtle);
  color: var(--surface-sage);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--accent-gold);
  color: var(--bg-deep);
  border-color: var(--accent-gold);
}

/* PRODUCT GRID & PRODUCT CARDS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: rgba(18, 56, 45, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover::before {
  left: 140%;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(185, 154, 91, 0.85);
  background: rgba(22, 68, 55, 0.85);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 32px rgba(185, 154, 91, 0.25);
}
.product-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--accent-orange);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}
.product-card-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle, rgba(185, 154, 91, 0.08) 0%, rgba(8, 31, 24, 0.6) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.product-card-img {
  max-height: 210px;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-card-img {
  transform: scale(1.08) translateY(-4px);
}
.product-card-category {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--surface-ivory);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 13.5px;
  color: var(--surface-sage);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.product-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--surface-sage);
}
.product-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-current {
  font-size: 22px;
  font-weight: 800;
  color: var(--surface-ivory);
}
.price-mrp {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--text-muted);
}
.price-save {
  font-size: 11.5px;
  color: #55c57a;
  font-weight: 700;
}
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.btn-card-add {
  background: var(--accent-orange);
  color: #FFFFFF;
  border: none;
  padding: 11px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s ease;
}
.btn-card-add:hover {
  background: var(--accent-orange-hover);
}
.btn-card-view {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--surface-ivory);
  padding: 11px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-card-view:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* STORY / SOURCING HIGHLIGHTS */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.story-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-forest);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.story-img-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.55), 0 0 26px rgba(185, 154, 91, 0.25);
}
.story-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-img-card:hover img {
  transform: scale(1.09);
}
.story-img-caption {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--surface-sage);
  font-weight: 600;
  transition: color 0.3s ease;
}
.story-img-card:hover .story-img-caption {
  color: var(--surface-ivory);
}

/* REVIEWS GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: rgba(18, 56, 45, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease, background 0.3s ease;
  position: relative;
}
.review-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(185, 154, 91, 0.75);
  background: rgba(22, 68, 55, 0.8);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5), 0 0 25px rgba(85, 197, 122, 0.15);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-quote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--surface-ivory);
  margin-bottom: 18px;
  font-style: italic;
  flex: 1;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.reviewer-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--surface-ivory);
}
.reviewer-badge {
  font-size: 11px;
  color: #55c57a;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ANIMATIONS */
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatHeroCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes pulseSubtle {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(213, 122, 56, 0.35);
  }
  50% {
    box-shadow: 0 14px 34px rgba(213, 122, 56, 0.6);
  }
}
@keyframes shimmerGold {
  0% {
    border-color: rgba(185, 154, 91, 0.25);
  }
  50% {
    border-color: rgba(185, 154, 91, 0.85);
  }
  100% {
    border-color: rgba(185, 154, 91, 0.25);
  }
}

.animate-fade-up {
  animation: fadeInSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* 1. SCROLL READING PROGRESS BAR */
#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #D57A38, #B99A5B, #55c57a);
  z-index: 10000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(185, 154, 91, 0.7);
}

/* 2. AMBIENT CURSOR GLOW (DESKTOP) */
.cursor-glow-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(185, 154, 91, 0.08) 0%, rgba(85, 197, 122, 0.03) 45%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  z-index: 1;
  opacity: 0;
}
.cursor-glow-orb.active {
  opacity: 1;
}
.cursor-glow-orb.hover-active {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(213, 122, 56, 0.11) 0%, rgba(185, 154, 91, 0.07) 45%, transparent 70%);
}
@media (pointer: coarse) {
  .cursor-glow-orb {
    display: none !important;
  }
}

/* 3. SCROLL REVEAL ENGINE */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Delay Utilities */
.stagger-1 { transition-delay: 0.06s; }
.stagger-2 { transition-delay: 0.14s; }
.stagger-3 { transition-delay: 0.22s; }
.stagger-4 { transition-delay: 0.30s; }

/* Reveal Scale Variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95) translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 4. DYNAMIC HEADER SCROLL GLASS */
.site-header {
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled-header {
  background: rgba(8, 31, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(185, 154, 91, 0.32);
}

/* 5. INTERACTIVE BUTTON SHINE SWEEP */
.btn-primary, .btn-checkout {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-checkout::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(25deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn-primary:hover::after, .btn-checkout:hover::after {
  left: 150%;
}

/* PDP (PRODUCT DETAIL PAGE) STYLES */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 70px;
}
.pdp-gallery-main {
  background: radial-gradient(circle at 50% 50%, rgba(18, 56, 45, 0.95) 0%, rgba(8, 31, 24, 0.98) 100%);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  max-height: 520px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}
.pdp-gallery-main img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}
.pdp-gallery-main:hover img {
  transform: scale(1.03);
}
.pdp-thumbnails-row {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.pdp-thumb-item {
  width: 86px;
  height: 86px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-forest);
  padding: 3px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}
.pdp-thumb-item.active, .pdp-thumb-item:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(185, 154, 91, 0.3);
}
.pdp-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* VECTOR CERTIFICATION PILLS (NO BROKEN RECTANGULAR BOXES) */
.cert-pills-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(18, 56, 45, 0.6);
  border: 1px solid rgba(185, 154, 91, 0.35);
  font-size: 12px;
  font-weight: 600;
  color: var(--surface-sage);
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease;
}
.cert-pill:hover {
  border-color: var(--accent-gold);
  color: var(--surface-ivory);
}
.cert-pill-icon {
  color: var(--accent-gold);
  width: 16px;
  height: 16px;
}

.pdp-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(185, 154, 91, 0.15);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pdp-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}
.pdp-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 16px 0 24px;
}
.pdp-price-now {
  font-size: 32px;
  font-weight: 800;
  color: var(--surface-ivory);
}
.pdp-price-mrp {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-muted);
}
.pdp-price-save-pill {
  background: rgba(85, 197, 122, 0.15);
  color: #55c57a;
  border: 1px solid rgba(85, 197, 122, 0.4);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
}
.pdp-highlights-box {
  background: rgba(8, 31, 24, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.pdp-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--surface-sage);
}
.pdp-purchase-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.pdp-spec-table td {
  padding: 12px 14px;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pdp-spec-table td:first-child {
  font-weight: 700;
  color: var(--accent-gold);
  width: 35%;
}

/* CHECKOUT PAGE STYLES */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  margin-top: 30px;
}
.checkout-card {
  background: var(--bg-forest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--surface-sage);
}
.form-field input, .form-field select {
  background: rgba(8, 31, 24, 0.8);
  border: 1px solid var(--border-subtle);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--surface-ivory);
  font-size: 14px;
  outline: none;
}
.form-field input:focus, .form-field select:focus {
  border-color: var(--accent-gold);
}
.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 24px;
}
.payment-method-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(8, 31, 24, 0.5);
  cursor: pointer;
}
.payment-method-item.selected {
  border-color: var(--accent-gold);
  background: rgba(185, 154, 91, 0.1);
}

/* ORDER CONFIRMATION */
.order-success-box {
  max-width: 650px;
  margin: 50px auto;
  text-align: center;
  background: var(--bg-forest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.order-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(85, 197, 122, 0.18);
  color: #55c57a;
  border: 2px solid #55c57a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.tracking-steps-timeline {
  display: flex;
  justify-content: space-between;
  margin: 36px 0;
  position: relative;
}
.tracking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.tracking-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.tracking-dot.done {
  background: var(--accent-gold);
  color: var(--bg-deep);
  border-color: var(--accent-gold);
}
.tracking-step-label {
  font-size: 12px;
  color: var(--surface-sage);
}



/* EDITORIAL FOOTER */
.site-footer {
  background: #040e0b;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--surface-ivory);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 13.5px;
  color: var(--surface-sage);
}
.footer-link:hover {
  color: var(--accent-gold);
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.newsletter-input {
  flex: 1;
  background: rgba(18, 56, 45, 0.6);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-full);
  color: var(--surface-ivory);
  font-size: 13px;
  outline: none;
}
.newsletter-btn {
  background: var(--accent-gold);
  color: var(--bg-deep);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}
.cert-seals-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cert-seal {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

/* SLIDE-OVER CART DRAWER */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 440px;
  max-width: 90vw;
  height: 100%;
  background: #081F18;
  border-left: 1px solid var(--border-subtle);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.active {
  right: 0;
}
.cart-drawer-header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-forest);
}
.cart-drawer-title {
  font-size: 18px;
  font-weight: 700;
}
.btn-close-drawer {
  background: none;
  border: none;
  color: var(--surface-ivory);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.btn-close-drawer:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
}
.cart-free-shipping-bar {
  background: rgba(18, 56, 45, 0.5);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--surface-sage);
}
.progress-bar-bg {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 6px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  width: 85%;
  background: var(--accent-gold);
  border-radius: 4px;
}
.cart-items-container {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-forest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
}
.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: rgba(8, 31, 24, 0.5);
  border-radius: 8px;
  padding: 4px;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--surface-ivory);
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}
.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.qty-num {
  font-size: 13px;
  font-weight: 600;
}
.btn-remove-item {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}
.btn-remove-item:hover {
  color: var(--accent-orange);
}
.cart-drawer-footer {
  padding: 20px 24px 28px;
  background: var(--bg-forest);
  border-top: 1px solid var(--border-subtle);
}
.cart-totals-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--surface-sage);
}
.cart-total-grand {
  font-size: 18px;
  font-weight: 800;
  color: var(--surface-ivory);
  margin: 12px 0 16px;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}
.btn-checkout {
  width: 100%;
  background: var(--accent-orange);
  color: #FFFFFF;
  padding: 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(213, 122, 56, 0.4);
  transition: background 0.2s ease;
}
.btn-checkout:hover {
  background: var(--accent-orange-hover);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 38px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .pdp-grid {
    grid-template-columns: 1fr;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-inner {
    flex-direction: column;
    gap: 4px;
  }
  .hero-title {
    font-size: 32px;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
}

/* REAL OFFICIAL WHATSAPP FLOATING WIDGET */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  padding: 10px 18px 10px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatHeroCard 4s ease-in-out infinite;
}
.floating-whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65);
  color: #FFFFFF;
}
.floating-whatsapp-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.floating-wa-label {
  display: inline-block;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .floating-wa-label {
    display: none;
  }
  .floating-whatsapp-btn {
    padding: 12px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
}


