/* =============================================
   VIBHUVEDHA – Main Stylesheet
   Color Palette:
   Gold: #c9a227
   Dark Gold: #a07c15
   Forest Green: #5a7a3a
   Off-White: #faf8f2
   Cream: #f5f0e0
   Dark: #1a1a1a
   Text: #3d3d3d
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a227;
  --gold-dark: #a07c15;
  --gold-light: #e8cc6a;
  --green: #5a7a3a;
  --green-dark: #3d5526;
  --off-white: #faf8f2;
  --cream: #f5f0e0;
  --dark: #1a1a1a;
  --text: #3d3d3d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --border: #e8e0cc;
  --shadow: rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-dark));
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  border: 1.5px solid var(--dark);
  border-radius: 4px;
  height: 38px;
  background: transparent;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.logo:hover {
  opacity: 0.95;
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.05);
}

.logo:hover .logo-text {
  color: var(--gold-dark);
}

.logo-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  border: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--dark);
  padding: 0 12px;
  text-transform: uppercase;
  border-left: 1.5px solid var(--dark);
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  transition: color 0.25s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease, left 0.25s ease;
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 80%;
  left: 10%;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover { background: var(--cream); color: var(--gold-dark); }

.cart-btn { position: relative; }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  display: block;
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(90,122,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-add-cart {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 4px;
}
.btn-add-cart:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(90,122,58,0.3);
}
.btn-add-cart svg {
  transition: transform 0.3s ease;
}
.btn-add-cart:hover svg {
  transform: translateX(2px) scale(1.1);
}

.btn-view-all {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  padding: 11px 28px;
}
.btn-view-all:hover {
  background: var(--green);
  color: var(--white);
}

.btn-cta-shop {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  padding: 13px 28px;
}
.btn-cta-shop:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(90,122,58,0.4);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--cream);
  padding: 0;
  min-height: auto;
  display: block;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  background: var(--cream);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  cursor: pointer;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-slide-img {
  transform: scale(1.04);
}

/* Glassmorphism Navigation Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-slider-arrow svg {
  stroke: var(--white);
  transition: stroke 0.3s;
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: var(--gold-light);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.25);
}

.hero-slider-arrow:hover svg {
  stroke: var(--gold-light);
}

.hero-slider-arrow.prev {
  left: 24px;
}

.hero-slider-arrow.next {
  right: 24px;
}

/* Pagination Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
  background: rgba(26, 26, 26, 0.25);
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero-dot.active {
  background: var(--gold-light);
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--gold-light);
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 16px 10px;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  transform: translateY(-4px);
  background: var(--cream);
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.08);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  border-color: var(--gold);
  background: var(--white);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 6px 15px rgba(201, 162, 39, 0.15);
}

.feature-item:hover .feature-icon {
  border-color: var(--gold);
  background: var(--cream);
}

.feature-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-leaf {
  margin: 10px auto;
  display: flex;
  justify-content: center;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 70px 0;
  background: var(--off-white);
}

.products-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex: 1;
  overflow: hidden;
}

.slider-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--cream);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.15);
}

/* Product Card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 16px 40px rgba(90, 122, 58, 0.1);
}

.product-img-wrap {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(245, 240, 224, 0.3) 100%);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  overflow: hidden;
}

.product-img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.new-badge { background: var(--green); }

.product-info {
  padding: 18px 16px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-tag {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 12px;
}

.product-features {
  list-style: none;
  margin-bottom: 16px;
}

.product-features li {
  font-size: 12.5px;
  color: var(--text-light);
  padding: 2px 0;
  padding-left: 14px;
  position: relative;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--green);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #faf3dc 0%, #f0e8c4 50%, #e8dba8 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.cta-offer-badge {
  display: inline-flex;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 10px;
}

.cta-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cta-images {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: -20px;
  position: relative;
  height: 260px;
}

.cta-img {
  max-height: 220px;
  width: auto;
  max-width: 30%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  transition: transform 0.3s;
}

.cta-img-2 {
  max-height: 260px;
  max-width: 35%;
  z-index: 2;
  margin: 0 -10px;
}

.cta-img:hover { transform: translateY(-8px); }

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 70px 0;
  background: var(--white);
}

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

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.why-item:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: 0 12px 30px rgba(201, 162, 39, 0.08);
}

.why-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.why-item:hover .why-icon { transform: translateY(-4px); }

.why-item h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 70px 0;
  background: var(--off-white);
}

.stars-header .star {
  color: var(--gold);
  font-size: 20px;
}

.testimonials-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--cream);
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: 0 16px 36px rgba(0,0,0,0.06);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 14px;
  color: var(--dark);
}

.verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #27ae60;
}

/* ===== FOOTER TRUST STRIP ===== */
.footer-trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-trust-grid {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 24px 40px;
}

.footer .logo {
  border-color: rgba(255, 255, 255, 0.3);
}

.footer .logo:hover {
  border-color: var(--gold);
}

.footer .logo-icon {
  background: #2a2a2a;
}

.footer .logo-text {
  color: var(--white);
  border-left: 1.5px solid rgba(255, 255, 255, 0.3);
}

.footer .logo:hover .logo-text {
  color: var(--gold);
  border-left-color: var(--gold);
}

.footer-brand p {
  font-size: 13.5px;
  color: #999;
  margin-top: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1.5px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h5 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: #666;
}

/* ===== CART TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
}

.cart-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 36px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px var(--shadow);
  }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-images { display: none; }
  .hero-trust-badges { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-desc { margin: 0 auto 28px; }

  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-images { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; }
  .features-grid { justify-content: center; }
  .footer-trust-grid { justify-content: center; gap: 24px; }
}

/* =============================================
   VIBHUVEDHA – ADDED INTERACTIVE COMPONENT STYLES
   ============================================= */

/* ===== INGREDIENTS SECTION ===== */
.ingredients-section {
  padding: 70px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

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

.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.ingredient-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 16px 36px rgba(201, 162, 39, 0.1);
}

.ingredient-img-wrapper {
  height: 220px;
  background: linear-gradient(180deg, var(--cream) 0%, rgba(245, 240, 224, 0.35) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ingredient-img-wrapper img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}

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

.ingredient-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ingredient-origin {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.ingredient-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.ingredient-desc {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FAQs SECTION ===== */
.faqs-section {
  padding: 70px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.faqs-accordion {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== DRAWER OVERLAYS & LAYOUTS ===== */
.cart-drawer-overlay, .user-drawer-overlay, .checkout-modal-overlay, .consult-modal-overlay, .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-drawer-overlay.active, .user-drawer-overlay.active, .checkout-modal-overlay.active, .consult-modal-overlay.active, .modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer, .user-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--white);
  z-index: 9995;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

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

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

.cart-title, .user-drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.cart-close-btn, .user-drawer-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s;
}

.cart-close-btn:hover, .user-drawer-close-btn:hover {
  color: var(--dark);
}

/* Shipping Tracker */
.shipping-progress-container {
  padding: 16px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.shipping-progress-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
}

.shipping-progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--green);
  transition: width 0.4s ease;
}

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

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

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.cart-taxes-note {
  font-size: 11.5px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cart-checkout-btn {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s;
}

.cart-checkout-btn:hover {
  background: var(--green-dark);
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

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

.search-container {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.search-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
}

.search-close-btn {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--dark);
  margin-bottom: 24px;
}

#search-input {
  width: 100%;
  padding: 12px 40px 12px 0;
  border: none;
  background: none;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  outline: none;
  color: var(--dark);
}

.search-clear-btn {
  position: absolute;
  right: 8px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
  display: none;
}

.search-results {
  flex: 1;
  overflow-y: auto;
  max-height: 60vh;
}

/* ===== USER AUTHENTICATION & DASHBOARD ===== */
.user-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.auth-tab.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.auth-form.hidden {
  display: none;
}

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

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input, .consult-select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  outline: none;
  background: var(--off-white);
  transition: border-color 0.2s;
}

.form-group input:focus, .consult-select:focus {
  border-color: var(--gold-dark);
}

/* Logged In Dashboard */
.user-profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.user-large-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-profile-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.user-profile-email {
  font-size: 12px;
  color: var(--text-light);
}

.dashboard-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.dashboard-tab {
  flex: 1;
  padding: 8px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}

.dashboard-tab.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.dashboard-tab-content {
  min-height: 150px;
}

/* ===== PRODUCT DETAIL MODAL ===== */
.modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  width: 100%;
  max-width: 900px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 9995;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
  z-index: 10;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--dark);
}

.modal-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.modal-media {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.modal-media img {
  max-height: 360px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.modal-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 500px;
}

.modal-product-type {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.modal-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.modal-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.modal-tab {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 0;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.modal-tab.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.modal-tab-content {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 24px;
  min-height: 80px;
}

.modal-actions {
  display: flex;
  gap: 16px;
  margin-top: auto;
  align-items: center;
}

.modal-qty-container {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.modal-qty-btn {
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.modal-qty-val {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.modal-add-btn {
  flex: 1;
  padding: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

/* ===== CONSULTATION BOOKING MODAL ===== */
.consult-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.consult-modal {
  width: 100%;
  max-width: 550px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: translateY(30px);
  transition: transform 0.3s;
  opacity: 0;
  pointer-events: none;
  position: relative;
  z-index: 9995;
}

.consult-modal-overlay.active .consult-modal {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.consult-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}

.consult-modal-header {
  padding: 30px 30px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.consult-modal-tag {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 6px;
}

.consult-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 16px;
}

/* Step indicator dots */
.step-indicator-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 150px;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-dot.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.step-dot.completed {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}

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

.consult-step {
  display: none;
}

.consult-step.active {
  display: block;
}

.consult-step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Concerns Grid */
.concern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.concern-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.concern-card:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.concern-card.active {
  border-color: var(--gold);
  background: var(--cream);
  box-shadow: 0 4px 12px rgba(201,162,39,0.15);
}

.concern-icon {
  font-size: 24px;
}

.concern-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.consult-select {
  width: 100%;
}

.consult-actions {
  display: flex;
  margin-top: 24px;
  gap: 12px;
}

/* Date and Time Pickers */
.date-picker-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.time-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Success Consultation Confirmation Card */
.consult-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(90,122,58,0.3);
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.success-message {
  font-size: 13.5px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

.booking-summary-card {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}

.summary-row strong {
  color: var(--dark);
}

.success-note {
  font-size: 11px;
  color: var(--text-light);
}

/* ===== CHECKOUT MODAL ===== */
.checkout-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.checkout-modal {
  width: 100%;
  max-width: 950px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: translateY(30px);
  transition: transform 0.3s;
  opacity: 0;
  pointer-events: none;
  position: relative;
  z-index: 9995;
}

.checkout-modal-overlay.active .checkout-modal {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.checkout-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  z-index: 10;
}

.checkout-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chk-step {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.chk-step.active {
  color: var(--gold-dark);
}

.chk-step.completed {
  color: var(--green);
}

.chk-line {
  width: 20px;
  height: 1px;
  background: var(--border);
}

.checkout-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 480px;
}

.checkout-left {
  padding: 30px;
  border-right: 1px solid var(--border);
}

.checkout-step-content {
  display: none;
}

.checkout-step-content.active {
  display: block;
}

.checkout-step-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.col-6 {
  flex: 1;
}

/* Payment selection cards */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: all 0.2s;
  background: var(--off-white);
}

.payment-card:hover {
  border-color: var(--gold);
}

.payment-card.active {
  border-color: var(--gold);
  background: var(--cream);
}

.payment-card input[type="radio"] {
  margin-top: 4px;
}

.pay-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pay-desc {
  display: block;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.4;
}

.card-details-fields.hidden {
  display: none;
}

/* Checkout right sidebar totals */
.checkout-right {
  padding: 30px;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkout-summary-list {
  max-height: 160px;
  overflow-y: auto;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 16px;
}

.checkout-coupon-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
}

#coupon-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: var(--white);
}

#coupon-apply-btn {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
}

#coupon-apply-btn:hover {
  background: #333;
}

.coupon-msg {
  font-size: 11px;
  font-weight: 600;
}

.checkout-pricing-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light);
}

.price-row.total-row {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 6px;
}

.payment-adj-row.hidden {
  display: none;
}

/* Order Placed Success Confirmation Box */
.checkout-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.checkout-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(90,122,58,0.3);
}

.order-summary-box {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== TOAST NOTIFICATION STYLING ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
}

/* ===== MOBILE RESPONSIVE NEW MODULES OVERRIDES ===== */
@media (max-width: 768px) {
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .modal-body {
    grid-template-columns: 1fr;
  }
  .modal-media {
    padding: 24px;
  }
  .modal-details {
    padding: 24px;
    max-height: 380px;
  }
  .modal-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .modal-qty-container {
    justify-content: space-between;
  }
  .consult-modal {
    max-width: 90%;
  }
  .concern-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .checkout-body {
    grid-template-columns: 1fr;
  }
  .checkout-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .checkout-right {
    padding: 20px;
  }
  .slider-btn {
    display: none !important; /* Hide products and testimonials slider buttons on mobile */
  }
  .products-slider-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .products-grid {
    display: flex;
    gap: 16px;
    width: max-content;
    transition: transform 0.3s ease-out;
  }
  .product-card {
    width: 280px;
    flex-shrink: 0;
  }
  .testimonials-slider-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .testimonials-grid {
    display: flex;
    gap: 16px;
    width: max-content;
    transition: transform 0.3s ease-out;
  }
  .testimonial-card {
    width: 280px;
    flex-shrink: 0;
  }
  /* Hero Section Mobile Overrides */
  .hero {
    padding: 0 !important;
  }
  .hero-slider-arrow {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero-slider-arrow svg {
    width: 18px;
    height: 18px;
  }
  .hero-slider-arrow.prev {
    left: 12px;
  }
  .hero-slider-arrow.next {
    right: 12px;
  }
  .hero-slider-dots {
    bottom: 12px;
    padding: 6px 12px;
    gap: 8px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
}

/* ===== REVIEWS MODAL OVERLAYS & LAYOUTS ===== */
.reviews-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 10005;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.reviews-modal {
  width: 100%;
  max-width: 650px;
  max-height: 85vh;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(30px);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.reviews-modal-overlay.active .reviews-modal {
  transform: translateY(0);
}

.reviews-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
}

.reviews-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.reviews-modal-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s;
}

.reviews-modal-close-btn:hover {
  color: var(--dark);
}

.reviews-summary {
  padding: 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 30px;
}

.reviews-summary-left {
  text-align: center;
}

.reviews-average-rating {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.reviews-summary-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}

.reviews-total-count {
  font-size: 13px;
  color: var(--text-light);
}

.reviews-summary-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reviews-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.reviews-bar-label {
  width: 50px;
  color: var(--text);
  font-weight: 500;
}

.reviews-bar-track {
  flex: 1;
  height: 8px;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.reviews-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}

.reviews-bar-percent {
  width: 35px;
  text-align: right;
  color: var(--text-light);
}

.reviews-list-container {
  padding: 10px 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-card {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.review-card:last-child {
  border-bottom: none;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-card-stars {
  color: var(--gold);
  font-size: 14px;
}

.review-card-date {
  font-size: 12px;
  color: var(--text-light);
}

.review-card-author-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.review-card-author {
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
}

.review-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 500;
}

.review-card-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.product-rating {
  cursor: pointer;
  transition: opacity 0.2s;
}

.product-rating:hover {
  opacity: 0.85;
}

@media (max-width: 576px) {
  .reviews-summary {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    padding: 16px;
  }
  .reviews-summary-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
  }
  .reviews-average-rating {
    font-size: 36px;
    margin-bottom: 0;
  }
}

/* ===== PREMIUM PRICING DISPLAY ===== */
.price-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-main {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark); /* Premium forest green */
  text-shadow: 0.5px 0.5px 0px rgba(0,0,0,0.02);
}

.price-mrp {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-decoration: line-through;
  color: var(--text-light);
  opacity: 0.65;
}

.price-discount {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #c0392b; /* Crimson Red for visibility */
  background: rgba(192, 57, 43, 0.08); /* subtle light tint red background */
  padding: 2px 8px;
  border-radius: 20px; /* pill badge */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(192, 57, 43, 0.15);
}

/* Overrides for product detail page and popup modals */
.product-detail-info .price-row,
.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.product-detail-info .price-main,
.modal-price-row .product-price {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--green-dark);
}

.product-detail-info .line-through,
.modal-price-row .line-through {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-light);
  opacity: 0.6;
}

.product-detail-info .discount-badge,
.modal-price-row .discount-badge {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(192, 57, 43, 0.15);
  text-transform: uppercase;
}

/* ===== STANDALONE CHECKOUT PAGE ===== */
.checkout-page-section {
  padding: 120px 0 60px 0;
  background-color: var(--off-white);
  min-height: calc(100vh - 150px);
}

.checkout-page-card {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  position: relative;
}

/* Empty cart state inside checkout page */
.checkout-empty-state {
  text-align: center;
  padding: 80px 24px;
  max-width: 500px;
  margin: 0 auto;
}

.checkout-empty-state svg {
  margin-bottom: 24px;
  color: var(--text-light);
}

.checkout-empty-state h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
}

.checkout-empty-state p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
}

/* Back button/link for checkout page styling */
.checkout-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 16px;
}

.checkout-back-link:hover {
  color: var(--gold-dark);
}

/* ==========================================================================
   ===== FLOATING REVIEWS WIDGET =====
   ========================================================================== */

/* Floating Button */
.floating-reviews-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #c9a227, #a88216);
  color: #ffffff;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 16px 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  z-index: 999;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.floating-reviews-btn:hover {
  background: linear-gradient(135deg, #dcb439, #c9a227);
  padding-right: 16px;
  transform: translateY(-50%) translateX(-2px);
}

.floating-reviews-btn .btn-stars {
  color: #ffd700;
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 2px;
}

/* Overlay */
.reviews-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Drawer */
.reviews-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #0f0f0f;
  border-left: 1px solid #222222;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  z-index: 10001;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

/* Header */
.reviews-drawer-header {
  padding: 24px;
  border-bottom: 1px solid #222222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews-drawer-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #e6c15c;
  margin: 0;
}

.close-reviews-drawer {
  background: transparent;
  border: none;
  color: #888;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  padding: 0 4px;
}

.close-reviews-drawer:hover {
  color: #ffffff;
}

/* Content Area */
.reviews-drawer-content {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Overview Card */
.reviews-overview {
  background: #141414;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.overview-rating {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.overview-stars {
  color: #ffd700;
  font-size: 20px;
  margin-bottom: 8px;
}

.overview-count {
  font-size: 13px;
  color: #888888;
}

.btn-write-review {
  width: 100%;
  margin-top: 16px;
  background: transparent;
  border: 1px solid #c9a227;
  color: #c9a227;
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-write-review:hover {
  background: #c9a227;
  color: #0f0f0f;
}

/* Review Item Card */
.drawer-review-card {
  background: #141414;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 18px;
  transition: transform 0.2s, border-color 0.2s;
}

.drawer-review-card:hover {
  transform: translateY(-2px);
  border-color: #333333;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.review-card-stars {
  color: #ffd700;
  font-size: 14px;
}

.review-card-date {
  font-size: 11px;
  color: #666666;
}

.review-card-author {
  font-weight: 600;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-card-verified {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  color: #27ae60;
  font-weight: 500;
  gap: 3px;
}

.review-card-product {
  font-size: 11px;
  color: #c9a227;
  margin-bottom: 8px;
  font-style: italic;
}

.review-card-text {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.5;
  margin: 0;
}

/* Write Review Form Section */
.write-review-section {
  display: none;
  background: #141414;
  border: 1px solid #222222;
  border-radius: 12px;
  padding: 20px;
  margin-top: 10px;
  animation: slideDown 0.3s ease-out;
}

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

.write-review-section.open {
  display: block;
}

.write-review-section h4 {
  color: #e6c15c;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

.form-rating-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  align-items: center;
}

.form-rating-selector span {
  font-size: 13px;
  color: #888888;
}

.star-input-btn {
  background: transparent;
  border: none;
  color: #444444;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  transition: color 0.1s;
}

.star-input-btn.selected,
.star-input-btn.hover {
  color: #ffd700;
}

.review-form-group {
  margin-bottom: 12px;
}

.review-form-group label {
  display: block;
  font-size: 12px;
  color: #888888;
  margin-bottom: 4px;
}

.review-form-group input,
.review-form-group select,
.review-form-group textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid #333333;
  color: #ffffff;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: border-color 0.2s;
}

.review-form-group input:focus,
.review-form-group select:focus,
.review-form-group textarea:focus {
  border-color: #c9a227;
  outline: none;
}

.review-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.review-form-actions button {
  flex: 1;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit-review {
  background: #c9a227;
  color: #0f0f0f;
  border: none;
}

.btn-submit-review:hover {
  background: #e6c15c;
}

.btn-cancel-review {
  background: transparent;
  border: 1px solid #444444;
  color: #888888;
}

.btn-cancel-review:hover {
  color: #ffffff;
  border-color: #666666;
}

/* Adjustments for smaller viewports */
@media (max-width: 480px) {
  .reviews-drawer {
    width: 100%;
  }
  .floating-reviews-btn {
    padding: 14px 8px;
    font-size: 12px;
  }
}

/* ===== SUBSCRIBE & SAVE WIDGET ===== */
.purchase-options-container {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Inter', sans-serif;
}

.purchase-option-card {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
}

.purchase-option-card:hover {
  border-color: var(--gold);
}

.purchase-option-card.active {
  border-color: var(--green);
  background: rgba(90, 122, 58, 0.03);
}

.purchase-option-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--dark);
}

.purchase-option-radio {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  cursor: pointer;
}

.purchase-option-title {
  font-size: 14.5px;
  flex: 1;
}

.purchase-option-price {
  font-size: 15px;
  font-weight: 700;
}

.purchase-option-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-left: 30px;
  margin-top: 4px;
}

.sub-frequency-container {
  margin-top: 10px;
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}

.sub-frequency-select {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--dark);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.sub-frequency-select:focus {
  border-color: var(--green);
  outline: none;
}

/* ===== FREQUENTLY BOUGHT TOGETHER ===== */
.fbt-section {
  margin: 40px auto;
  padding: 30px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  max-width: 1200px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
}

.fbt-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.fbt-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .fbt-layout {
    grid-template-columns: 1.8fr 1fr;
    align-items: center;
    gap: 40px;
  }
}

.fbt-items-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.fbt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  text-align: center;
  position: relative;
}

.fbt-item-checkbox-wrapper {
  position: absolute;
  top: 4px;
  left: 4px;
  background: var(--white);
  border-radius: 50%;
  padding: 2px;
  display: flex;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 5;
}

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

.fbt-item-img-wrap {
  width: 90px;
  height: 90px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border: 1px solid var(--border);
}

.fbt-item-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.fbt-item-name {
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 8px;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 34px;
  line-height: 1.3;
}

.fbt-item-price {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  margin-top: 4px;
}

.fbt-plus-symbol {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-light);
  margin: 0 4px;
  user-select: none;
}

.fbt-summary-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fbt-summary-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.fbt-summary-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-light);
}

.fbt-summary-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.fbt-summary-price del {
  font-size: 14px;
  color: var(--text-light);
  margin-right: 6px;
}

.fbt-summary-save-label {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  background: rgba(90, 122, 58, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

.btn-fbt-add {
  width: 100%;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn-fbt-add:hover {
  background: var(--green-dark);
}

/* ===== BUNDLE PACKS SECTION ===== */
.bundles-section {
  padding: 60px 0;
  background: var(--cream);
}

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

@media (min-width: 768px) {
  .bundles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bundle-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.bundle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.bundle-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-dark);
  color: var(--white);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.bundle-image-area {
  height: 220px;
  background: linear-gradient(135deg, var(--off-white), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.bundle-image-area img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.bundle-content-area {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bundle-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.bundle-type {
  font-size: 12.5px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}

.bundle-description {
  font-size: 13.5px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.bundle-includes {
  background: var(--off-white);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.bundle-includes-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.bundle-includes-list {
  list-style: none;
  font-size: 13px;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bundle-includes-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bundle-includes-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
}

.bundle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.bundle-price-container {
  display: flex;
  flex-direction: column;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bundle-price-main {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.bundle-price-mrp {
  font-size: 13.5px;
  color: var(--text-light);
  text-decoration: line-through;
}

.bundle-savings {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
}

.btn-bundle-buy {
  padding: 10px 18px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-bundle-buy:hover {
  background: var(--green);
}


