/* ==========================================================================
   PAUSHTIK GHARANA - PREMIUM AYURVEDIC D2C E-COMMERCE STYLESHEET
   Brand: Paushtik Gharana ("Shuddh Swasthya • Parampara Se")
   Color Palette: #285A35, #3E7049, #FFF8EA, #F5E8D0, #EFE1C7, #26332A, #D9A441
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-green: #285A35;
  --secondary-green: #3E7049;
  --dark-forest: #1A3B23;
  --deep-emerald: #122B19;
  --light-cream: #FFF8EA;
  --warm-beige: #F5E8D0;
  --soft-beige: #EFE1C7;
  --pure-white: #FFFFFF;
  --text-dark: #26332A;
  --text-muted: #586B5D;
  --text-light: #EFE1C7;
  --accent-gold: #D9A441;
  --accent-gold-light: #FFE082;
  --accent-gold-dark: #A57321;
  
  /* Borders & Shadows */
  --border-cream: rgba(217, 164, 65, 0.25);
  --border-green: rgba(40, 90, 53, 0.15);
  --border-light: rgba(38, 51, 42, 0.08);
  --shadow-sm: 0 2px 8px rgba(40, 90, 53, 0.06);
  --shadow-md: 0 8px 24px rgba(40, 90, 53, 0.1);
  --shadow-lg: 0 16px 36px rgba(40, 90, 53, 0.14);
  --shadow-gold: 0 8px 25px rgba(217, 164, 65, 0.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --header-height: 80px;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background-color: var(--light-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "♦";
  font-size: 0.65rem;
  color: var(--accent-gold);
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.125rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --------------------------------------------------------------------------
   BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B88225 100%);
  color: var(--deep-emerald);
  box-shadow: 0 4px 14px rgba(217, 164, 65, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 164, 65, 0.45);
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--light-cream);
  border: 1.5px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: rgba(217, 164, 65, 0.15);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--primary-green);
  color: var(--light-cream);
}

.btn-green:hover {
  background-color: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-green:hover {
  background: var(--primary-green);
  color: var(--light-cream);
}

/* --------------------------------------------------------------------------
   TOP ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.announcement-bar {
  background-color: var(--deep-emerald);
  color: var(--light-cream);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(217, 164, 65, 0.2);
  padding: 8px 0;
  position: relative;
  z-index: 101;
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announcement-item i {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.announcement-divider {
  opacity: 0.3;
  color: var(--accent-gold);
}

@media (max-width: 640px) {
  .announcement-item:nth-child(2),
  .announcement-item:nth-child(3),
  .announcement-divider {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   GLOBAL STICKY HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--primary-green);
  box-shadow: 0 4px 20px rgba(20, 47, 28, 0.15);
  z-index: 100;
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  background-color: rgba(40, 90, 53, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(20, 47, 28, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: height 0.3s ease;
}

.site-header.scrolled .header-inner {
  height: 66px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 52px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.scrolled .site-logo img {
  height: 44px;
}

/* Navigation Links */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--light-cream);
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold-light);
}

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

/* Header Action Icons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-cream);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.action-btn:hover {
  background: rgba(217, 164, 65, 0.25);
  color: var(--accent-gold-light);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B88225 100%);
  color: var(--deep-emerald);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 991px) {
  .nav-list {
    gap: 20px;
  }
}

@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   MOBILE NAVIGATION DRAWER
   -------------------------------------------------------------------------- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.mobile-nav-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 33, 20, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-drawer.open .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background-color: var(--dark-forest);
  color: var(--light-cream);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 8px 0 24px rgba(0,0,0,0.3);
  overflow-y: auto;
}

.mobile-nav-drawer.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(217, 164, 65, 0.2);
  margin-bottom: 24px;
}

.mobile-close-btn {
  color: var(--light-cream);
  font-size: 1.4rem;
  padding: 8px;
}

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

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--light-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-link:hover {
  color: var(--accent-gold);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(217, 164, 65, 0.2);
}

.mobile-contact-info {
  font-size: 0.85rem;
  color: var(--soft-beige);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   HERO SECTION & SLIDER
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--primary-green);
  color: var(--light-cream);
  overflow: hidden;
  /* Organic Indian mandala & grain pattern backdrop */
  background-image: 
    radial-gradient(circle at 15% 25%, rgba(62, 112, 73, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(217, 164, 65, 0.12) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233E7049' fill-opacity='0.18' fill-rule='evenodd'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Cpath d='M30 18c6.627 0 12 5.373 12 12s-5.373 12-12 12-12-5.373-12-12 5.373-12 12-12zm0 2c-5.523 0-10 4.477-10 10s4.477 10 10 10 10-4.477 10-10-4.477-10-10-10z'/%3E%3C/g%3E%3C/svg%3E");
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  padding: 60px 0 70px;
}

.hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Hero Content */
.hero-content {
  max-width: 600px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  background: rgba(217, 164, 65, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(217, 164, 65, 0.3);
}

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 700;
  color: var(--light-cream);
  line-height: 1.15;
  margin-bottom: 22px;
}

.hero-title span {
  color: var(--accent-gold-light);
  font-style: italic;
}

.hero-description {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--soft-beige);
  line-height: 1.7;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Right Hero Visual Composition */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(10, 26, 15, 0.4));
  transition: transform 0.4s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  pointer-events: auto;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(217, 164, 65, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-dot.active {
  width: 32px;
  border-radius: 10px;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.hero-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 47, 28, 0.65);
  border: 1px solid rgba(217, 164, 65, 0.3);
  color: var(--light-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
}

.hero-nav-arrow:hover {
  background: var(--accent-gold);
  color: var(--deep-emerald);
  border-color: var(--accent-gold);
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-image-wrapper {
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-slider-container {
    padding: 36px 0 50px;
  }
  .hero-controls {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   BRAND STORY / MOTHER'S VISION SECTION
   -------------------------------------------------------------------------- */
.story-section {
  padding: 100px 0;
  background-color: var(--warm-beige);
  position: relative;
  background-image: radial-gradient(circle at 10% 90%, rgba(40, 90, 53, 0.04) 0%, transparent 40%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.story-image-col {
  position: relative;
}

.story-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
}

.story-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.story-frame:hover img {
  transform: scale(1.03);
}

.story-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-green);
  color: var(--light-cream);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--accent-gold);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-floating-badge i {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.story-badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--light-cream);
}

.story-badge-text span {
  font-size: 0.78rem;
  color: var(--accent-gold-light);
}

/* Story Content */
.story-content-col {
  padding-left: 10px;
}

.story-content-col .section-title {
  color: var(--primary-green);
}

.story-lead {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.story-text {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

/* Statistics Grid */
.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(40, 90, 53, 0.15);
  border-bottom: 1px solid rgba(40, 90, 53, 0.15);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--accent-gold);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .story-floating-badge {
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 640px) {
  .story-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .stat-item {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   PRODUCT RANGE SECTION (DYNAMIC GRID)
   -------------------------------------------------------------------------- */
.products-section {
  padding: 100px 0;
  background-color: var(--light-cream);
  position: relative;
}

.products-header {
  margin-bottom: 40px;
}

.products-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--pure-white);
  border: 1px solid var(--border-green);
  transition: var(--transition);
  cursor: pointer;
}

.filter-pill:hover,
.filter-pill.active {
  background-color: var(--primary-green);
  color: var(--light-cream);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.sort-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sort-select {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--pure-white);
  border: 1px solid var(--border-green);
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
}

/* 3-Column Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Card Design */
.product-card {
  background-color: var(--pure-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 164, 65, 0.4);
}

/* Image Container */
.product-image-box {
  position: relative;
  background: radial-gradient(circle at center, #FFF8EA 0%, #F5E8D0 100%);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  overflow: hidden;
}

.product-image-box img {
  max-height: 220px;
  width: auto;
  transition: transform 0.45s ease;
}

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

/* Badges & Actions Overlay */
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-green);
  color: var(--accent-gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent-gold);
  z-index: 2;
}

.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pure-white);
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.wishlist-btn:hover,
.wishlist-btn.active {
  background: #E53935;
  color: var(--pure-white);
  transform: scale(1.1);
}

.quick-view-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(26, 59, 35, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 3;
}

.product-card:hover .quick-view-overlay {
  transform: translateY(0);
}

.quick-view-btn {
  color: var(--light-cream);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Card Body Details */
.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.product-weight {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--secondary-green);
  background: rgba(62, 112, 73, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #B88225;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
  margin-top: auto;
}

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

.original-price {
  font-size: 0.95rem;
  color: #9E9E9E;
  text-decoration: line-through;
}

.discount-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Card Action Buttons */
.card-actions {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px;
}

.qty-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light-cream);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-full);
  padding: 4px 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-weight: bold;
}

.qty-display {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.add-cart-btn {
  background-color: var(--primary-green);
  color: var(--light-cream);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.add-cart-btn:hover {
  background-color: var(--dark-forest);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   BRAND JOURNEY SECTION ("From Kitchen to Every Home")
   -------------------------------------------------------------------------- */
.journey-section {
  padding: 100px 0;
  background-color: var(--warm-beige);
  position: relative;
  background-image: radial-gradient(circle at 80% 20%, rgba(217, 164, 65, 0.08) 0%, transparent 40%);
}

.journey-header {
  margin-bottom: 60px;
}

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

/* Connecting editorial line */
.journey-cards-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 15%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-green) 50%, var(--accent-gold) 100%);
  opacity: 0.3;
  z-index: 1;
}

.journey-card {
  background: var(--light-cream);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-cream);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.journey-number-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid var(--accent-gold);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

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

.journey-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .journey-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .journey-cards-grid::before {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   INGREDIENTS SECTION (DARK GREEN FULL-WIDTH)
   -------------------------------------------------------------------------- */
.ingredients-section {
  padding: 110px 0;
  background-color: var(--dark-forest);
  color: var(--light-cream);
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(62, 112, 73, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(217, 164, 65, 0.1) 0%, transparent 45%);
}

.ingredients-header {
  margin-bottom: 60px;
}

.ingredients-header .section-title {
  color: var(--light-cream);
}

.ingredients-header .section-subtitle {
  color: var(--soft-beige);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .ingredients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ingredient-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(217, 164, 65, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ingredient-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.ingredient-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.15);
  border: 1px solid rgba(217, 164, 65, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  font-size: 1.4rem;
  margin-bottom: 14px;
  transition: var(--transition);
}

.ingredient-card:hover .ingredient-icon-wrap {
  background: var(--accent-gold);
  color: var(--deep-emerald);
  transform: rotate(10deg);
}

.ingredient-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--light-cream);
  margin-bottom: 4px;
}

.ingredient-hindi {
  font-size: 0.78rem;
  color: var(--accent-gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.ingredient-benefit {
  font-size: 0.75rem;
  color: var(--soft-beige);
  line-height: 1.4;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   HOW TO USE SECTION
   -------------------------------------------------------------------------- */
.how-to-use-section {
  padding: 100px 0;
  background-color: var(--light-cream);
  position: relative;
}

.timeline-steps-wrapper {
  margin-top: 60px;
  position: relative;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Horizontal dotted connector */
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 12%;
  width: 76%;
  height: 2px;
  border-top: 2px dashed var(--accent-gold);
  opacity: 0.45;
  z-index: 1;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 2px solid var(--accent-gold);
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.step-card:hover .step-number-circle {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.08);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.step-card:hover .step-num {
  color: var(--accent-gold-light);
}

.step-icon {
  font-size: 1.4rem;
  color: var(--primary-green);
}

.step-card:hover .step-icon {
  color: var(--light-cream);
}

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

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 850px) {
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }
  .steps-timeline::before {
    display: none;
  }
  .step-card {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
  }
  .step-number-circle {
    margin: 0;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   SOCIAL / VIDEO TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--soft-beige);
  position: relative;
}

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

@media (max-width: 900px) {
  .video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-cards-grid {
    grid-template-columns: 1fr;
  }
}

.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(217, 164, 65, 0.3);
  cursor: pointer;
  aspect-ratio: 9 / 16;
  background-color: var(--dark-forest);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* --------------------------------------------------------------------------
   TRUST / USP STRIP (DARK GREEN HORIZONTAL)
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: var(--primary-green);
  color: var(--light-cream);
  padding: 48px 0;
  border-top: 1px solid rgba(217, 164, 65, 0.25);
  border-bottom: 1px solid rgba(217, 164, 65, 0.25);
}

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

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.trust-item:hover .trust-icon-box {
  background: var(--accent-gold);
  color: var(--deep-emerald);
  transform: scale(1.1);
}

.trust-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--light-cream);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 0.8125rem;
  color: var(--soft-beige);
  line-height: 1.45;
}

@media (max-width: 991px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --------------------------------------------------------------------------
   PREMIUM MULTI-COLUMN FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--deep-emerald);
  color: var(--light-cream);
  padding: 80px 0 30px;
  border-top: 2px solid var(--accent-gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.footer-col-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-logo img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--soft-beige);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--light-cream);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-item i {
  color: var(--accent-gold);
  margin-top: 4px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-cream);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--deep-emerald);
  transform: translateY(-3px);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.92rem;
  color: var(--soft-beige);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--accent-gold-light);
  transform: translateX(4px);
}

/* Newsletter Subscription Form */
.newsletter-form {
  display: flex;
  position: relative;
  margin-top: 18px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: var(--radius-full);
  color: var(--light-cream);
  font-size: 0.9rem;
  transition: var(--transition);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent-gold);
  outline: none;
}

.newsletter-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--deep-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--accent-gold-light);
  transform: scale(1.05);
}

/* Footer Bottom Strip */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--soft-beige);
}

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

.payment-chip {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   CART DRAWER (SLIDE FROM RIGHT)
   -------------------------------------------------------------------------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.cart-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.cart-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 33, 20, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--pure-white);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

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

.cart-panel-header {
  padding: 20px 24px;
  background-color: var(--primary-green);
  color: var(--light-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-panel-header h3 {
  font-size: 1.35rem;
  color: var(--light-cream);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  color: var(--light-cream);
  font-size: 1.3rem;
  padding: 6px;
  transition: var(--transition);
}

.cart-close-btn:hover {
  color: var(--accent-gold);
}

/* Free Shipping Progress Indicator */
.free-shipping-bar {
  padding: 12px 24px;
  background-color: var(--light-cream);
  border-bottom: 1px solid var(--border-green);
}

.shipping-progress-track {
  width: 100%;
  height: 6px;
  background-color: #E0E0E0;
  border-radius: var(--radius-full);
  margin-top: 8px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-green) 0%, var(--accent-gold) 100%);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* Cart Items Container */
.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.cart-empty-state i {
  font-size: 3.5rem;
  color: var(--secondary-green);
  margin-bottom: 16px;
  opacity: 0.5;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  background: var(--light-cream);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-details h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.cart-item-weight {
  font-size: 0.78rem;
  color: var(--secondary-green);
  font-weight: 600;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 4px;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.remove-item-btn {
  color: #E53935;
  font-size: 0.85rem;
  padding: 4px;
  opacity: 0.75;
  transition: var(--transition);
}

.remove-item-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Cart Footer / Checkout CTA */
.cart-panel-footer {
  padding: 20px 24px;
  background: var(--pure-white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
}

.coupon-box {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.coupon-input {
  flex-grow: 1;
  padding: 8px 14px;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.apply-coupon-btn {
  padding: 8px 16px;
  background-color: var(--secondary-green);
  color: var(--light-cream);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

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

.cart-summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  border-top: 1px dashed var(--border-green);
  padding-top: 12px;
  margin-top: 12px;
  font-family: var(--font-heading);
}

.checkout-btn {
  width: 100%;
  margin-top: 16px;
  padding: 16px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   SEARCH DRAWER / MODAL
   -------------------------------------------------------------------------- */
.search-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 350;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s ease;
}

.search-drawer.open {
  pointer-events: auto;
  visibility: visible;
}

.search-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 33, 20, 0.75);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-drawer.open .search-backdrop {
  opacity: 1;
}

.search-panel {
  position: relative;
  background: var(--light-cream);
  padding: 36px 0 48px;
  border-bottom: 2px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.search-drawer.open .search-panel {
  transform: translateY(0);
}

.search-input-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.search-input-field {
  width: 100%;
  padding: 16px 54px 16px 24px;
  font-size: 1.25rem;
  border-radius: var(--radius-full);
  background: var(--pure-white);
  border: 2px solid var(--primary-green);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
}

.search-clear-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-muted);
}

.search-results-container {
  max-width: 720px;
  margin: 24px auto 0;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--pure-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.search-result-item:hover {
  border-color: var(--accent-gold);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   QUICK VIEW & DETAIL MODAL
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 33, 20, 0.75);
  backdrop-filter: blur(6px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modal-box {
  background: var(--light-cream);
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.open .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pure-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: var(--primary-green);
  color: var(--light-cream);
}

/* Quick View Inner Grid */
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  padding: 40px;
}

@media (max-width: 768px) {
  .quick-view-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.quick-view-img-box {
  background: radial-gradient(circle, #FFF8EA 0%, #EFE1C7 100%);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video Player Modal Box */
.video-modal-box {
  max-width: 480px;
  background: var(--deep-emerald);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 2px solid var(--accent-gold);
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON & SCROLL TO TOP
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 150;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.scroll-top-btn {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--accent-gold-light);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

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

.scroll-top-btn:hover {
  background: var(--accent-gold);
  color: var(--deep-emerald);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--dark-forest);
  color: var(--light-cream);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideToastIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideToastIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* --------------------------------------------------------------------------
   CHECKOUT MODAL STYLES
   -------------------------------------------------------------------------- */
.checkout-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-input {
  padding: 10px 14px;
  background: var(--pure-white);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.form-input:focus {
  border-color: var(--accent-gold);
  outline: none;
}
