/* Ashrika Naturals — Premium Kitchen-Fresh Design System */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-base: #FAF8F5; /* Premium lighter off-white */
  --bg-sand: #F4EFE6;
  --primary-green: #1C352D; /* Premium Deep Green */
  --primary-green-light: #2A4D41;
  --primary-terracotta: #3D261C; /* Redefined to Luxury Dark Brown */
  --primary-terracotta-dark: #231510; /* Redefined to Luxury Extra Dark Brown */
  --primary-gold: #C5A059; /* Luxury Gold */
  --accent-gold: #D4AF37;
  --accent-sage: #7B8C77;
  --accent-sage-light: #DFE5DE;
  
  --body-text: #262626;
  --body-text-muted: #5E665F;
  --divider-sage: #E9E1D2;
  --white: #FFFFFF;
  --shadow-color: rgba(30, 59, 39, 0.08);
  --error: #A23A3A;
  --success: #1C352D;

  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-btn: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Layout Constants */
  --header-height: 80px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 8px;
  --border-radius-sm: 4px;
}

/* Base Styles & Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--body-text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary-green);
  font-weight: 700;
  line-height: 1.2;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--primary-terracotta);
  z-index: 10000;
  width: 0%;
  transition: width 0.1s ease;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-sage-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-sage);
}

/* Base Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-terracotta);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(195, 80, 43, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-terracotta-dark);
  box-shadow: 0 6px 16px rgba(195, 80, 43, 0.3);
  transform: translateY(-2px);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--body-text-muted);
  border: 1px solid var(--divider-sage);
}

.btn-ghost:hover {
  background: var(--bg-sand);
  color: var(--body-text);
  border-color: var(--accent-sage);
}

/* Global Announcement Rotating Offer Bar */
.offer-bar-container {
  background-color: var(--primary-terracotta);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.04em;
}

.offer-text {
  position: absolute;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.offer-text.active {
  opacity: 1;
  transform: translateY(0);
}

.offer-badge {
  background: var(--white);
  color: var(--primary-terracotta);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Main Navigation Header */
.main-header {
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider-sage);
  position: sticky;
  top: 0;
  z-index: 999;
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.3s, box-shadow 0.3s;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-green);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-nav-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Navbar Menu Items */
.navbar {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body-text);
  padding: 8px 0;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

.nav-link.active {
  color: var(--primary-green);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
  background-color: var(--primary-gold);
}

/* Header Utilities */
.header-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-icon {
  background: transparent;
  border: none;
  color: var(--primary-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.utility-icon:hover {
  background: var(--bg-sand);
  color: var(--primary-terracotta);
}

.header-svg-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.utility-icon .badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background-color: var(--primary-terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--bg-base);
}

/* Circular Category Slider Strip */
.category-slider-strip {
  background: var(--white);
  border-bottom: 1px solid var(--divider-sage);
  padding: 16px 0;
  overflow: hidden;
}

.category-slider-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
}

.category-slider-container::-webkit-scrollbar {
  display: none; /* Hide scrollbars for slick look */
}

.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
  text-align: center;
  cursor: pointer;
}

.category-circle-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-base);
  border: 2px solid var(--divider-sage);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

.category-circle-card:hover .category-circle-wrapper {
  border-color: var(--primary-terracotta);
  box-shadow: 0 4px 12px var(--shadow-color);
  transform: translateY(-2px);
}

.category-circle-card:hover .category-circle-img {
  transform: scale(1.1);
}

.category-circle-card.coming-soon-category {
  opacity: 0.85;
}

.category-circle-card.coming-soon-category::after {
  content: 'SOON';
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-circle-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
  color: var(--body-text);
  transition: var(--transition-smooth);
}

.category-circle-card:hover .category-circle-label {
  color: var(--primary-terracotta);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background-color: var(--bg-sand); /* Matches the warmer sand-tone of the new image */
  background-size: cover;
  background-position: right center; /* Pins model & bottle to the right edge; left-side gradient handles text area */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: var(--body-text);
  padding: 80px 0;
  margin-bottom: 0;
}

/* Left-side gradient so text stays readable over the photo */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(244,239,230,0.95) 0%,
    rgba(244,239,230,0.80) 35%,
    rgba(244,239,230,0.15) 60%,
    transparent 75%
  );
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 540px;
  z-index: 2;
  position: relative;
  background: transparent;
  padding: 0;
}

/* Hidden on desktop, shown only on mobile via media query */
.hero-mobile-image {
  display: none;
}

/* Hero Trust Bar (Infinite Scrolling Moving Strip) */
.hero-trust-bar {
  overflow: hidden;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 12px 0;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  width: 100%;
  display: flex;
}
.hero-trust-track {
  display: flex;
  width: max-content;
  animation: scroll-trust-bar 22s linear infinite;
  gap: 30px;
}
.hero-trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 10px;
}
.hero-trust-bar-item svg {
  flex-shrink: 0;
  color: var(--primary-green);
}
.hero-trust-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-trust-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--heading-dark);
  white-space: nowrap;
}
.hero-trust-subtitle {
  font-size: 0.68rem;
  color: var(--body-text-muted, #666);
  white-space: nowrap;
}

@keyframes scroll-trust-bar {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 3.4rem;
  color: var(--primary-green);
  margin-bottom: 12px;
  line-height: 1.1;
  font-family: var(--font-serif);
}

.hero-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-gold);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--body-text-muted);
  margin-bottom: 18px;
  font-weight: 400;
}

.hero-features-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider-sage);
}

.hero-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  text-align: center;
  flex: 1;
}

.hero-feature-item svg {
  color: var(--accent-sage);
}

.hero-feature-divider {
  width: 1px;
  height: 30px;
  background-color: var(--divider-sage);
}

.hero-rating-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--primary-gold);
  background-color: rgba(197, 160, 89, 0.08);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-green);
}

.hero-rating-stars {
  color: var(--primary-gold);
  letter-spacing: 1px;
}

.hero-price-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-price-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.hero-price-original {
  font-size: 1.3rem;
  text-decoration: line-through;
  color: var(--body-text-muted);
}

.hero-price-discount {
  font-size: 0.85rem;
  background: var(--primary-terracotta);
  color: var(--white);
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.hero-actions .btn-primary {
  padding: 14px 32px;
  background: var(--primary-terracotta);
  color: var(--white);
  border: none;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-actions .btn-primary:hover {
  background: var(--primary-terracotta-dark);
  transform: translateY(-2px);
}

.hero-actions .btn-ghost-light {
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 14px 32px;
  letter-spacing: 0.05em;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.hero-actions .btn-ghost-light:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-trust-ticker {
  height: 44px;
  overflow: hidden;
  border: 1px solid var(--divider-sage);
  border-radius: 30px;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  width: 100%;
  max-width: 580px;
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.hero-trust-ticker-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: max-content;
  white-space: nowrap;
  animation: trustTickerScrollHorizontal 18s linear infinite;
}

.hero-trust-ticker:hover .hero-trust-ticker-inner {
  animation-play-state: paused;
}

.hero-trust-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hero-trust-ticker-item svg {
  color: var(--primary-gold);
  flex-shrink: 0;
}

.hero-trust-text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--body-text);
}

.hero-trust-separator {
  color: var(--primary-gold);
  font-weight: 700;
  font-size: 0.8rem;
}

.hero-trust-subtitle {
  font-size: 0.75rem;
  color: var(--body-text-muted);
}

@keyframes trustTickerScrollHorizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hero image is now used as section background-image */


@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 0;
    display: block;
    background-image: none !important;
  }
  /* Remove gradient overlay on mobile */
  .hero-section::before {
    display: none;
  }
  /* Mobile image strip */
  .hero-mobile-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
  }
  .hero-image-column {
    display: none;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
    background: var(--bg-base);
    padding: 40px 20px 30px;
    position: static;
    z-index: auto;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    margin: 0;
    position: static;
    z-index: auto;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-features-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 10px;
    width: 100%;
    padding-bottom: 16px;
  }
  .hero-feature-item {
    flex: 0 0 45%;
  }
  .hero-feature-divider {
    display: none;
  }
}


/* Botanical Marquee Strip */
.marquee-strip {
  background: var(--primary-green);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  gap: 40px;
  will-change: transform;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--bg-base);
}

.marquee-sep {
  color: var(--primary-terracotta);
  font-weight: bold;
}

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* Kitchen USP Highlights Section */
.usp-section {
  padding: 50px 0;
  background: var(--bg-base);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--divider-sage);
  box-shadow: 0 8px 24px var(--shadow-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(30, 59, 39, 0.12);
  border-color: var(--accent-sage);
}

.usp-icon {
  font-size: 2.2rem;
  color: var(--primary-terracotta);
}

.usp-card h3 {
  font-size: 1.25rem;
  color: var(--primary-green);
  font-weight: 700;
}

.usp-card p {
  font-size: 0.88rem;
  color: var(--body-text-muted);
}

/* Section Common Headers */
.section-intro-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 40px;
}

.section-intro-left {
  max-width: 500px;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-terracotta);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-green);
  line-height: 1.15;
}

.section-intro-desc {
  max-width: 500px;
  color: var(--body-text-muted);
  font-size: 1rem;
}

/* Product catalog & categories container */
.home-section {
  padding: 80px 0;
}

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

.home-section.dark-section h2, 
.home-section.dark-section h3, 
.home-section.dark-section h4 {
  color: var(--bg-base);
}

.home-section.dark-section .section-intro-desc {
  color: rgba(250, 246, 238, 0.7);
}

/* Product Cards Grid */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 59, 39, 0.14);
  border-color: var(--accent-sage);
}

.product-card-image {
  background: var(--bg-sand);
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-terracotta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 3;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 8px rgba(195,80,43,0.15);
}

.product-card-wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  border: 1px solid var(--divider-sage);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.product-card-wishlist-btn:hover {
  transform: scale(1.1);
  border-color: var(--primary-terracotta);
}

.wishlist-heart-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--body-text-muted);
  stroke-width: 2.2;
  transition: var(--transition-smooth);
}

.product-card-wishlist-btn.active .wishlist-heart-icon {
  fill: var(--primary-terracotta);
  stroke: var(--primary-terracotta);
}

.product-card-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card-concern {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-terracotta);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.product-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
  line-height: 1.25;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.star-rating {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

.star-rating-count {
  font-size: 0.82rem;
  color: var(--body-text-muted);
}

.product-card-desc {
  font-size: 0.88rem;
  color: var(--body-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.45;
}

.product-card-footer {
  border-top: 1px solid var(--divider-sage);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
}

.original-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--body-text-muted);
  margin-left: 2px;
}

.save-tag {
  color: var(--primary-terracotta);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* Coming Soon Product Cards Styling */
.product-card.coming-soon-card {
  border-color: var(--divider-sage);
}

.product-card.coming-soon-card .product-card-image {
  background: var(--bg-sand);
  opacity: 0.75;
  filter: grayscale(30%);
}

.coming-soon-ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 3;
  letter-spacing: 0.05em;
}

.coming-soon-form-inline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
}

.coming-soon-input {
  background: var(--bg-base);
  border: 1px solid var(--divider-sage);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--body-text);
  width: 100%;
  transition: var(--transition-smooth);
}

.coming-soon-input:focus {
  border-color: var(--accent-sage);
  background: var(--white);
}

.coming-soon-btn {
  background: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: var(--transition-smooth);
}

.coming-soon-btn:hover {
  background: var(--primary-green-light);
  transform: translateY(-1px);
}

/* Ingredients Spotlight Section */
.ingredients-section {
  background: var(--bg-sand);
  padding: 80px 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.ingredient-spot-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 24px var(--shadow-color);
  border: 1px solid var(--divider-sage);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.ingredient-spot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 59, 39, 0.1);
}

.ingredient-spot-img-wrap {
  height: 200px;
  background: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.ingredient-spot-card:hover .ingredient-spot-img {
  transform: scale(1.06);
}

.ingredient-spot-info {
  padding: 24px;
}

.ingredient-spot-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.ingredient-spot-role {
  font-size: 0.88rem;
  color: var(--body-text-muted);
  line-height: 1.5;
}

/* Hair Care Sadhana / Quiz Section */
.quiz-section {
  background: var(--bg-base);
  padding: 80px 0;
}

.quiz-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--divider-sage);
  padding: 40px;
  box-shadow: 0 10px 35px var(--shadow-color);
}

.quiz-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 35px;
}

.quiz-pill {
  background: var(--bg-sand);
  color: var(--body-text-muted);
  border: 1px solid var(--divider-sage);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quiz-pill:hover {
  background: var(--white);
  color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
}

.quiz-pill.active {
  background: var(--primary-terracotta);
  color: var(--white);
  border-color: var(--primary-terracotta);
  box-shadow: 0 4px 10px rgba(195,80,43,0.15);
}

.quiz-result-panel {
  animation: fadeIn 0.4s ease-in-out;
}

.routine-result-card {
  border-left: 4px solid var(--primary-terracotta);
  background: var(--bg-sand);
  padding: 30px;
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}

.routine-details-text h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 18px;
}

.routine-meta-row {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 140px 1fr;
}

.routine-meta-row strong {
  color: var(--primary-green);
}

.routine-meta-row span {
  color: var(--body-text);
}

.routine-tip-box {
  background: rgba(195, 80, 43, 0.08);
  border: 1px dashed rgba(195, 80, 43, 0.3);
  padding: 16px;
  border-radius: var(--border-radius-md);
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--primary-terracotta-dark);
}

/* Testimonial / Reviews Slider */
.testimonials-section {
  background: var(--primary-green);
  color: var(--white);
  padding: 80px 0;
}

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

.review-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.review-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-comment {
  font-size: 0.95rem;
  color: rgba(250, 246, 238, 0.85);
  font-style: italic;
  flex-grow: 1;
  line-height: 1.5;
}

.review-author {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--bg-base);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

/* Global Footer styling */
.global-footer {
  background: var(--primary-green);
  color: var(--bg-base);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo {
  height: 58px;
  width: auto;
  align-self: flex-start;
}

.footer-about-text {
  color: rgba(250, 246, 238, 0.7);
  line-height: 1.5;
}

.footer-column h3 {
  font-size: 1.25rem;
  color: var(--bg-base);
  font-weight: 700;
  border-bottom: 1.5px solid var(--accent-gold);
  padding-bottom: 8px;
  align-self: flex-start;
  min-width: 80px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(250, 246, 238, 0.75);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-item {
  color: rgba(250, 246, 238, 0.75);
  line-height: 1.5;
}

.footer-contact-item strong {
  color: var(--bg-base);
}

.footer-kitchen-alert {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: var(--border-radius-md);
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(250, 246, 238, 0.5);
  font-size: 0.8rem;
}

.footer-payment-icons {
  display: flex;
  gap: 10px;
  font-size: 1.4rem;
  color: rgba(250, 246, 238, 0.6);
}

/* Slide Out Cart Drawer Panel */
.cart-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  height: 100vh;
  background: var(--bg-base);
  box-shadow: -10px 0 35px rgba(30, 59, 39, 0.2);
  z-index: 10001;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid var(--divider-sage);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
}

.cart-drawer-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
}

.cart-drawer-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--body-text-muted);
  transition: var(--transition-smooth);
}

.cart-drawer-close:hover {
  color: var(--primary-terracotta);
}

/* Shipping Progress Bar in Drawer */
.shipping-progress-box {
  background: var(--bg-sand);
  padding: 14px 24px;
  border-bottom: 1px solid var(--divider-sage);
  font-size: 0.85rem;
}

.shipping-progress-text {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 6px;
}

.shipping-progress-text strong {
  color: var(--primary-terracotta);
}

.shipping-progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: var(--divider-sage);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.shipping-progress-bar-fill {
  height: 100%;
  background: var(--primary-green);
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.cart-drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.drawer-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--divider-sage);
  margin-bottom: 16px;
  position: relative;
  transition: var(--transition-smooth);
}

.drawer-item:hover {
  border-color: var(--accent-sage);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.drawer-item-img {
  width: 80px;
  height: 100px;
  background: var(--bg-sand);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-item-img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.drawer-item-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.3;
}

.drawer-item-meta {
  font-size: 0.8rem;
  color: var(--body-text-muted);
  margin-top: 4px;
}

.drawer-item-control {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* Stepper styling */
.stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-sand);
  border: 1px solid var(--divider-sage);
  border-radius: 20px;
  padding: 3px;
}

.stepper-btn {
  background: transparent;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  transition: var(--transition-smooth);
}

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

.stepper-val {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0 10px;
  min-width: 24px;
  text-align: center;
}

.drawer-item-remove {
  background: transparent;
  border: none;
  color: var(--error);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--divider-sage);
  background: var(--white);
}

.drawer-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--body-text-muted);
}

.drawer-summary-row.discount {
  color: var(--primary-terracotta);
  font-weight: 600;
}

.drawer-summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--divider-sage);
  margin-bottom: 18px;
}

.cart-drawer-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--body-text-muted);
}

.cart-drawer-empty p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* Search Overlay Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250, 246, 238, 0.98);
  z-index: 11000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.search-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.search-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--body-text-muted);
  transition: var(--transition-smooth);
}

.search-modal-close:hover {
  color: var(--primary-terracotta);
}

.search-modal-container {
  max-width: 700px;
  width: 90%;
  margin: 100px auto auto auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search-modal-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--primary-green);
  background: transparent;
  font-size: 1.8rem;
  font-family: var(--font-serif);
  padding: 10px 0;
  color: var(--primary-green);
}

.search-results-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 8px;
}

.search-result-row {
  display: flex;
  gap: 16px;
  padding: 12px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--divider-sage);
  background: var(--white);
  transition: var(--transition-smooth);
}

.search-result-row:hover {
  border-color: var(--accent-sage);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.search-result-thumb {
  width: 50px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background: var(--bg-sand);
}

.search-result-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-result-title {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 0.95rem;
}

.search-result-subtitle {
  font-size: 0.8rem;
  color: var(--body-text-muted);
  margin-top: 2px;
}

/* General Coming Soon Overlay Modal */
.waitlist-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 12000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.waitlist-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.waitlist-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  background: var(--bg-base);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 15px 40px rgba(30, 59, 39, 0.25);
  width: 500px;
  max-width: 90%;
  z-index: 12001;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.waitlist-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.waitlist-modal-header {
  background: var(--primary-green);
  color: var(--white);
  padding: 24px 30px;
  position: relative;
}

.waitlist-modal-header h3 {
  color: var(--bg-base);
  font-size: 1.5rem;
  font-weight: 700;
}

.waitlist-modal-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: rgba(250, 246, 238, 0.8);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.waitlist-modal-close:hover {
  color: var(--white);
}

.waitlist-modal-body {
  padding: 30px;
}

.waitlist-modal-body p {
  font-size: 0.95rem;
  color: var(--body-text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.waitlist-modal-body p strong {
  color: var(--primary-green);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--body-text);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary-terracotta);
  box-shadow: 0 0 0 3px rgba(195, 80, 43, 0.08);
}

.waitlist-modal-footer {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--body-text-muted);
  text-align: center;
}

/* Collection Page Layout */
.collection-page-wrap {
  padding: 40px 0 80px 0;
  min-height: 80vh;
}

.collection-grid-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  margin-top: 30px;
}

.collection-sidebar {
  border-right: 1px solid var(--divider-sage);
  padding-right: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--divider-sage);
  padding-bottom: 8px;
}

.collection-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection-menu-link-item {
  font-size: 0.95rem;
  color: var(--body-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.collection-menu-link-item:hover {
  color: var(--primary-terracotta);
}

.collection-menu-link-item.active {
  color: var(--primary-terracotta);
  font-weight: 700;
}

.collection-menu-link-item.coming-soon-badge-item::after {
  content: 'SOON';
  background: var(--bg-sand);
  color: var(--body-text-muted);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.collection-menu-link-item.active::before {
  content: '•';
  color: var(--primary-terracotta);
  margin-right: 6px;
  font-size: 1.2rem;
  line-height: 1;
}

/* Coming Soon Category Block on Collection Page */
.collection-coming-soon-panel {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 24px var(--shadow-color);
  max-width: 680px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease;
}

.coming-soon-ill {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--primary-terracotta);
}

.collection-coming-soon-panel h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.collection-coming-soon-panel p {
  color: var(--body-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Product Detail Page (PDP) Layout */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.pdp-gallery {
  position: relative;
}

.pdp-main-image {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.pdp-main-img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.pdp-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-concern-tag {
  display: inline-block;
  background: rgba(195, 80, 43, 0.1);
  color: var(--primary-terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  align-self: flex-start;
  letter-spacing: 0.05em;
}

.pdp-title {
  font-size: 2.5rem;
  color: var(--primary-green);
}

.pdp-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary-gold);
  margin-top: -8px;
}

.pdp-ratings-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-description {
  font-size: 1rem;
  color: var(--body-text-muted);
  line-height: 1.6;
}

.pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--bg-sand);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--divider-sage);
}

.pdp-current-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.pdp-original-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  color: var(--body-text-muted);
}

.swatch-group-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.swatches-container {
  display: flex;
  gap: 12px;
}

.swatch-btn {
  background: var(--white);
  border: 1.5px solid var(--divider-sage);
  padding: 10px 20px;
  border-radius: 12px;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 95px;
}

.swatch-size {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--body-text);
  transition: var(--transition-smooth);
}

.swatch-price {
  font-size: 0.78rem;
  color: var(--body-text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.swatch-btn:hover {
  border-color: var(--primary-terracotta);
}

.swatch-btn:hover:not(.active) .swatch-size {
  color: var(--primary-terracotta);
}

.swatch-btn:hover:not(.active) .swatch-price {
  color: var(--primary-terracotta);
}

.swatch-btn.active {
  background: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  box-shadow: 0 4px 10px rgba(61, 38, 28, 0.15);
}

.swatch-btn.active .swatch-size {
  color: var(--white);
}

.swatch-btn.active .swatch-price {
  color: rgba(255, 255, 255, 0.85);
}

.pdp-cta-container {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.pdp-qty-stepper {
  height: 48px;
  padding: 4px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--divider-sage);
}

.pdp-qty-stepper .stepper-btn {
  width: 38px;
  height: 38px;
}

.pdp-add-to-cart {
  flex-grow: 1;
  height: 48px;
}

.btn-wishlist-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--divider-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-wishlist-toggle:hover {
  border-color: var(--primary-terracotta);
}

.btn-wishlist-toggle.active .wishlist-heart-icon {
  fill: var(--primary-terracotta);
  stroke: var(--primary-terracotta);
}

/* Accordions */
.pdp-accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.accordion-item {
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-md);
  background: var(--white);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.accordion-title {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 0.95rem;
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--body-text-muted);
  transition: transform 0.2s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--primary-terracotta);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content {
  padding: 0 20px 20px 20px;
  font-size: 0.9rem;
  color: var(--body-text-muted);
  line-height: 1.5;
}

.accordion-content ul, .accordion-content ol {
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 8px;
}

.ingredient-item {
  border-bottom: 1px dashed var(--divider-sage);
  padding: 10px 0;
}

.ingredient-item:last-child {
  border-bottom: none;
}

.ingredient-name {
  font-weight: 700;
  color: var(--primary-green);
  display: block;
  margin-bottom: 4px;
}

/* Reviews Summary Dash */
.reviews-section {
  border-top: 1px solid var(--divider-sage);
  padding-top: 60px;
  margin-top: 40px;
}

.reviews-summary-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  align-items: center;
  box-shadow: 0 8px 24px var(--shadow-color);
  margin-bottom: 40px;
}

.reviews-summary-left {
  text-align: center;
  border-right: 1px solid var(--divider-sage);
  padding-right: 20px;
}

.reviews-average-number {
  font-size: 3.5rem;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
}

.reviews-average-stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin: 8px 0;
  letter-spacing: 2px;
}

.reviews-total-count {
  font-size: 0.85rem;
  color: var(--body-text-muted);
}

.reviews-summary-middle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--divider-sage);
  padding-right: 20px;
}

.rating-bar-row {
  display: grid;
  grid-template-columns: 50px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.rating-bar-stars {
  color: var(--body-text-muted);
  font-weight: 600;
}

.rating-bar-track {
  height: 6px;
  background: var(--bg-sand);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--accent-gold);
  border-radius: 3px;
}

.rating-bar-percent {
  color: var(--body-text-muted);
  text-align: right;
}

.reviews-summary-right {
  text-align: center;
  padding: 0 10px;
}

.review-form-container {
  display: none;
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 24px var(--shadow-color);
  animation: slideDown 0.3s ease;
}

.form-star-select {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
  color: var(--divider-sage);
}

.form-star-select span {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-star-select span:hover {
  transform: scale(1.2);
}

.form-textarea {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--body-text);
  width: 100%;
  resize: vertical;
  transition: var(--transition-smooth);
}

.form-textarea:focus {
  border-color: var(--primary-terracotta);
  box-shadow: 0 0 0 3px rgba(195, 80, 43, 0.08);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews-list .review-item {
  background: var(--white);
  border-color: var(--divider-sage);
}

.reviews-list .review-item:hover {
  box-shadow: 0 6px 16px var(--shadow-color);
}

.review-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.review-date {
  font-size: 0.8rem;
  color: var(--body-text-muted);
}

.review-helpful {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--body-text-muted);
  border-top: 1px dashed var(--divider-sage);
  padding-top: 12px;
  margin-top: 4px;
}

.helpful-btn {
  background: var(--bg-sand);
  border: 1px solid var(--divider-sage);
  border-radius: 12px;
  padding: 2px 10px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.helpful-btn:hover {
  background: var(--white);
  border-color: var(--primary-green);
  color: var(--primary-green);
}

/* Cart Page Design */
.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-top: 30px;
}

.cart-table-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: 0 8px 24px var(--shadow-color);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.cart-table th {
  border-bottom: 1.5px solid var(--divider-sage);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--primary-green);
  font-weight: 700;
}

.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--divider-sage);
  vertical-align: middle;
}

.cart-item-row-details {
  display: flex;
  gap: 16px;
  align-items: center;
}

.cart-item-row-img {
  width: 60px;
  height: 75px;
  background: var(--bg-sand);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-row-img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.cart-item-row-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-green);
  line-height: 1.35;
}

.cart-item-row-title a {
  color: inherit;
  text-decoration: none;
}

.cart-item-row-title a:hover {
  color: var(--primary-gold);
}

.cart-item-row-meta {
  font-size: 0.8rem;
  color: var(--body-text-muted);
  margin-top: 2px;
}

.cart-coupon-section {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cart-coupon-input {
  background: var(--bg-sand);
  border: 1px solid var(--divider-sage);
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 0.88rem;
  flex-grow: 1;
}

.cart-summary-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: 0 8px 24px var(--shadow-color);
  align-self: start;
}

.cart-summary-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  border-bottom: 1.5px solid var(--divider-sage);
  padding-bottom: 10px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--body-text-muted);
}

.summary-row.discount {
  color: var(--primary-terracotta);
  font-weight: 600;
}

.summary-row.total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--divider-sage);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   ANIMATIONS & KEYFRAMES
   ═══════════════════════════════════════════════ */

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

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

/* ── Scroll Reveal Animation States ── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-blur,
.reveal-rotate,
.stagger-children {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-blur {
  transform: translateY(30px);
  filter: blur(4px);
}

.reveal-rotate {
  transform: translateY(30px) rotate(-2deg);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-blur.is-visible,
.reveal-rotate.is-visible,
.stagger-children.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ── Stagger Children Animation ── */
.stagger-children.is-visible > * {
  animation: staggerFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stagger-children.is-visible > *:nth-child(1) { animation-delay: 0s; }
.stagger-children.is-visible > *:nth-child(2) { animation-delay: 0.08s; }
.stagger-children.is-visible > *:nth-child(3) { animation-delay: 0.16s; }
.stagger-children.is-visible > *:nth-child(4) { animation-delay: 0.24s; }
.stagger-children.is-visible > *:nth-child(5) { animation-delay: 0.32s; }
.stagger-children.is-visible > *:nth-child(6) { animation-delay: 0.4s; }

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

/* ═══════════════════════════════════════════════
   GLASSMORPHISM CARD EFFECTS
   ═══════════════════════════════════════════════ */

.usp-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.usp-card:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(143, 158, 139, 0.4);
}

.quiz-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.review-item {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ── Premium Quote Decoration on Testimonials ── */
.review-comment::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-gold);
  opacity: 0.4;
  display: block;
  margin-bottom: -12px;
}

/* ═══════════════════════════════════════════════
   GRADIENT TEXT ON SECTION TITLES
   ═══════════════════════════════════════════════ */

.section-title {
  background: linear-gradient(135deg, var(--primary-green) 0%, #3A6B4A 50%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Override gradient on dark sections */
.testimonials-section .section-title,
.home-section.dark-section .section-title {
  background: linear-gradient(135deg, #FAF6EE 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════
   PREMIUM GLOW HOVER ON PRODUCT CARDS
   ═══════════════════════════════════════════════ */

.product-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(30, 59, 39, 0.12),
    0 0 40px rgba(184, 138, 34, 0.06);
  border-color: rgba(184, 138, 34, 0.25);
}

.ingredient-spot-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 40px rgba(30, 59, 39, 0.1),
    0 0 30px rgba(184, 138, 34, 0.05);
}

/* ═══════════════════════════════════════════════
   ANIMATED GRADIENT BORDER — HERO CTA
   ═══════════════════════════════════════════════ */

.hero-actions .btn-primary {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-actions .btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    var(--primary-terracotta),
    var(--accent-gold),
    var(--primary-terracotta)
  );
  animation: spinBorder 4s linear infinite;
  z-index: -2;
}

.hero-actions .btn-primary::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 30px;
  background: var(--primary-terracotta);
  z-index: -1;
  transition: background 0.3s ease;
}

.hero-actions .btn-primary:hover::after {
  background: var(--primary-terracotta-dark);
}

@keyframes spinBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════
   FLOATING PARTICLES — HERO SECTION
   ═══════════════════════════════════════════════ */

/* Floating particles removed — hero now uses ::before for gradient overlay */

/* ═══════════════════════════════════════════════
   SHIMMER LOADING EFFECT ON IMAGES
   ═══════════════════════════════════════════════ */

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card-image::after {
  opacity: 1;
  animation: shimmerGlide 1.5s ease-in-out infinite;
}

@keyframes shimmerGlide {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════
   PULSE GLOW — ADD TO CART BUTTONS
   ═══════════════════════════════════════════════ */

.product-card-footer .btn-primary,
.pdp-add-to-cart {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card-footer .btn-primary:hover,
.pdp-add-to-cart:hover {
  box-shadow: 0 6px 20px rgba(195, 80, 43, 0.35);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   NAV LINK GRADIENT UNDERLINE
   ═══════════════════════════════════════════════ */

.nav-link::after {
  background: linear-gradient(90deg, var(--primary-terracotta), var(--accent-gold));
}

/* ═══════════════════════════════════════════════
   USP ICON SVG STYLING
   ═══════════════════════════════════════════════ */

.usp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(195, 80, 43, 0.08) 0%, rgba(184, 138, 34, 0.08) 100%);
  color: var(--primary-terracotta);
  flex-shrink: 0;
}

.usp-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-terracotta);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   COMING SOON ILLUSTRATION SVG
   ═══════════════════════════════════════════════ */

.coming-soon-ill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(195, 80, 43, 0.1), rgba(184, 138, 34, 0.1));
  animation: floatBounce 3s ease-in-out infinite;
}

.coming-soon-ill svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-terracotta);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════
   FOOTER PAYMENT SVG ICONS
   ═══════════════════════════════════════════════ */

.footer-payment-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-payment-icons svg {
  width: 24px;
  height: 24px;
  stroke: rgba(250, 246, 238, 0.55);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-smooth);
}

.footer-payment-icons svg:hover {
  stroke: var(--accent-gold);
}

/* ═══════════════════════════════════════════════
   OFFER BAR SVG LEAF ICON
   ═══════════════════════════════════════════════ */

.offer-leaf-icon {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-right: 4px;
  vertical-align: middle;
  display: inline-block;
}

/* ═══════════════════════════════════════════════
   CURSOR TRAIL EFFECT
   ═══════════════════════════════════════════════ */

.cursor-trail-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
  filter: blur(1px);
  will-change: transform;
}

.cursor-trail-dot.visible {
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   POLICY PAGES
   ═══════════════════════════════════════════════ */

.policy-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 50px 60px;
  box-shadow: 0 8px 30px var(--shadow-color);
  margin-bottom: 60px;
  max-width: 900px;
}

.policy-card h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.policy-card h3 {
  font-family: var(--font-serif);
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 12px;
}

.policy-card p {
  font-size: 0.95rem;
  color: var(--body-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.policy-card em {
  color: var(--body-text-muted);
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════
   ACCOUNT PAGE
   ═══════════════════════════════════════════════ */

.account-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.account-nav-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 8px 24px var(--shadow-color);
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 60px);
}

.account-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-menu-item button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 16px;
  border-radius: var(--border-radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--body-text-muted);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.account-menu-item button:hover {
  background: var(--bg-sand);
  color: var(--primary-green);
}

.account-menu-item.active button {
  background: rgba(195, 80, 43, 0.08);
  color: var(--primary-terracotta);
  font-weight: 700;
}

.account-content-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 8px 24px var(--shadow-color);
}

/* Orders Table */
.orders-table {
  width: 100%;
  border-collapse: collapse;
}

.orders-table th {
  border-bottom: 1.5px solid var(--divider-sage);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--primary-green);
  font-weight: 700;
}

.orders-table td {
  padding: 16px;
  border-bottom: 1px solid var(--divider-sage);
  font-size: 0.9rem;
  color: var(--body-text);
  vertical-align: middle;
}

.orders-table tr:hover td {
  background-color: var(--bg-sand);
}

/* ═══════════════════════════════════════════════
   SEARCH RESULTS
   ═══════════════════════════════════════════════ */

.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-md);
  background: var(--white);
  transition: var(--transition-smooth);
  gap: 16px;
}

.search-result-item:hover {
  border-color: var(--accent-sage);
  box-shadow: 0 4px 16px var(--shadow-color);
  transform: translateY(-2px);
}

.search-result-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  background: var(--bg-sand);
  flex-shrink: 0;
}

.search-result-details {
  min-width: 0;
}

.search-result-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-green);
  line-height: 1.3;
}

.search-result-title a {
  color: inherit;
}

.search-result-title a:hover {
  color: var(--primary-terracotta);
}

.search-result-concern {
  font-size: 0.75rem;
  color: var(--body-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.search-result-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-result-price {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1rem;
}

.search-result-add-btn {
  padding: 6px 16px !important;
  font-size: 0.75rem !important;
  border-radius: 20px !important;
}

.search-no-results {
  text-align: center;
  color: var(--body-text-muted);
  padding: 30px 0;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════
   HEADER SCROLLED COMPACT STATE
   ═══════════════════════════════════════════════ */

.main-header.header-scrolled .header-logo-img {
  height: 42px;
  transition: height 0.3s ease;
}

/* ═══════════════════════════════════════════════
   ENHANCED OFFER BAR TRANSITIONS
   ═══════════════════════════════════════════════ */

.offer-text {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cart-page-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .account-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .account-nav-card {
    position: static;
  }
  .policy-card {
    padding: 36px 30px;
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal overflow from reveal animations on mobile */
  .reveal-left,
  .reveal-right {
    transform: translateY(20px); /* use vertical-only animation on mobile */
  }
  /* Ensure collection grid is fully constrained on mobile */
  .collection-grid-layout,
  .collection-sidebar,
  .collection-content-area {
    max-width: 100%;
    box-sizing: border-box;
  }
  :root {
    --header-height: 70px;
  }
  .header-container {
    position: relative;
  }
  .brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  /* Hide Account and Wishlist icons in header on mobile to prevent crowding */
  .header-utilities a[aria-label="My Account"],
  .header-utilities a[aria-label="Wishlist"] {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .navbar {
    display: none; /* Hide desktop menu */
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn,
  .hero-actions .btn-ghost-light {
    width: 100%;
  }
  .product-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .quiz-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .quiz-pill {
    padding: 10px 16px;
    font-size: 0.85rem;
    text-align: center;
  }
  .reviews-summary-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reviews-summary-left, .reviews-summary-middle {
    border-right: none;
    border-bottom: 1px solid var(--divider-sage);
    padding-right: 0;
    padding-bottom: 20px;
  }
  .collection-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .collection-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--divider-sage);
    padding-right: 0;
    padding-bottom: 16px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .collection-content-area {
    width: 100%;
    min-width: 0;
  }
  .usp-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .section-intro-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .collection-menu-links {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .collection-menu-link-item {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid var(--divider-sage);
  }
  .collection-menu-link-item.active {
    background: rgba(195, 80, 43, 0.08);
    border-color: var(--primary-terracotta);
    color: var(--primary-terracotta);
  }
  .pdp-main-image {
    height: auto;
    aspect-ratio: 1 / 1;
    max-height: 380px;
  }
  .cart-table-card {
    padding: 16px;
  }
  .cart-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cart-summary-card {
    padding: 20px;
  }
  .orders-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .account-content-card {
    padding: 24px 16px;
  }
  .policy-card {
    padding: 24px 16px;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .quiz-options {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding: 4px 4px 12px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar */
    gap: 8px !important;
    margin-bottom: 20px !important;
  }
  .quiz-options::-webkit-scrollbar {
    display: none;
  }
  .quiz-pill {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 0.8rem;
  }
  .routine-result-card {
    padding: 20px 16px !important;
    border-radius: var(--border-radius-lg) !important;
    border-left: none !important;
    border-top: 4px solid var(--primary-terracotta) !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem !important;
  }
  .hero-trust-dot {
    display: none;
  }
  .offer-bar-container {
    height: 48px;
  }
  .offer-text {
    white-space: normal !important;
    text-align: center;
    font-size: 0.72rem !important;
    padding: 0 10px;
    line-height: 1.25;
  }
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 24px !important;
  }
  .trust-badge-card {
    padding: 12px 8px !important;
  }
  .trust-badge-title {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }
  .trust-badge-svg {
    width: 24px !important;
    height: 24px !important;
    margin-bottom: 8px !important;
  }
  .comparison-table th, .comparison-table td {
    padding: 12px 10px !important;
    font-size: 0.75rem !important;
  }
  .quiz-container {
    padding: 15px;
  }
  .routine-meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .cart-table th {
    font-size: 0.95rem;
  }
  .cart-table td {
    padding: 12px 8px;
  }
  .cart-item-row-details {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile Nav Slide-in Panel */
#mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10005;
  pointer-events: none;
}

.mobile-nav-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: var(--transition-smooth);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--bg-base);
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  padding: 24px;
}

#mobile-nav-overlay.active {
  pointer-events: auto;
}

#mobile-nav-overlay.active .mobile-nav-backdrop {
  opacity: 1;
}

#mobile-nav-overlay.active .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--divider-sage);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.mobile-nav-panel-logo {
  height: 44px;
  width: auto;
}

.mobile-nav-panel-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--body-text-muted);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-nav-link-item a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
  padding: 8px 0;
  border-bottom: 1.5px solid transparent;
}

.mobile-nav-link-item a svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.mobile-nav-link-item a:hover {
  color: var(--primary-terracotta);
  border-bottom-color: var(--primary-terracotta);
}

/* ─────────────────────────────────────────────────────────────────────────
   Ashrika Naturals - New Premium Brand Redesign Additions
   ───────────────────────────────────────────────────────────────────────── */

/* Trust Badges Grid */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: center;
}

.trust-badge-card {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  padding: 20px 15px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.trust-badge-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 20px rgba(197,160,89,0.08);
}

.trust-badge-icon {
  font-size: 2.2rem;
  color: var(--primary-gold);
  margin-bottom: 12px;
  display: block;
}

.trust-badge-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-green);
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

/* Ingredient Story Layout */
.ingredient-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .ingredient-story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.ingredient-story-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.02);
  border: 1px solid var(--divider-sage);
  display: flex;
  flex-direction: column;
}

.ingredient-story-img-wrapper {
  height: 240px;
  overflow: hidden;
  position: relative;
}

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

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

.ingredient-story-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ingredient-story-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--primary-gold);
}

.ingredient-story-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--primary-green);
}

.ingredient-story-text {
  font-size: 0.95rem;
  color: var(--body-text-muted);
  line-height: 1.6;
}

/* Videos and Demos Section */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.video-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--divider-sage);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.video-thumbnail-wrapper {
  position: relative;
  height: 380px;
  background-color: var(--primary-green);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: var(--primary-green);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.video-card:hover .video-play-btn {
  background: var(--primary-gold);
  color: var(--white);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 20px;
}

.video-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-gold);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}

.video-title {
  font-size: 1.15rem;
  color: var(--primary-green);
  font-family: var(--font-serif);
}

/* Video Modal Player */
.video-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 25, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 12000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-backdrop.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.video-modal-container {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  border: 1px solid var(--primary-gold);
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.video-modal-close:hover {
  color: var(--primary-gold);
}

.video-iframe-player {
  width: 100%;
  height: 100%;
  border: none;
}

/* Before / After Section */
.before-after-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .before-after-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.before-after-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--divider-sage);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.before-after-img-wrap {
  display: flex;
  height: 300px;
  position: relative;
}

.before-after-pane {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.before-after-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-label {
  position: absolute;
  bottom: 12px;
  background: rgba(28, 53, 45, 0.85);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.before-pane .before-after-label {
  left: 12px;
}

.after-pane .before-after-label {
  right: 12px;
}

.before-after-info {
  padding: 24px;
  text-align: center;
}

.before-after-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--primary-green);
}

.before-after-desc {
  font-size: 0.9rem;
  color: var(--body-text-muted);
}


/* FAQ Accordion additions */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--primary-gold);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-green);
}

.faq-icon-indicator {
  font-size: 1.2rem;
  color: var(--primary-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-indicator {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-content {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--body-text-muted);
  line-height: 1.6;
}

/* Sticky Bottom Mobile Bar */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
  padding: 12px 16px;
  display: none;
  z-index: 9999;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .sticky-mobile-bar.active {
    display: flex;
  }
  .pdp-page .global-footer {
    padding-bottom: 100px !important; /* normal footer bottom padding (30px) + 70px offset */
  }
}

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

.sticky-mobile-title {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  color: var(--primary-green);
}

.sticky-mobile-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-terracotta);
}

.sticky-mobile-btn {
  flex-shrink: 0;
  padding: 10px 20px !important;
  font-size: 0.8rem !important;
}

/* Sticky Add to Cart Desktop */
.sticky-desktop-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  padding: 10px 0;
  z-index: 9998;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.sticky-desktop-bar.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

.sticky-desktop-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-desktop-img {
  width: 40px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}

.sticky-desktop-title {
  font-size: 1.05rem;
  color: var(--primary-green);
  font-family: var(--font-serif);
}

.sticky-desktop-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sticky-desktop-price {
  font-weight: 700;
  color: var(--primary-terracotta);
  font-size: 1.15rem;
}

/* Exit Intent Discount Popup */
.exit-intent-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 25, 20, 0.7);
  backdrop-filter: blur(5px);
  z-index: 20000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exit-intent-backdrop.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.exit-intent-modal {
  width: 90%;
  max-width: 480px;
  background: var(--bg-base);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);
  border: 1px solid var(--primary-gold);
  position: relative;
  padding: 40px 30px;
  text-align: center;
}

.exit-intent-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--body-text-muted);
  cursor: pointer;
}

.exit-intent-badge {
  display: inline-block;
  background: var(--primary-gold);
  color: var(--white);
  font-family: var(--font-btn);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.exit-intent-title {
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--primary-green);
  margin-bottom: 12px;
}

.exit-intent-subtitle {
  font-size: 0.95rem;
  color: var(--body-text-muted);
  margin-bottom: 24px;
}

.exit-intent-code-box {
  background: var(--white);
  border: 2px dashed var(--primary-gold);
  padding: 12px;
  border-radius: var(--border-radius-md);
  margin-bottom: 20px;
}

.exit-intent-code {
  font-family: var(--font-btn);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.1em;
}

/* Bundle Selection and PDP Subscriptions styles */
.pdp-subscription-box {
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--primary-gold);
  border-radius: var(--border-radius-md);
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pdp-subscription-box:hover {
  background: rgba(197, 160, 89, 0.12);
}

.pdp-subscription-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-green);
}

.pdp-subscription-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-green);
}

.pdp-subscription-tag {
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-left: 6px;
}

/* Frequently Bought Together Box */
.frequently-bought-wrapper {
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.frequently-bought-title {
  font-size: 1.25rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.fbt-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fbt-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fbt-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-green);
}

.fbt-img {
  width: 50px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--divider-sage);
}

.fbt-details {
  flex-grow: 1;
}

.fbt-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body-text);
}

.fbt-item-price {
  font-size: 0.85rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.fbt-pricing-summary {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--divider-sage);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fbt-total-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary-green);
}

/* Bundle Discount Card Grid */
.bundle-discount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force 3 columns horizontally */
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 24px;
  padding-top: 10px; /* Safe padding for top absolute badges */
}

.bundle-card {
  border: 2px solid var(--divider-sage);
  background: var(--white);
  border-radius: var(--border-radius-md);
  padding: 16px 8px; /* Tighter padding for alignment */
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px; /* Force uniform card heights */
}

.bundle-card.active {
  border-color: var(--primary-gold);
  background: rgba(197, 160, 89, 0.03);
}

.bundle-card-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.bundle-card-qty {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
}

.bundle-card-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-terracotta);
}

.bundle-card-savings {
  font-size: 0.72rem;
  color: #2E5C3D;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .bundle-card-qty {
    font-size: 0.85rem;
  }
  .bundle-card-price {
    font-size: 1.05rem;
  }
  .bundle-card-savings {
    font-size: 0.65rem;
  }
  .bundle-card-badge {
    font-size: 0.58rem;
    padding: 1px 8px;
  }
}

/* Marketplace Badges */
.marketplace-badges-box {
  margin-top: 30px;
  padding: 20px;
  border-radius: var(--border-radius-lg);
  background: var(--bg-sand);
  text-align: center;
}

.marketplace-badges-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-green);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.marketplace-badges-flex {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.marketplace-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--divider-sage);
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.marketplace-badge:hover {
  transform: translateY(-3px);
  border-color: var(--primary-gold);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.marketplace-badge-amazon {
  color: #252F3D;
}

.marketplace-badge-flipkart {
  color: #2874F0;
}

.marketplace-badge-nykaa {
  color: #E80071;
}

/* Blog layouts */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--divider-sage);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary-gold);
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--primary-green);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--body-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-card-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-green);
  border-bottom: 1px solid var(--primary-gold);
  padding-bottom: 2px;
}

.blog-card-link:hover {
  color: var(--primary-gold);
}

/* WhatsApp Button styles */
.btn-whatsapp {
  background: #25D366 !important;
  color: var(--white) !important;
  border: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 8px;
  padding: 14px 28px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #128C7E !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.hero-actions {
  flex-wrap: wrap;
}

/* Responsive Cart Page Styles */
.checkout-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
}

.checkout-form-row input,
.checkout-form-row .form-input {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.checkout-pincode-row {
  align-items: center;
}

@media (max-width: 992px) {
  .cart-page-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

@media (max-width: 768px) {
  /* Prevent iOS input auto-zoom by setting 16px font-size */
  #shipping-details-form input,
  #shipping-details-form select,
  #coupon-code-input {
    font-size: 16px !important;
    box-sizing: border-box !important;
  }

  /* Stack checkout table fields on mobile */
  .cart-table, 
  .cart-table tbody, 
  .cart-table tr, 
  .cart-table td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }
  
  .cart-table thead {
    display: none;
  }
  
  .cart-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--divider-sage);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .cart-table td {
    padding: 0 !important;
    border: none !important;
  }
  
  /* Lay out table columns as row metadata blocks */
  .cart-table td:nth-child(2) {
    display: inline-flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-size: 0.95rem;
  }
  .cart-table td:nth-child(2)::before {
    content: "Unit Price";
    font-weight: 600;
    color: var(--body-text-muted);
  }

  .cart-table td:nth-child(3) {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .cart-table td:nth-child(3)::before {
    content: "Quantity";
    font-weight: 600;
    color: var(--body-text-muted);
  }

  .cart-table td:nth-child(4) {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
    font-size: 1.1rem;
    font-weight: bold;
    border-top: 1px dashed var(--divider-sage) !important;
    padding-top: 10px !important;
    margin-top: 4px;
  }
  .cart-table td:nth-child(4)::before {
    content: "Subtotal";
    font-weight: 600;
    color: var(--body-text-muted);
  }

  .cart-coupon-section {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }
  .cart-coupon-section input {
    width: 100% !important;
  }
  .cart-coupon-section button {
    width: 100% !important;
  }
  
  .checkout-form-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .checkout-form-row input {
    width: 100% !important;
  }
  
  .checkout-pincode-row {
    align-items: stretch;
  }

  #place-order-submit-btn,
  #cart-whatsapp-btn {
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    border-radius: 8px !important;
  }
}

@media (max-width: 480px) {
  .cart-table-card, 
  .cart-summary-card {
    padding: 18px 14px !important;
    border-radius: var(--border-radius-md) !important;
  }
}

/* Why Ashrika Comparison Table */
.comparison-container {
  max-width: 850px;
  margin: 50px auto 0 auto;
  padding: 0 15px;
}

.comparison-subtitle {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.comparison-wrapper {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(24, 48, 32, 0.06);
  border: 1px solid var(--divider-sage);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(24, 48, 32, 0.1);
}

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

.comparison-table th {
  background: #F4EFE6; /* Muted warm sand */
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 20px 24px;
  border-bottom: 2px solid var(--divider-sage);
}

.comparison-table th.ashrika-header {
  background: #E8E2D5; /* Darker sand to highlight Ashrika */
  color: var(--primary-green);
  text-align: center;
  position: relative;
}

.comparison-table th.others-header {
  text-align: center;
  color: var(--body-text-muted);
}

.comparison-table td {
  padding: 18px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--body-text);
  border-bottom: 1px solid var(--divider-sage);
  transition: background-color 0.2s ease;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: rgba(244, 239, 230, 0.3); /* Soft hover highlight */
}

.comparison-table td.feature-name {
  font-weight: 600;
  color: var(--primary-green);
}

.comparison-table td.ashrika-col {
  text-align: center;
  background-color: rgba(232, 226, 213, 0.15); /* Light column highlight */
  border-left: 1px solid rgba(24, 48, 32, 0.05);
  border-right: 1px solid rgba(24, 48, 32, 0.05);
}

.comparison-table td.others-col {
  text-align: center;
}

.comp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.comparison-table tr:hover .comp-icon {
  transform: scale(1.15);
}

.comp-check {
  background: rgba(46, 92, 61, 0.1); /* Light green circular tint */
  color: var(--primary-green);
}

.comp-cross {
  background: rgba(169, 68, 66, 0.08); /* Light terracotta tint */
  color: var(--primary-terracotta);
}

@media (max-width: 600px) {
  .comparison-table th, 
  .comparison-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
  
  .comp-icon {
    width: 26px;
    height: 26px;
  }
  
  .comp-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .comparison-subtitle {
    font-size: 1.6rem;
  }
}
