/* ═══════════════════════════════════════════════════════════════
   Gyno Guru - Ultra-Modern D2C Stylesheet (Rose Berry & Velvet Pink Theme)
   ═══════════════════════════════════════════════════════════════ */
@import url('./tokens.css');

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

html {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #ffffff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ── Professional Scroll Reveal & Micro Animations ────────────── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger Delay Utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Shimmer Light Sheen on CTA Buttons */
.btn-primary-green,
.btn-slide-primary,
.btn-slide-whatsapp,
.btn-quiz-cta,
.btn-whatsapp-card {
  position: relative;
  overflow: hidden;
}

.btn-primary-green::after,
.btn-slide-primary::after,
.btn-slide-whatsapp::after,
.btn-quiz-cta::after,
.btn-whatsapp-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease-in-out;
  pointer-events: none;
}

.btn-primary-green:hover::after,
.btn-slide-primary:hover::after,
.btn-slide-whatsapp:hover::after,
.btn-quiz-cta:hover::after,
.btn-whatsapp-card:hover::after {
  left: 140%;
}

/* ── Accessibility ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #9f1239;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: #9f1239;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus-visible { top: 20px; }

/* ── Typography & Section Headers ──────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-header-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #9f1239;
  background: rgba(159, 18, 57, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-heading {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* ── Announcement Top Bar ──────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, #4c0519 0%, #881337 50%, #9f1239 100%);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.announcement-divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

@media (max-width: 768px) {
  .announcement-bar {
    overflow: hidden;
    padding: 7px 0;
  }

  .announcement-content {
    display: flex;
    align-items: center;
    gap: 20px;
    white-space: nowrap;
    animation: announceMarquee 15s linear infinite;
    justify-content: flex-start;
    width: max-content;
  }

  .announcement-divider {
    display: inline-block !important;
    color: rgba(255, 255, 255, 0.4);
  }
}

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

/* ── Main Modern Navbar ────────────────────────────────────── */
.main-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #fce7f3;
  padding: 14px 0;
  z-index: 1100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s;
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 44px;
  }
}

.main-nav.sticky-top {
  position: sticky;
  top: 0;
}

.main-nav.scrolled {
  box-shadow: 0 4px 25px rgba(159, 18, 57, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: #475569 !important;
  font-size: 14.5px;
  padding: 8px 18px !important;
  transition: all 0.2s;
  position: relative;
  border-radius: 8px;
}

.navbar-nav .nav-link:hover {
  color: #9f1239 !important;
  background: rgba(159, 18, 57, 0.04);
}

.navbar-nav .nav-link.active {
  color: #9f1239 !important;
  font-weight: 700;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2.5px;
  background: #9f1239;
  border-radius: 999px;
}

/* Track Order Pill Button */
.btn-track-order {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #9f1239;
  border: 1.5px solid #9f1239;
  border-radius: 999px;
  padding: 8px 22px;
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-track-order:hover {
  background: #9f1239;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(159, 18, 57, 0.2);
}

/* Cart Trigger Button */
.cart-btn {
  position: relative;
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  color: #9f1239;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}

.cart-btn:hover {
  background: #ffffff;
  border-color: #9f1239;
  color: #881337;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(159, 18, 57, 0.15);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #9f1239;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* ── Custom Professional Hero Slider ───────────────────────── */
.custom-hero-slider-section {
  position: relative;
  overflow: hidden;
  background: #4c0519;
}

.custom-slider-container {
  position: relative;
  width: 100%;
}

.custom-slider-track {
  position: relative;
  width: 100%;
  min-height: 520px;
}

.custom-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.98);
  z-index: 1;
  pointer-events: none;
}

.custom-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
}

.slide-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide-bg-1 {
  background: linear-gradient(135deg, #4c0519 0%, #881337 55%, #9f1239 100%);
}

.slide-bg-2 {
  background: linear-gradient(135deg, #500724 0%, #831843 55%, #9d174d 100%);
}

.slide-bg-3 {
  background: linear-gradient(135deg, #70062a 0%, #9f1239 55%, #be123c 100%);
}

.slide-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 64px 0 72px;
  color: #ffffff;
}

.slide-badge-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.slide-main-title {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.highlight-pink {
  color: #fbcfe8;
  background: linear-gradient(90deg, #fbcfe8, #fda4af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-subtitle {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 620px;
}

.slide-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
}

.slide-bullet-list i {
  color: #fbcfe8;
}

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

.btn-slide-primary {
  background: #ffffff;
  color: #881337 !important;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.btn-slide-primary:hover {
  background: #fdf2f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  color: #4c0519 !important;
}

.btn-slide-whatsapp {
  background: #25D366;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.btn-slide-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.slide-product-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 28px;
  display: inline-block;
  position: relative;
  max-width: 340px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s;
}

.slide-product-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.slide-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #9f1239;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(159, 18, 57, 0.3);
}

.slide-product-img {
  max-width: 85%;
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.3));
}

.slide-card-info {
  margin-top: 16px;
  text-align: center;
  color: #ffffff;
}

.slide-card-info strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.slide-card-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.slide-card-price .old-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
}

.slide-card-price .new-price {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.slide-card-price .save-badge {
  font-size: 11px;
  font-weight: 800;
  background: #25D366;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 999px;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.25s;
}

.slider-arrow:hover {
  background: #ffffff;
  color: #881337;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
  .slider-arrow { display: none; }
  .slide-main-title { font-size: 28px; }
  .slide-content-wrapper { padding: 48px 0; }
  .slide-product-card { max-width: 280px; padding: 20px; }
  .slide-product-img { height: 180px; }
}

/* Progress Pill Indicators */
.slider-indicators-container {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-indicator-pill {
  width: 36px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  padding: 0;
}

.slider-indicator-pill.active {
  width: 56px;
  background: rgba(255, 255, 255, 0.4);
}

.slider-indicator-pill.active .indicator-progress {
  position: absolute;
  inset: 0;
  background: #ffffff;
  width: 0%;
  animation: indicatorProgress 4.5s linear forwards;
}

@keyframes indicatorProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ── Trust Ribbon (Infinite Marquee) ────────────────────────── */
.trust-strip {
  background: #fff1f2;
  border-top: 1px solid #fce7f3;
  border-bottom: 1px solid #fce7f3;
  padding: 18px 0;
  overflow: hidden;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 54px;
  white-space: nowrap;
  animation: trustMarquee 25s linear infinite;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #881337;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.trust-strip-item i {
  font-size: 18px;
  color: #9f1239;
}

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

/* ── Category Cards Grid ("Shop by Concern") ───────────────── */
.categories-section {
  padding: 88px 0;
  background: #ffffff;
}

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

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 20px 28px;
  background: #ffffff;
  border: 1.5px solid #fce7f3;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #9f1239;
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover {
  border-color: #fbcfe8;
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(159, 18, 57, 0.1);
}

.category-card:hover::before {
  opacity: 1;
}

.category-icon-wrapper {
  margin-bottom: 20px;
  position: relative;
}

.category-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #881337 0%, #be123c 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(159, 18, 57, 0.25);
  transition: all 0.3s;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(159, 18, 57, 0.35);
}

.category-name {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #0f172a;
}

.category-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 20px;
}

.category-link-text {
  font-size: 13px;
  font-weight: 700;
  color: #9f1239;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  margin-top: auto;
}

.category-card:hover .category-link-text {
  gap: 10px;
}

/* ── Interactive Health Recommender CTA Banner ─────────────── */
.quiz-banner-section {
  padding: 0 0 88px;
}

.quiz-banner-card {
  background: linear-gradient(135deg, #4c0519 0%, #881337 60%, #9f1239 100%);
  border-radius: 24px;
  padding: 48px 56px;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(136, 19, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.quiz-banner-card::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.quiz-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.quiz-title {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.quiz-subtitle {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  max-width: 640px;
}

.btn-quiz-cta {
  background: #ffffff;
  color: #881337 !important;
  font-weight: 800;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.btn-quiz-cta:hover {
  background: #fdf2f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  color: #4c0519 !important;
}

/* ── Product Card (Ultra Modern D2C Style) ─────────────────── */
.products-section {
  padding: 88px 0;
  background: #fdf2f8;
}

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

.product-card {
  background: #ffffff;
  border: 1.5px solid #fce7f3;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(159, 18, 57, 0.1);
  border-color: #fbcfe8;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #9f1239 0%, #be123c 100%);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(159, 18, 57, 0.25);
}

.product-img-wrapper {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.product-img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.quick-view-overlay-btn {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(76, 5, 25, 0.88);
  backdrop-filter: blur(4px);
  color: #ffffff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  white-space: nowrap;
}

.product-card:hover .quick-view-overlay-btn {
  bottom: 16px;
  opacity: 1;
}

.product-content {
  padding: 22px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

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

.product-rating .stars {
  color: #f59e0b;
  font-size: 13px;
}

.product-rating .rating-score {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.product-rating .review-count {
  font-size: 12.5px;
  color: #64748b;
  font-weight: 500;
}

.product-title {
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.product-herbs-pill {
  font-size: 12px;
  color: #881337;
  font-weight: 600;
  background: #fff1f2;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}

.price-original {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.price-current {
  font-size: 21px;
  font-weight: 800;
  color: #881337;
}

.price-save {
  font-size: 12px;
  font-weight: 800;
  color: #9f1239;
  background: #fff1f2;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: auto;
}

/* Dual CTA Buttons in Card */
.product-cta-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 20px 20px;
}

.btn-whatsapp-card {
  background: #25D366 !important;
  color: #ffffff !important;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-whatsapp-card:hover {
  background: #1eb956 !important;
  transform: translateY(-1px);
}

.btn-primary-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #9f1239;
  color: #ffffff !important;
  border: none;
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary-green:hover {
  background: #be123c;
  transform: translateY(-1px);
}

/* View All Pill Button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  border: 2px solid #881337;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 800;
  color: #881337;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.view-all-btn:hover {
  background: #881337;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(136, 19, 55, 0.25);
}

/* ── Modern 2-Column Comparison Cards ──────────────────────── */
.comparison-section {
  padding: 88px 0;
  background: #ffffff;
}

.comparison-card {
  border-radius: 24px;
  padding: 40px 36px;
  height: 100%;
  transition: all 0.3s;
}

.comparison-card-ayurveda {
  background: #fff1f2;
  border: 2px solid #fbcfe8;
  box-shadow: 0 12px 36px rgba(159, 18, 57, 0.08);
}

.comparison-card-chemical {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
}

.comparison-header {
  margin-bottom: 28px;
}

.comparison-badge-green {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 800;
  background: #9f1239;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.comparison-badge-red {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 800;
  background: #64748b;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.comparison-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.comparison-card-sub {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 0;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.comparison-list li i {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.comparison-list li strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.comparison-list li p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ── Doctor Consultation Spotlight ──────────────────────────── */
.doctors-spotlight-section {
  padding: 0 0 88px;
}

.doctors-spotlight-card {
  background: linear-gradient(135deg, #4c0519 0%, #881337 60%, #be123c 100%);
  border-radius: 24px;
  padding: 56px;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(136, 19, 55, 0.25);
}

.spotlight-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.spotlight-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.spotlight-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
  line-height: 1.6;
}

.btn-whatsapp-spotlight {
  background: #25D366;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-spotlight:hover {
  background: #1eb956;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn-outline-light-spotlight {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-outline-light-spotlight:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.doctor-badge-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.doctor-avatar-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.doctor-info-box {
  text-align: center;
}

.doctor-info-box strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.doctor-info-box small {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 8px;
}

.exp-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ── FAQ Accordion Section ─────────────────────────────────── */
.faq-section {
  padding: 88px 0;
  background: #fdf2f8;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-details {
  background: #ffffff;
  border: 1.5px solid #fce7f3;
  border-radius: 16px;
  padding: 22px 28px;
  cursor: pointer;
  transition: all 0.25s;
}

.faq-details:hover {
  border-color: #fbcfe8;
  box-shadow: 0 6px 20px rgba(159, 18, 57, 0.06);
}

.faq-details summary {
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-details summary::-webkit-details-marker { display: none; }

.faq-details summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: #9f1239;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-details[open] summary::after { content: '−'; }

.faq-answer {
  margin-top: 14px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.7;
  padding-top: 10px;
  border-top: 1px solid #fce7f3;
}

/* ── Velvet Berry Footer ───────────────────────────────────── */
.main-footer {
  background: #4c0519;
  color: #fbcfe8;
}

.footer-top {
  padding: 80px 0 52px;
}

.footer-brand-desc {
  font-size: 14px;
  color: #fda4af;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s;
  text-decoration: none;
}

.footer-social-icon:hover {
  background: #ffffff;
  color: #881337 !important;
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: #fda4af;
  font-size: 14px;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-payment-icons span {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Floating WhatsApp Helpline ────────────────────────────── */
.floating-helpline-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-floating-helpline {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  text-decoration: none;
  z-index: 10;
}

.btn-floating-helpline:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.pulse-ring.ring-1 {
  animation: pulseAnim 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.pulse-ring.ring-2 {
  animation: pulseAnim 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  animation-delay: 1.25s;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ── Modal & Drawer ────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(76, 5, 25, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

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

.modal-container {
  background: #ffffff;
  border-radius: 24px;
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.25s;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

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

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff1f2;
  border: none;
  color: #9f1239;
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 10;
}

.modal-close-btn:hover {
  color: #ffffff;
  background: #be123c;
}

/* Quick View Modal Inner Grid Layout */
.modal-product-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  min-height: 480px;
}

@media (max-width: 768px) {
  .modal-container {
    max-height: 92vh;
    overflow-y: auto;
  }
  .modal-product-layout {
    grid-template-columns: 1fr;
  }
}

.modal-product-img-col {
  background: linear-gradient(135deg, #fff1f2 0%, #ffe4e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  position: relative;
}

.modal-product-img {
  max-width: 90%;
  max-height: 300px;
  object-fit: contain;
}

.modal-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #9f1239;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(159, 18, 57, 0.25);
}

.modal-product-info-col {
  padding: 32px 36px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category-tag {
  font-size: 11px;
  font-weight: 800;
  color: #9f1239;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.modal-product-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.modal-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.modal-rating-row .stars {
  color: #f59e0b;
  font-size: 13px;
}

.modal-rating-row .rating-score {
  font-weight: 800;
  font-size: 13px;
  color: #0f172a;
}

.modal-rating-row .review-count {
  font-size: 12.5px;
  color: #64748b;
}

.modal-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.modal-price-row .price-original {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 500;
}

.modal-price-row .price-current {
  font-size: 24px;
  font-weight: 800;
  color: #881337;
}

.modal-price-row .price-save {
  font-size: 12px;
  font-weight: 800;
  color: #9f1239;
  background: #fff1f2;
  padding: 3px 10px;
  border-radius: 6px;
}

.modal-product-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 10px;
}

.modal-herbs-pill {
  font-size: 12px;
  color: #881337;
  background: #fff1f2;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.text-rose {
  color: #9f1239;
}

.modal-clinical-box {
  background: #fff1f2;
  border-left: 4px solid #9f1239;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: #475569;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.modal-dosage-text {
  font-size: 12px;
  color: #475569;
  margin-bottom: 16px;
}

.modal-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-whatsapp-modal {
  background: #25D366 !important;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  text-decoration: none;
}

.btn-whatsapp-modal:hover {
  background: #1eb956 !important;
  transform: translateY(-1px);
}

.modal-add-cart-btn {
  font-size: 13.5px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 800;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(76, 5, 25, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}

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

.drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

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

.drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid #fce7f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

.drawer-footer {
  padding: 28px;
  border-top: 1px solid #fce7f3;
  background: #fdf2f8;
}

/* Cart Items */
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #fce7f3;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #fff1f2;
  object-fit: contain;
  padding: 6px;
}

.cart-item-info { flex: 1; }

.cart-item-title {
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 2px;
  color: #0f172a;
}

.cart-item-price {
  font-size: 15px;
  color: #881337;
  font-weight: 800;
}

.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #fbcfe8;
  border-radius: 8px;
  padding: 3px 10px;
  margin-top: 6px;
  background: #ffffff;
}

.cart-qty-btn {
  background: transparent;
  border: none;
  color: #881337;
  cursor: pointer;
  font-size: 15px;
}

/* Forms */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #475569;
}

.form-input {
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  padding: 13px 18px;
  border-radius: 12px;
  border: 1.5px solid #fce7f3;
  background: #fdf2f8;
  color: #0f172a;
  transition: all 0.2s;
  min-height: 48px;
}

.form-input:focus {
  border-color: #9f1239;
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(159, 18, 57, 0.1);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: #ffffff;
  border: 1px solid #fce7f3;
  border-left: 4px solid #9f1239;
  padding: 14px 22px;
  border-radius: 12px;
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(159, 18, 57, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.3s ease-out;
}

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

/* ── Responsive Breakpoints ────────────────────────────────── */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .custom-slider-track {
    min-height: auto;
  }

  .custom-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .custom-slide.active {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .slide-content-wrapper {
    padding: 36px 16px 48px;
    text-align: center;
  }

  .slide-main-title {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .slide-subtitle {
    font-size: 14px;
    margin: 0 auto 16px;
    max-width: 100%;
  }

  .slide-bullet-list {
    font-size: 13px;
    text-align: left;
    margin: 0 auto 20px;
    max-width: 92%;
    display: inline-flex;
    flex-direction: column;
  }

  .slide-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn-slide-primary,
  .btn-slide-whatsapp {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
    text-align: center;
  }

  .slide-product-card {
    max-width: 280px;
    padding: 18px;
    border-radius: 18px;
    margin: 20px auto 0;
  }

  .slide-product-img {
    height: 160px;
    max-width: 100%;
  }

  .slider-arrow {
    display: none !important;
  }

  .slider-indicators-container {
    bottom: 16px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-heading { font-size: 28px; }
  .quiz-banner-card { padding: 36px 32px; }
  .quiz-title { font-size: 22px; }

  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    margin-top: 12px;
    border: 1px solid #fce7f3;
    box-shadow: 0 12px 36px rgba(159, 18, 57, 0.1);
  }

  .navbar-nav .nav-link {
    padding: 12px 16px !important;
    border-bottom: 1px solid #fce7f3;
  }
  
  .navbar-nav .nav-link.active::after { display: none; }
}

@media (max-width: 768px) {
  .categories-section,
  .products-section,
  .comparison-section,
  .faq-section,
  .quiz-banner-section {
    padding: 48px 0;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .category-card { padding: 24px 16px; }
  .category-icon { width: 56px; height: 56px; font-size: 22px; }
  .category-name { font-size: 15px; }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .slide-main-title {
    font-size: 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-heading { font-size: 24px; }
  .quiz-banner-card { padding: 28px 20px; text-align: center; }
}

/* Filter tabs styling for Products Page */
.filter-tab.active {
  background: #9f1239 !important;
  color: #ffffff !important;
  border-color: #9f1239 !important;
  box-shadow: 0 4px 14px rgba(159, 18, 57, 0.2);
}

.filter-tab:hover:not(.active) {
  border-color: #9f1239;
  color: #9f1239;
}
