/**
 * TDA Wellness — Complete Luxury D2C Homepage Stylesheet
 * Handcrafted to match D:\01_Projects\2026\September-2026\19-9-2026\TDA-TEA\index.html
 * 
 * Modular CSS Architecture (Zero inline CSS in PHP templates)
 */


/* ===== HOMEPAGE DESIGN TOKENS & ROOTS ===== */
:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --gold: #D4A574;
  --cream: #F5F0E8;
  --cream-light: #FEFCF8;
  --ink: #1A1A2E;
  --ink-light: #555;
  --border: #E8E4DE;
  --white: #fff;
  --promo-h: 28px;
  --nav-h: 76px;
  --feature-h: 64px;
}

/* ===== HOMEPAGE BASE & BACKGROUND OVERRIDE ===== */
body.home,
body.home #page,
body.home #content,
body.home .site-content,
body.home .ast-container,
body.home .tda-main-frontpage {
  background-image: none !important;
  background-color: #ffffff !important;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden !important;
}

/* ===== HERO SLIDER — fills remaining viewport exactly like TDA-TEA ===== */
.hero-slider {
  width: 100% !important;
  /* Fill exactly: viewport minus promo bar, nav, and feature strip */
  height: calc(100vh - var(--promo-h) - var(--nav-h) - var(--feature-h)) !important;
  min-height: 380px !important;
  max-height: 720px !important;
  position: relative !important;
  overflow: hidden !important;
  background: var(--cream) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

@media (max-width: 800px) {
  .hero-slider {
    height: 65vh !important;
    min-height: 340px !important;
    max-height: 550px !important;
  }
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  width: 100% !important;
  height: 100% !important;
}

.heroSwiper .swiper-slide {
  position: relative !important;
  overflow: hidden !important;
}

.heroSwiper .swiper-slide .hero-slide-link {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

.heroSwiper .swiper-slide picture {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

.heroSwiper .swiper-slide img,
.heroSwiper .swiper-slide picture img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* ===== HERO ARROW BUTTONS — Neutralize Astra button overrides ===== */
.hero-slider button.swiper-button-prev,
.hero-slider button.swiper-button-next,
button.swiper-button-prev,
button.swiper-button-next {
  all: unset !important;
  box-sizing: border-box !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #1B4332 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 25 !important;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease !important;
}

.hero-slider button.swiper-button-prev,
button.swiper-button-prev {
  left: 2.5% !important;
  right: auto !important;
}

.hero-slider button.swiper-button-next,
button.swiper-button-next {
  right: 2.5% !important;
  left: auto !important;
}

.hero-slider button.swiper-button-prev:hover,
.hero-slider button.swiper-button-next:hover,
button.swiper-button-prev:hover,
button.swiper-button-next:hover {
  background: #ffffff !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18) !important;
}

.hero-slider button.swiper-button-prev svg,
.hero-slider button.swiper-button-next svg,
button.swiper-button-prev svg,
button.swiper-button-next svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #1B4332 !important;
  fill: none !important;
  stroke-width: 2.4 !important;
  display: block !important;
  margin: auto !important;
}

.hero-slider button.swiper-button-prev::after,
.hero-slider button.swiper-button-next::after,
button.swiper-button-prev::after,
button.swiper-button-next::after {
  display: none !important;
  content: "" !important;
}

/* ===== PAGINATION DOTS ===== */
.hero-slider .swiper-pagination,
.swiper-pagination {
  bottom: 16px !important;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.55) !important;
  transition: all 0.25s ease;
}

.swiper-pagination-bullet-active {
  width: 24px !important;
  border-radius: 10px;
  background: var(--white) !important;
}

/* ===== FEATURE STRIP ===== */
.features {
  min-height: 64px !important;
  height: var(--feature-h) !important;
  background: var(--white) !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  align-items: center !important;
  padding: 0 4% !important;
  border-bottom: 1px solid var(--border) !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .features {
    height: auto !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 12px 16px !important;
  }
}

.feature {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  border-right: 1px solid var(--border) !important;
  padding: 0 12px !important;
  transition: background 0.2s ease !important;
  box-sizing: border-box !important;
}

.feature:last-child {
  border-right: 0 !important;
}

.feature > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.feature h3 {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin: 0 0 2px 0 !important;
  color: var(--ink) !important;
  letter-spacing: -0.1px !important;
  white-space: nowrap !important;
}

.feature p {
  font-size: 10.5px !important;
  color: var(--ink-light) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .feature {
    justify-content: flex-start !important;
    padding: 6px 10px !important;
    border-right: none !important;
  }
}

.feature:hover {
  background: rgba(27, 67, 50, 0.02);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 19px;
  flex: none;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s ease;
}

.feature:hover .feature-icon {
  transform: translateY(-2px) scale(1.08);
}

.feature-icon i {
  line-height: 1;
}

/* Harmonious Ayurvedic Palette */
.icon-natural {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  color: #1B4332;
  box-shadow: 0 4px 12px rgba(27, 67, 50, 0.12);
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.icon-safe {
  background: linear-gradient(135deg, #FFFDF7 0%, #FEF3C7 100%);
  color: #B48238;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.16);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.icon-metabolism {
  background: linear-gradient(135deg, #F5F0E8 0%, #EAE0D0 100%);
  color: #92400E;
  box-shadow: 0 4px 12px rgba(146, 64, 14, 0.12);
  border: 1px solid rgba(212, 165, 116, 0.25);
}

.icon-certified {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  color: #2D6A4F;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.12);
  border: 1px solid rgba(45, 106, 79, 0.2);
}


.feature h3 {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
  color: var(--ink);
  letter-spacing: -0.1px;
}

.feature p {
  font-size: 10.5px;
  color: var(--ink-light);
  font-weight: 400;
  line-height: 1.2;
}


/* ===== PRODUCTS SECTION (CTO & UX Luxury Redesign) ===== */
.products-section {
  padding: 38px 5% 56px;
  background: var(--cream-light);
  border-top: 1px solid rgba(27, 67, 50, 0.06);
  overflow: hidden;
  position: relative;
}

/* 2-Row Luxury Editorial Header */
.products-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.products-header-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.products-title-group {
  max-width: 620px;
  text-align: left;
}

.section-kicker-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 13px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.18) 0%, rgba(212, 165, 116, 0.06) 100%);
  border: 1px solid rgba(212, 165, 116, 0.45);
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C6226;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(212, 165, 116, 0.1);
}

.section-kicker-pill i {
  font-size: 12px;
  color: #B8860B;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.title-serif-italic {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #2D6A4F;
}

.section-subtitle {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.6;
  font-weight: 400;
}

/* Row 2: Clean Category Filter Strip */
.products-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0 6px 0;
}

.products-filter-bar::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.tab-btn i {
  font-size: 14px;
  color: var(--ink-light);
  transition: color 0.2s ease;
}

.tab-btn:hover {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 75%, #8B1E1E 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 67, 50, 0.2);
}

.tab-btn:hover i {
  color: #FFE082;
}

.tab-btn:hover .pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.tab-btn.active {
  background: linear-gradient(135deg, #14422D 0%, #1B4332 75%, #8B1E1E 100%);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(20, 66, 45, 0.25);
}

.tab-btn.active i {
  color: #FFE082;
}

.tab-btn.active .pill-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

.pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.25);
  margin-left: 2px;
}

/* Slider Nav Buttons (Desktop) */
.product-nav-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

.prod-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 19px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.prod-nav-btn:hover:not(.swiper-button-disabled) {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(27, 67, 50, 0.2);
}

.prod-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* ===== SWIPER PRODUCT SLIDER (BESTSELLING WELLNESS TEAS) ===== */
.productSwiper {
  width: 100%;
  overflow: hidden;
  padding: 14px 4px 34px 4px;
  margin-top: 0;
  position: relative;
}

.productSwiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  box-sizing: border-box !important;
}

.product-card-slide {
  height: auto;
  display: flex;
  box-sizing: border-box;
  flex-shrink: 0;
}

.product-card-slide.is-hidden {
  display: none !important;
}

/* Fallback & Initial 4-Card layout on Desktop */
@media (min-width: 1024px) {
  .productSwiper:not(.swiper-initialized) .product-card-slide {
    width: calc((100% - (3 * 24px)) / 4) !important;
    max-width: calc((100% - (3 * 24px)) / 4) !important;
    margin-right: 24px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .productSwiper:not(.swiper-initialized) .product-card-slide {
    width: calc((100% - (2 * 18px)) / 3) !important;
    max-width: calc((100% - (2 * 18px)) / 3) !important;
    margin-right: 18px !important;
  }
}

@media (max-width: 767px) {
  .productSwiper:not(.swiper-initialized) .product-card-slide {
    width: 80% !important;
    max-width: 320px !important;
    margin-right: 14px !important;
  }
}

/* Register property for card animated border angle */
@property --card-border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@keyframes tdaCardBorderBeam {
  0% {
    --card-border-angle: 0deg;
  }
  100% {
    --card-border-angle: 360deg;
  }
}

/* ===== PRODUCT CARD (PREMIUM CLEAN LUXURY - IDENTICAL TO SHOP PAGE) ===== */
.tda-product-card {
  width: 100% !important;
  background: linear-gradient(180deg, #FFFFFF 0%, #FCFAF7 100%) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(212, 165, 116, 0.3) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              background 0.4s ease !important;
  box-shadow: 0 4px 18px rgba(212, 165, 116, 0.1), 0 2px 6px rgba(17, 40, 30, 0.02) !important;
  position: relative !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

/* Animated Traveling Gradient Border Beam on Hover (Rich Gold + Emerald Shimmer) */
.tda-product-card::before {
  content: '' !important;
  position: absolute !important;
  inset: -1.5px !important;
  border-radius: 17.5px !important;
  padding: 1.5px !important;
  background: conic-gradient(
    from var(--card-border-angle, 0deg),
    transparent 0%,
    transparent 58%,
    rgba(212, 165, 116, 0.35) 68%,
    #D4A574 76%,
    #F59E0B 82%,
    #10B981 88%,
    #34D399 93%,
    #D4A574 97%,
    transparent 100%
  ) !important;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
  mask-composite: exclude !important;
  pointer-events: none !important;
  z-index: 22 !important;
  opacity: 0 !important;
  transition: opacity 0.35s ease !important;
  animation: tdaCardBorderBeam 4s linear infinite !important;
}

/* Soft Premium Green + Warm Gold Gradient Background INSIDE Entire Card on Hover */
.tda-product-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(212, 165, 116, 0.65) !important;
  background: linear-gradient(160deg, #FFFFFF 0%, #F1F8F4 45%, #FAF4E6 100%) !important;
  box-shadow: 0 20px 48px rgba(212, 165, 116, 0.28), 
              0 0 36px rgba(212, 165, 116, 0.24), 
              0 0 20px rgba(16, 185, 129, 0.16) !important;
}
.tda-product-card:hover::before {
  opacity: 1 !important;
}

/* Card Image Media Area with Subtle Radial Glow on Hover */
.tda-card-media-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1.08 !important;
  background: #FFFFFF !important;
  overflow: hidden !important;
  border-radius: 15px 15px 0 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  box-sizing: border-box !important;
  border-bottom: 1px solid rgba(236, 231, 223, 0.7) !important;
  transition: background 0.4s ease !important;
}
.tda-product-card:hover .tda-card-media-wrap {
  background: radial-gradient(circle at 50% 50%, #FFFFFF 25%, #F2F8F4 60%, #FAF4E8 100%) !important;
}
.tda-card-media-wrap a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: relative !important;
}

/* Soft Ambient Radial Light on Hover */
.tda-card-media-wrap::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 30%, rgba(16, 185, 129, 0.05) 70%, rgba(212, 165, 116, 0.07) 100%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.35s ease, visibility 0.35s ease !important;
  z-index: 12 !important;
  pointer-events: none !important;
}
.tda-product-card:hover .tda-card-media-wrap::after {
  opacity: 1 !important;
  visibility: visible !important;
}

.tda-card-img-primary,
.tda-card-img-secondary {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  mix-blend-mode: multiply !important;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: block !important;
}
.tda-card-img-primary {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 1 !important;
}
.tda-card-img-secondary {
  opacity: 0 !important;
  transform: scale(1.06) !important;
  z-index: 2 !important;
}

/* Hover Gallery Cross-fade */
.tda-product-card:hover .tda-card-img-primary {
  transform: scale(1.05) !important;
}
.tda-product-card.has-secondary:hover .tda-card-img-primary {
  opacity: 0 !important;
}
.tda-product-card.has-secondary:hover .tda-card-img-secondary {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Single Clean Discount Badge (Top-Left Only) */
.tda-card-badge-left {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  z-index: 15 !important;
}
.tda-badge-sale-pill {
  background: #E63946 !important;
  color: #FFFFFF !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  padding: 3px 9px !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 6px rgba(230, 57, 70, 0.25) !important;
  display: inline-block !important;
}

/* Exact Centered Quick Actions Bar on Hover */
.tda-card-quick-actions {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  z-index: 25 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}
.tda-product-card:hover .tda-card-quick-actions {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: auto !important;
}
.tda-quick-btn,
button.tda-quick-btn,
a.tda-quick-btn {
  all: unset !important;
  box-sizing: border-box !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3), 0 2px 4px rgba(0, 0, 0, 0.08) !important;
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  font-size: 0 !important;
  outline: none !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.tda-quick-btn i,
button.tda-quick-btn i,
a.tda-quick-btn i {
  font-size: 18px !important;
  color: #FFFFFF !important;
  line-height: 1 !important;
  height: 18px !important;
  width: 18px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
  transform: none !important;
}
.tda-quick-btn:hover,
button.tda-quick-btn:hover,
a.tda-quick-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.42), 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}
.tda-quick-btn:active,
button.tda-quick-btn:active,
a.tda-quick-btn:active {
  transform: translateY(0) scale(0.95) !important;
}

/* Card Body */
.tda-card-body {
  padding: 16px 18px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  box-sizing: border-box !important;
}

/* Product Title */
.tda-card-title {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  color: #11281E !important;
  line-height: 1.35 !important;
  margin: 0 0 6px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 42px !important;
}
.tda-card-title a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}
.tda-card-title a:hover {
  color: #109648 !important;
}

/* Excerpt */
.tda-card-subtitle {
  font-size: 12px !important;
  color: #64748B !important;
  line-height: 1.4 !important;
  margin: 0 0 8px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* Rating Row */
.tda-card-rating-row {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  font-size: 11.5px !important;
  color: #F59E0B !important;
  margin-bottom: 10px !important;
}
.tda-card-rating-row span {
  color: #64748B !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  margin-left: 4px !important;
}

/* Price Row */
.tda-card-price-row {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 14px !important;
  margin-top: auto !important;
}
.tda-card-price {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #11281E !important;
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 6px !important;
}
.tda-card-price del {
  color: #94A3B8 !important;
  font-weight: 400 !important;
  font-size: 13.5px !important;
}
.tda-card-price ins {
  text-decoration: none !important;
  color: #109648 !important;
  font-weight: 800 !important;
  font-size: 18px !important;
}
.tda-card-save-badge {
  background: #DCFCE7 !important;
  color: #15803D !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  padding: 2px 7px !important;
  border-radius: 4px !important;
}

/* Full-Width ADD TO CART Button */
.tda-card-btn-wrap {
  width: 100% !important;
  margin-top: 2px !important;
}
.tda-shop-add-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #109648 !important;
  background-color: #109648 !important;
  color: #FFFFFF !important;
  border: 1px solid #0D7E3C !important;
  padding: 11px 16px !important;
  border-radius: 8px !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 12px rgba(16, 150, 72, 0.2) !important;
  box-sizing: border-box !important;
}
.tda-shop-add-btn:hover {
  background: #0D7E3C !important;
  background-color: #0D7E3C !important;
  color: #FFFFFF !important;
  border-color: #0D7E3C !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(16, 150, 72, 0.35) !important;
}

/* Product Pagination Dots */
.product-pagination {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin-top: 24px !important;
}

.product-pagination .swiper-pagination-bullet {
  background: var(--green-mid) !important;
  opacity: 0.3 !important;
}

.product-pagination .swiper-pagination-bullet-active {
  background: var(--green-dark) !important;
  opacity: 1 !important;
  width: 22px !important;
  border-radius: 4px !important;
}

/* Toast alert when added to cart */
.cart-toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE BREAKPOINTS (Mobile Touch Slider & Luxury Header) ===== */
@media (max-width: 1024px) {
  .products-section {
    padding: 34px 4% 48px;
  }
}

@media (max-width: 768px) {
  .products-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .product-nav-buttons {
    display: none;
    /* Touch swipe on tablet & mobile */
  }

  .section-title {
    font-size: 28px;
  }

  .products-filter-bar {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .product-pagination {
    display: block;
  }
}

@media (max-width: 640px) {
  .products-section {
    padding: 26px 16px 38px;
  }

  .section-title {
    font-size: 24px;
    letter-spacing: -0.3px;
  }

  .section-subtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .tab-btn {
    padding: 7px 15px;
    font-size: 12px;
  }

  .product-info {
    padding: 14px 12px 14px;
  }

  .product-name {
    font-size: 14px;
    min-height: 38px;
  }

  .current-price {
    font-size: 18px;
  }

  .original-price {
    font-size: 12px;
  }

  .btn-add-cart {
    height: 38px;
    font-size: 12.5px;
  }

  .product-features-list {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
  }
}


/* ===== FLAGSHIP SPOTLIGHT & VIDEO SECTION (CTO Luxury Standard) ===== */
.spotlight-section {
  padding: 68px 5% 76px;
  background: linear-gradient(180deg, #FBF9F5 0%, #F5F0E6 100%);
  border-top: 1px solid rgba(212, 165, 116, 0.25);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  position: relative;
  overflow: hidden;
}

.spotlight-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.spotlight-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 44px;
  align-items: stretch;
}

/* Content Left */
.spotlight-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Spotlight Section - Neutralize Astra Theme Button Overrides */
.spotlight-section button,
.spotlight-video-wrapper button {
  all: unset;
  box-sizing: border-box;
}

.spotlight-badge {
  width: fit-content !important;
  max-width: fit-content !important;
  align-self: flex-start !important;
  display: inline-flex !important;
  width: fit-content !important;
  max-width: fit-content !important;
  align-self: flex-start !important;
  align-items: center;
  gap: 6px;
  padding: 4px 13px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.22) 0%, rgba(212, 165, 116, 0.08) 100%);
  border: 1px solid rgba(212, 165, 116, 0.45);
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C6226;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(212, 165, 116, 0.1);
}

.spotlight-badge i {
  color: #B8860B;
}

.spotlight-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.spotlight-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 24px;
  max-width: 540px;
}

/* 3 Pillars */
.spotlight-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pillar-card:hover {
  transform: translateX(4px);
  background: var(--white);
  border-color: rgba(45, 106, 79, 0.25);
  box-shadow: 0 6px 18px rgba(27, 67, 50, 0.06);
}

.pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 19px;
  flex: none;
}

.pillar-icon-leaf {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.pillar-icon-fire {
  background: #FFF1F2;
  color: #E11D48;
  border: 1px solid rgba(225, 29, 72, 0.2);
}

.pillar-icon-shield {
  background: #F0F9FF;
  color: #0284C7;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.pillar-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.pillar-text p {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-light);
  margin: 0;
}

/* Action Buttons */
.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn-spotlight-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 6px 18px rgba(27, 67, 50, 0.25);
}

.btn-spotlight-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.32);
}

.btn-spotlight-play {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  padding: 6px 12px !important;
  border-radius: 12px !important;
  transition: background 0.2s ease !important;
}

.btn-spotlight-play:hover {
  background: rgba(27, 67, 50, 0.05);
}

.play-pulse-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--green-dark) !important;
  font-size: 20px !important;
  position: relative !important;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease !important;
}

.play-pulse-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(212, 165, 116, 0.6);
  animation: playPulse 2s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

@keyframes playPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.28);
    opacity: 0;
  }

  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}

.btn-spotlight-play:hover .play-pulse-icon {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.08);
}

.play-label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-dark);
}

.play-label small {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-light);
}

/* Right Video Frame */
.spotlight-video-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.video-card-frame {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(212, 165, 116, 0.45);
  box-shadow: 0 20px 50px rgba(27, 67, 50, 0.15);
}

.spotlight-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Glass Controls Over Video */
.video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.video-overlay-top,
.video-overlay-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.video-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--white);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 8px #EF4444;
  animation: liveBlink 1.4s infinite;
}

@keyframes liveBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.video-control-btn,
.video-control-btn.sound-btn,
.video-expand-btn {
  all: unset !important;
  box-sizing: border-box !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.video-control-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  transform: scale(1.08);
}

.video-control-btn.active {
  background: #059669;
  color: var(--white);
  border-color: #059669;
}

.video-caption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.caption-tag {
  font-size: 10.5px;
  font-weight: 700;
  color: #D4A574;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.caption-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.video-expand-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-expand-btn:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: scale(1.08);
}

/* Trust stats bar under video */
.video-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.vtrust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.vtrust-item strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 3px;
}

.vtrust-item span {
  font-size: 11px;
  color: var(--ink-light);
  font-weight: 500;
}

.vtrust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* Fullscreen Cinematic Video Modal */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 15, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.video-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 880px;
  background: #000;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 165, 116, 0.3);
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-backdrop.open .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(17, 40, 30, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(212, 165, 116, 0.6);
  color: #FFFFFF;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  margin: 0;
  line-height: 1;
}

.video-modal-close:hover {
  background: #DC2626;
  border-color: #DC2626;
  color: #FFFFFF;
  transform: scale(1.1) rotate(90deg);
}

.modal-video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.modal-video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive for Spotlight */
@media (max-width: 960px) {
  .spotlight-container {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
  }

  .spotlight-content {
    height: auto;
  }

  .spotlight-video-wrapper {
    height: auto;
  }

  .video-card-frame {
    flex: none;
    aspect-ratio: 4 / 5;
    max-height: 420px;
    min-height: 260px;
    border-radius: 18px;
  }

  .spotlight-title {
    font-size: 28px;
  }

  .spotlight-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .spotlight-section {
    padding: 36px 16px 44px;
  }

  .spotlight-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .spotlight-desc {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .spotlight-pillars {
    gap: 10px;
    margin-bottom: 20px;
  }

  .pillar-card {
    padding: 10px 12px;
    gap: 12px;
  }

  .pillar-text h4 {
    font-size: 13px;
  }

  .pillar-text p {
    font-size: 11.5px;
  }

  .spotlight-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 14px;
  }

  .btn-spotlight-primary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }

  .btn-spotlight-play {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    gap: 10px;
  }

  .video-card-frame {
    aspect-ratio: 1 / 1;
    max-height: 340px;
    min-height: 240px;
    border-radius: 16px;
  }

  .video-trust-bar {
    padding: 10px 8px;
    gap: 4px;
    border-radius: 12px;
  }

  .vtrust-item strong {
    font-size: 12.5px;
    gap: 2px;
  }

  .vtrust-item span {
    font-size: 9.5px;
    white-space: nowrap;
  }

  .vtrust-divider {
    height: 20px;
    margin: 0 2px;
  }
}


/* ===== VERIFIED GOOGLE BUSINESS REVIEWS SECTION (Distinctive & High-End) ===== */
#reviews,
.google-reviews-section {
  scroll-margin-top: 130px !important;
}

.google-reviews-section {
  padding: 64px 5% 100px;
  background: #F8FAFC;
  /* Crisp contrast from previous warm cream video section */
  border-top: 2px solid rgba(66, 133, 244, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 20px 30px -20px rgba(0, 0, 0, 0.03);
}

.google-reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 220px;
  background: radial-gradient(ellipse at top, rgba(66, 133, 244, 0.06) 0%, rgba(52, 168, 83, 0.03) 50%, transparent 80%);
  pointer-events: none;
}

.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header: Left Title + Right Official Google Scorecard */
.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.testimonials-title-group {
  flex: 1 1 480px;
  max-width: 620px;
}

.testimonials-title-group .section-title {
  margin-top: 10px;
  margin-bottom: 10px;
}

.google-kicker {
  background: rgba(66, 133, 244, 0.1) !important;
  color: #1A73E8 !important;
  border: 1px solid rgba(66, 133, 244, 0.35) !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700 !important;
}

.google-svg-icon {
  flex: none;
}

/* Official Google Scorecard Card with Rating Breakdown */
.google-rating-scorecard {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  min-width: 320px;
  max-width: 480px;
  flex: 0 0 auto;
}

.google-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F3F4;
}

.google-biz-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.google-biz-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #202124;
  line-height: 1.2;
}

.google-biz-location {
  font-size: 11.5px;
  color: #5F6368;
  display: flex;
  align-items: center;
  gap: 4px;
}

.google-biz-location i {
  color: #EA4335;
  font-size: 13px;
}

.google-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.score-number-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.gscore-number {
  font-size: 34px;
  font-weight: 800;
  color: #202124;
  line-height: 1;
}

.gstars {
  display: flex;
  gap: 2px;
  color: #FBBC05;
  font-size: 13px;
}

.gscore-count {
  font-size: 11.5px;
  color: #5F6368;
  font-weight: 600;
}

/* Rating Progress Bars */
.google-bars-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 105px;
}

.gbar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: #5F6368;
  font-weight: 600;
}

.gbar-track {
  flex: 1;
  height: 5px;
  background: #E8EAED;
  border-radius: 4px;
  overflow: hidden;
}

.gbar-fill {
  height: 100%;
  background: #FBBC05;
  border-radius: 4px;
}

.gbar-row small {
  font-size: 10px;
  color: #70757A;
  min-width: 24px;
  text-align: right;
}

.btn-write-review {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 15px;
  background: #1A73E8;
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-write-review:hover {
  background: #1557B0;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(26, 115, 232, 0.35);
}

/* Dynamic Filter Strip for Google Reviews */
.reviews-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.rev-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  font-size: 12.5px;
  font-weight: 600;
  color: #5F6368;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.rev-filter-btn:hover {
  border-color: rgba(66, 133, 244, 0.4);
  color: #1A73E8;
  transform: translateY(-1px);
}

.rev-filter-btn.active {
  background: #1A73E8;
  color: var(--white);
  border-color: #1A73E8;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}

.rev-filter-btn .r-count {
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.07);
}

.rev-filter-btn.active .r-count {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* Swiper Slider */
.reviewsSwiper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px 0;
  margin-top: 0;
}

.review-slide {
  height: auto;
  display: flex;
}

/* Review Card Styling (Exact Google Style) */
.review-card.google-card {
  width: 100%;
  height: 100%;
  min-height: 290px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}

.review-card.google-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(27, 67, 50, 0.1);
  border-color: rgba(66, 133, 244, 0.4);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.review-card-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-bottom: 12px !important;
  min-width: 0 !important;
}

.reviewer-meta-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
}

/* Real Photo Avatar Styling */
.avatar-photo-box {
  position: relative !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  border-radius: 50% !important;
  flex: 0 0 44px !important;
  flex-shrink: 0 !important;
}

.author-avatar-img {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
  display: block !important;
}

.avatar-google-badge {
  position: absolute !important;
  bottom: -2px !important;
  right: -2px !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  z-index: 2 !important;
}

.avatar-google-badge i {
  font-size: 11px !important;
  line-height: 1 !important;
  color: #4285F4 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.author-details {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
  overflow: hidden !important;
  flex: 1 1 auto !important;
}

.author-name {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #202124 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.author-location {
  font-size: 11px !important;
  color: #5F6368 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.google-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 4px 9px !important;
  background: rgba(66, 133, 244, 0.08) !important;
  border: 1px solid rgba(66, 133, 244, 0.22) !important;
  border-radius: 20px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #1A73E8 !important;
  flex-shrink: 0 !important;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: #FBBC05;
  font-size: 13.5px;
}

.review-date {
  font-size: 11.5px;
  color: #70757A;
}

.rev-topic-tag {
  font-size: 10px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: auto;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.review-quote {
  font-size: 13.5px;
  line-height: 1.6;
  color: #3C4043;
  margin-bottom: 14px;
  flex: 1;
}

.review-quote strong {
  color: #1B4332;
  font-weight: 700;
}

/* Real Customer Attached Photo Box */
.review-ugc-box {
  margin: 4px 0 14px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #111;
}

.ugc-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.review-card.google-card:hover .ugc-img {
  transform: scale(1.03);
}

.ugc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ugc-caption i {
  color: #FBBC05;
  font-size: 12px;
}

.google-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #F1F3F4;
  margin-top: auto;
}

/* Interactive Google Review Likes Button */
.google-likes-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #5F6368;
  background: #F1F3F4;
  border: none;
  padding: 5px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.google-likes-btn:hover {
  background: #FCE8E6;
  color: #D93025;
}

.google-likes-btn.liked {
  background: #FCE8E6;
  color: #D93025;
}

.google-likes-btn.liked i {
  color: #D93025;
}

.verified-source {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: #188038;
}

/* Controls */
.reviews-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  z-index: 10;
}

.reviews-pagination {
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.reviews-pagination .swiper-pagination-bullet {
  background: var(--green-mid);
  opacity: 0.3;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--green-dark);
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

.reviews-arrows,
.rev-nav-btn {
  display: none !important;
}


/* ===== STANDALONE TRUST & ASSURANCE GUARANTEES SECTION ===== */
.trust-guarantees-section {
  padding: 38px 5%;
  background: linear-gradient(180deg, #F6EFE4 0%, #ECE2D0 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.trust-guarantees-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.trust-guarantees-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Standalone Guarantees Bar (Elevated Floating Capsule) */
.guarantees-bar {
  margin-top: 0;
  background: #FFFFFF;
  border: 1px solid rgba(212, 165, 116, 0.35);
  border-radius: 20px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(27, 67, 50, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(250, 248, 245, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.guarantee-item:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  box-shadow: 0 6px 16px rgba(27, 67, 50, 0.08);
  border-color: rgba(212, 165, 116, 0.35);
}

.guarantee-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex: none;
}

.icon-shipping {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.icon-ayush {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.icon-payment {
  background: #FFFBEB;
  color: #D97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.icon-satisfaction {
  background: #FAF5FF;
  color: #9333EA;
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.guarantee-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}

.guarantee-text p {
  font-size: 11.5px;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.35;
}

/* Responsive for Google Reviews */
@media (max-width: 1024px) {
  .guarantees-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .testimonials-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 20px;
  }

  .testimonials-title-group {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .google-rating-scorecard {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .reviews-arrows {
    display: none;
  }

  .reviews-filter-bar {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .google-reviews-section {
    padding: 36px 16px 44px;
  }

  .testimonials-title-group .section-title {
    font-size: 23px;
    line-height: 1.25;
    margin: 8px 0 6px 0;
  }

  .testimonials-title-group .section-subtitle {
    font-size: 12.5px;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .google-rating-scorecard {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 14px;
    margin-top: 4px;
  }

  .google-brand-row {
    padding-bottom: 10px;
    gap: 10px;
  }

  .google-biz-name {
    font-size: 13.5px;
  }

  .google-biz-location {
    font-size: 11px;
  }

  .google-score-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .score-number-box {
    flex: 0 0 auto;
  }

  .gscore-number {
    font-size: 28px;
  }

  .google-bars-col {
    flex: 1 1 120px;
    min-width: 110px;
  }

  .btn-write-review {
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
    font-size: 12px;
    margin-top: 4px;
  }

  .reviews-filter-bar {
    margin-bottom: 16px;
    gap: 8px;
    padding-bottom: 4px;
  }

  .rev-filter-btn {
    font-size: 11.5px;
    padding: 6px 12px;
  }

  .reviewsSwiper {
    padding: 4px 0 16px 0;
  }

  .review-card.google-card {
    min-height: 250px;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .review-quote {
    font-size: 12.2px;
    line-height: 1.45;
  }

  .guarantees-bar {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .trust-guarantees-section {
    padding: 18px 12px;
  }
}


/* ===== WELCOME TO TDA GREEN TEA / WHY TDA SECTION ===== */
.why-tda-section {
  padding: 72px 5%;
  background: #082818;
  color: #FAF8F5;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  position: relative;
  overflow: hidden;
}

.why-tda-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.why-tda-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-tda-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-tda-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.why-tda-media-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-tda-banner-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1.5px solid rgba(212, 165, 116, 0.3);
  background: #051A10;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.why-tda-banner-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(212, 165, 116, 0.2);
}

.why-tda-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Right Content Column */
.why-tda-content-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-tda-organic-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(82, 183, 136, 0.16);
  border: 1px solid rgba(82, 183, 136, 0.35);
  border-radius: 999px;
  color: #52B788;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-tda-organic-pill i {
  color: #52B788;
  font-size: 15px;
}

.why-tda-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  font-family: var(--font-serif, "Playfair Display", Georgia, serif);
}

.title-gold-italic {
  color: var(--gold, #D4A574);
  font-style: italic;
}

.why-tda-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.88);
  margin: 0;
}

/* Highlights Chips Row */
.why-tda-highlights-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 4px 0 4px;
}

.why-tda-hl-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 165, 116, 0.25);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #FAF8F5;
}

.why-tda-hl-chip i {
  color: #D4A574;
  font-size: 15px;
}

/* CTA Row */
.why-tda-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.btn-why-tda-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2D6A4F 0%, #52B788 100%);
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-why-tda-shop:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(82, 183, 136, 0.5);
  filter: brightness(1.08);
}

.why-tda-dispatch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.4);
  border-radius: 999px;
  font-size: 13px;
  color: #E2FBEF;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.why-tda-dispatch-badge i {
  color: #52B788;
  font-size: 16px;
  flex-shrink: 0;
}

.why-tda-dispatch-badge strong {
  font-weight: 700;
  color: #52B788;
}

.dispatch-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52B788;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.7);
  animation: dispatchPulse 2s infinite;
}

@keyframes dispatchPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(82, 183, 136, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(82, 183, 136, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(82, 183, 136, 0);
  }
}

@media (max-width: 900px) {
  .why-tda-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-tda-banner-wrap {
    max-width: 440px;
    margin: 0 auto;
  }

  .why-tda-title {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .why-tda-section {
    padding: 44px 18px;
  }

  .why-tda-title {
    font-size: 26px;
  }

  .why-tda-desc {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .why-tda-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-why-tda-shop {
    justify-content: center;
    width: 100%;
  }

  .why-tda-dispatch-badge {
    justify-content: center;
    width: 100%;
  }
}


/* ===== AYURVEDIC HERBS TRANSPARENCY SECTION ===== */
.ingredients-section {
  padding: 88px 5%;
  background: var(--white);
}

.ingredients-container {
  max-width: 1240px;
  margin: 0 auto;
}

.ingredients-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

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

.herb-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  background: #FCFBF9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.herb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(27, 67, 50, 0.09);
  border-color: rgba(82, 183, 136, 0.5);
  background: var(--white);
}

.herb-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.herb-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(45, 106, 79, 0.1);
  color: var(--green-mid);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex: none;
}

.herb-name-wrap h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}

.herb-sanskrit {
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  display: block;
}

.herb-benefit-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(212, 165, 116, 0.15);
  color: #8C6239;
  margin-bottom: 12px;
}

.herb-card p {
  font-size: 13.5px;
  color: var(--ink-light);
  line-height: 1.6;
}


/* ===== FAQ ACCORDION SECTION ===== */
.faq-section {
  padding: 88px 5%;
  background: var(--cream-light);
  border-top: 1px solid var(--border);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: #D1D5DB !important;
  background: #F9FAFB !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
}

.faq-item.active {
  border-color: #9CA3AF !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #1F2937 !important;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.faq-question:hover {
  color: #111827 !important;
  background: transparent !important;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #F3F4F6 !important;
  color: #4B5563 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px;
  flex: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item:hover .faq-icon {
  background: #E5E7EB !important;
  color: #1F2937 !important;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #374151 !important;
  color: #ffffff !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding: 0 24px 22px;
  max-height: 250px;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--ink-light);
  line-height: 1.65;
  border-top: 1px dashed var(--border);
  padding-top: 16px;
}


/* ===== FAST & DIRECT DELIVERY STRIP (ULTRA-PREMIUM LUXURY APOTHECARY EDITION) ===== */
.fast-delivery-strip {
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(212, 175, 55, 0.22) 0%, transparent 65%),
    radial-gradient(circle 500px at 15% 120%, rgba(45, 106, 79, 0.35) 0%, transparent 70%),
    radial-gradient(circle 500px at 85% 120%, rgba(198, 40, 40, 0.22) 0%, transparent 70%),
    linear-gradient(135deg, #05180F 0%, #0A291A 30%, #13422C 60%, #082014 100%);
  padding: 60px 0 68px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.45);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: inset 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 -8px 32px rgba(0, 0, 0, 0.6);
}

.fast-delivery-strip::before,
.fast-delivery-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(212, 175, 55, 0.7) 50%, transparent 95%);
  pointer-events: none;
}

.fast-delivery-strip::before {
  top: 0;
}

.fast-delivery-strip::after {
  bottom: 0;
}

.fast-delivery-content-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Micro-Beacon Badge */
.fast-delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #FFE699;
  background: rgba(12, 40, 26, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(12px);
  padding: 6px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  margin-bottom: 12px;
}

.badge-beacon-dot {
  width: 7px;
  height: 7px;
  background: #52B788;
  border-radius: 50%;
  box-shadow: 0 0 10px #52B788, 0 0 4px #52B788;
  animation: beaconPulse 2s ease-in-out infinite;
}

@keyframes beaconPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* Section Title & Subtitle */
.fast-delivery-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  text-align: center;
  margin: 0 0 8px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.title-serif-gold {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #F5C564 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 4px;
}

.fast-delivery-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  max-width: 680px;
  margin: 0 0 32px;
  line-height: 1.5;
}

/* Flow Milestones (Store -> Van -> Customer) */
.delivery-flow-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 980px;
  margin-bottom: 24px;
}

.flow-pill {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  padding: 8px 22px 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3), 0 1px 1px rgba(255, 255, 255, 0.4) inset;
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  max-width: 270px;
}

.flow-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border-color: #52B788;
  background: #FFFFFF;
}

.pill-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #14422D 0%, #0A261A 100%);
  color: #D4AF37;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pill-icon-wrap.cup-icon {
  background: linear-gradient(135deg, #991B1B 0%, #5B1111 100%);
  color: #FDE68A;
  border-color: rgba(239, 68, 68, 0.4);
}

.pill-text-wrap {
  display: flex;
  flex-direction: column;
}

.pill-primary {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #0E3827;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.pill-secondary {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  letter-spacing: -0.1px;
}

.flow-pill.highlight-pill {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF5 100%);
  border: 1.5px solid #D4AF37;
}

.flow-pill.highlight-pill .pill-primary {
  color: #991B1B;
}

/* Connector Between Milestones */
.flow-connector {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.connector-line {
  width: 16px;
  height: 2px;
  background: rgba(212, 175, 55, 0.4);
}

.connector-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #C62828;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  box-shadow: 0 3px 10px rgba(198, 40, 40, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Full-Width Runway Track (Edge-to-Edge Desktop & Mobile) */
.asphalt-road-wrapper.full-width-runway {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: rgba(6, 20, 14, 0.9);
  backdrop-filter: blur(16px);
  border-left: none;
  border-right: none;
  border-top: 1.5px solid rgba(212, 175, 55, 0.4);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.4);
}

.asphalt-road {
  position: relative;
  width: 100%;
  height: 124px;
  background: linear-gradient(180deg, rgba(16, 38, 27, 0.92) 0%, rgba(6, 18, 12, 0.98) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Road Center Luminous Golden Dash Line */
.road-center-dashes {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg,
      #FDE68A 0px,
      #FDE68A 32px,
      transparent 32px,
      transparent 68px);
  box-shadow: 0 0 10px rgba(245, 197, 100, 0.6);
  opacity: 0.9;
  animation: streamRunwayDashes 1.4s linear infinite;
}

@keyframes streamRunwayDashes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -68px 0;
  }
}

/* Animated Luxury Express Van (GPU Accelerated Buttery Smooth Cruise) */
.animated-parcel-truck {
  position: absolute;
  bottom: 15px;
  left: 0;
  z-index: 5;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(-170px, 0, 0);
  animation: driveVanAcrossSmooth 11s linear infinite;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}

@keyframes driveVanAcrossSmooth {
  0% {
    transform: translate3d(-170px, 0, 0);
  }

  100% {
    transform: translate3d(calc(100vw + 40px), 0, 0);
  }
}

.animated-parcel-truck .luxury-van-svg {
  animation: vanSuspensionFloat 0.32s ease-in-out infinite alternate;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
  will-change: transform;
}

@keyframes vanSuspensionFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-2px);
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .delivery-flow-pills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .flow-connector {
    display: none;
  }

  .flow-pill {
    max-width: 100%;
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .fast-delivery-strip {
    padding: 44px 0 52px;
  }

  .fast-delivery-title {
    font-size: 24px;
    letter-spacing: -0.3px;
  }

  .fast-delivery-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .flow-pill {
    flex: 1 1 100%;
    padding: 8px 16px 8px 10px;
  }

  .asphalt-road {
    height: 108px;
  }

  .animated-parcel-truck {
    bottom: 10px;
  }

  .animated-parcel-truck .luxury-van-svg {
    width: 120px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .newsletter-card {
    padding: 28px 22px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    min-width: 100%;
    width: 100%;
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    justify-content: center;
  }

  .footer-copy-col {
    align-items: center;
    text-align: center;
  }

  .footer-legal-col {
    align-items: center;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-payment-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .fast-delivery-title {
    font-size: 21px;
  }

  .asphalt-road {
    height: 96px;
  }

  .animated-parcel-truck .luxury-van-svg {
    width: 105px;
    height: 45px;
  }

  .footer-developer-credit {
    font-size: 10.5px;
    padding: 0;
    justify-content: center;
    text-align: center;
  }
}


/* ==========================================================================
   INTERACTIVE 10-SECOND AYURVEDIC BLEND MATCHMAKER SECTION (Single-View Edition)
   ========================================================================== */
.matchmaker-section {
  position: relative;
  background: radial-gradient(circle at 15% 25%, rgba(82, 183, 136, 0.28) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(45, 106, 79, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
    linear-gradient(145deg, #0D3522 0%, #15472E 40%, #1B5838 75%, #0E3422 100%);
  padding: 38px 4% 42px;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid rgba(82, 183, 136, 0.28);
  border-bottom: 1px solid rgba(82, 183, 136, 0.28);
  box-shadow: inset 0 2px 24px rgba(0, 0, 0, 0.25);
}

.matchmaker-section::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.matchmaker-container {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header - Compact Single-View */
.matchmaker-header {
  text-align: center;
  margin-bottom: 20px;
}

.matchmaker-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #FDE68A;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 6px;
  backdrop-filter: blur(8px);
}

.matchmaker-title {
  font-family: var(--font-heading, "Outfit", sans-serif);
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 4px;
}

.matchmaker-title .title-serif-italic {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(135deg, #FFF0B3 0%, #E8C868 60%, #D4A574 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.matchmaker-subtitle {
  font-size: 13.5px;
  color: rgba(240, 248, 244, 0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.4;
}

/* 4 Goal Selector Cards Strip - Sleek Compact Bar */
.goal-selector-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.goal-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(9, 30, 20, 0.55);
  border: 1.5px solid rgba(82, 183, 136, 0.25);
  border-radius: 14px;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.goal-card:hover {
  background: rgba(9, 30, 20, 0.8);
  border-color: rgba(82, 183, 136, 0.5);
  transform: translateY(-2px);
}

.goal-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: none;
  transition: transform 0.25s ease;
}

.goal-card:hover .goal-icon-wrap {
  transform: scale(1.06);
}

/* Goal Card Variants */
.icon-fire {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(185, 28, 28, 0.35) 100%);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.45);
}

.icon-drop {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(3, 105, 161, 0.35) 100%);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.45);
}

.icon-shield {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(180, 83, 9, 0.35) 100%);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.45);
}

.icon-rose {
  background: linear-gradient(135deg, rgba(244, 114, 182, 0.25) 0%, rgba(190, 24, 93, 0.35) 100%);
  color: #F472B6;
  border: 1px solid rgba(244, 114, 182, 0.45);
}

.goal-text {
  flex: 1;
  min-width: 0;
}

.goal-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.goal-text p {
  font-size: 11.5px;
  color: rgba(229, 231, 235, 0.75);
  margin: 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.goal-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: transparent;
  flex: none;
  transition: all 0.25s ease;
}

/* Active State for Goal Cards (Ayurvedic Tejas Gold & Emerald) */
.goal-card.active {
  background: rgba(13, 45, 32, 0.95);
  border-color: #D4A574 !important;
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.25), 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.goal-card.active .goal-indicator {
  background: #D4A574;
  border-color: #D4A574;
  color: #0D2D20;
}

.goal-card[data-goal="fat-burner"].active {
  border-color: #D4A574;
}

.goal-card[data-goal="gut-detox"].active {
  border-color: #52B788;
  box-shadow: 0 8px 24px rgba(82, 183, 136, 0.25);
}

.goal-card[data-goal="gut-detox"].active .goal-indicator {
  background: #52B788;
  border-color: #52B788;
  color: #0D2D20;
}

.goal-card[data-goal="jeevan-amrit"].active {
  border-color: #E0A96D;
  box-shadow: 0 8px 24px rgba(224, 169, 109, 0.25);
}

.goal-card[data-goal="jeevan-amrit"].active .goal-indicator {
  background: #E0A96D;
  border-color: #E0A96D;
  color: #0D2D20;
}

.goal-card[data-goal="skin-glow"].active {
  border-color: #E8B4B8;
  box-shadow: 0 8px 24px rgba(232, 180, 184, 0.25);
}

.goal-card[data-goal="skin-glow"].active .goal-indicator {
  background: #E8B4B8;
  border-color: #E8B4B8;
  color: #0D2D20;
}

/* Result Card - Enriched & Expanded Desktop View */
.matchmaker-result-card {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  background: rgba(8, 28, 18, 0.85);
  border: 1px solid rgba(82, 183, 136, 0.32);
  border-radius: 24px;
  padding: 28px 32px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Product Stage (Canister) - Enlarged */
.matchmaker-product-stage {
  position: relative;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.4) 75%);
  border: 1px solid rgba(82, 183, 136, 0.28);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 310px;
  min-height: 310px;
  box-shadow: inset 0 0 35px rgba(0, 0, 0, 0.35);
}

.matchmaker-product-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.matchmaker-product-stage:hover .matchmaker-product-img {
  transform: scale(1.04);
}

.matchmaker-badge-floating {
  position: absolute;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.tag-match {
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tag-batch {
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.72);
  color: #E5E7EB;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Matchmaker Details */
.matchmaker-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mm-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.mm-category-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.18);
  color: #FDE68A;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.mm-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #FBBF24;
  font-size: 13.5px;
  font-weight: 700;
}

.mm-rating small {
  color: rgba(229, 231, 235, 0.65);
  font-weight: 400;
  font-size: 12px;
}

.mm-product-title {
  font-family: var(--font-heading, "Outfit", sans-serif);
  font-size: 27px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px;
  line-height: 1.25;
}

.mm-product-tagline {
  font-size: 14px;
  color: rgba(229, 231, 235, 0.88);
  line-height: 1.55;
  margin: 0 0 14px;
}

/* Herbs Group */
.mm-herbs-group {
  margin-bottom: 14px;
}

.mm-herbs-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #A7F3D0;
  margin-bottom: 6px;
}

.mm-herbs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.herb-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(82, 183, 136, 0.25);
  color: #F3F4F6;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s ease;
}

.herb-pill i {
  color: #34D399;
  font-size: 11px;
}

.herb-pill:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Daily Ritual Guidance 3-Col Box */
.mm-ritual-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(82, 183, 136, 0.2);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 14px;
}

.ritual-col {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ritual-col i {
  font-size: 18px;
  color: #FBBF24;
  margin-top: 1px;
  flex: none;
}

.ritual-col strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E5E7EB;
  margin-bottom: 2px;
}

.ritual-col span {
  font-size: 11.5px;
  color: rgba(209, 213, 219, 0.85);
  line-height: 1.35;
  display: block;
}

/* Bonus Strip */
.mm-bonus-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.16) 0%, rgba(212, 175, 55, 0.16) 100%);
  border: 1px dashed rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  padding: 8px 16px;
  margin-bottom: 16px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.bonus-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6EE7B7;
}

.bonus-tag i {
  color: #FBBF24;
  font-size: 15px;
}

.bonus-coupon {
  color: rgba(243, 244, 246, 0.85);
}

.coupon-code {
  font-weight: 800;
  color: #FBBF24;
  background: rgba(251, 191, 36, 0.18);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(251, 191, 36, 0.35);
  letter-spacing: 0.8px;
}

/* Action CTA Row */
.mm-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mm-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.mm-current-price {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading, "Outfit", sans-serif);
}

.mm-original-price {
  font-size: 16px;
  color: rgba(156, 163, 175, 0.8);
  text-decoration: line-through;
}

.mm-discount-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 7px;
  background: rgba(239, 68, 68, 0.22);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.btn-matchmaker-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #FDE68A 0%, #D4AF37 50%, #B89628 100%);
  color: #081B11;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.38);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  flex: 1;
  max-width: 380px;
}

.btn-matchmaker-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(212, 175, 55, 0.52);
  filter: brightness(1.06);
}

.btn-matchmaker-add:active {
  transform: translateY(0);
}

/* Matchmaker Responsive */
@media (max-width: 1024px) {
  .goal-selector-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .matchmaker-result-card {
    grid-template-columns: 240px 1fr;
    padding: 18px 20px;
    gap: 18px;
  }

  .matchmaker-product-stage,
  .matchmaker-product-img {
    height: 230px;
    min-height: 230px;
  }
}

@media (max-width: 768px) {
  .matchmaker-section {
    padding: 36px 4% 44px;
  }

  .matchmaker-title {
    font-size: 24px;
  }

  .goal-selector-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .matchmaker-result-card {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 16px;
  }

  .matchmaker-product-stage,
  .matchmaker-product-img {
    height: 220px;
    min-height: 220px;
  }

  .mm-ritual-box {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mm-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-matchmaker-add {
    max-width: 100%;
    width: 100%;
  }
}


/* ==========================================================================
   REAL INSTAGRAM FEED & COMMUNITY SECTION (@tdawellness)
   ========================================================================== */
.instagram-section {
  position: relative;
  background: #FAF8F5;
  padding: 46px 0 64px;
  border-top: 1px solid rgba(13, 45, 32, 0.07);
  border-bottom: 1px solid rgba(13, 45, 32, 0.07);
  overflow: hidden;
  scroll-margin-top: 80px;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

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

/* Header - Left-aligned, Clean & Luxury */
.instagram-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 760px;
  margin: 0 0 24px 0;
  gap: 8px;
}

.ig-kicker {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(253, 29, 29, 0.04) 100%);
  border-color: rgba(225, 48, 108, 0.28);
  color: #C13584;
}

.ig-kicker i {
  color: #E1306C;
  font-size: 13px;
}

.instagram-header .section-title {
  margin-top: 2px;
  margin-bottom: 4px;
  font-size: 28px;
}

.instagram-header .title-serif-italic {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.instagram-header .section-subtitle {
  font-size: 14px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0;
}

.instagram-header .section-subtitle strong {
  color: #0D2D20;
}

/* ==========================================================================
   AUTHENTIC INSTAGRAM PROFILE CARD BAR (Real Instagram Web/App Hybrid Standard)
   ========================================================================== */
.ig-profile-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 30px;
  row-gap: 8px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 18px 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(13, 45, 32, 0.05);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}

.ig-profile-card:hover {
  box-shadow: 0 12px 36px rgba(13, 45, 32, 0.08);
}

/* Avatar & Active Rotating Story Ring */
.ig-profile-avatar-box {
  grid-column: 1;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}

.ig-story-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
  cursor: pointer;
  animation: igStorySpin 10s linear infinite;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.ig-story-ring:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(220, 39, 67, 0.48);
}

@keyframes igStorySpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ig-profile-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
  border: 3.5px solid #FFFFFF;
  animation: igStorySpinReverse 10s linear infinite;
}

@keyframes igStorySpinReverse {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.ig-story-live-tag {
  margin-top: -10px;
  background: linear-gradient(135deg, #f09433 0%, #dc2743 100%);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(220, 39, 67, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
  cursor: pointer;
  animation: storyTagPulse 2.5s ease-in-out infinite;
}

@keyframes storyTagPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.ig-story-live-tag i {
  font-size: 8px;
}

/* Top Action Row: Handle & Buttons Group Inline on Desktop */
.ig-top-action-row {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ig-handle-verified-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ig-handle-title {
  font-size: 22px;
  font-weight: 600;
  color: #262626;
  margin: 0;
  letter-spacing: -0.3px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Official Animated Instagram Verified Blue Badge */
.ig-verified-badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ig-verified-svg {
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 149, 246, 0.45));
  animation: igTickPulse 3.5s ease-in-out infinite;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.28s ease;
}

.ig-verified-badge-wrap:hover .ig-verified-svg {
  transform: scale(1.22) rotate(6deg);
  filter: drop-shadow(0 4px 14px rgba(0, 149, 246, 0.8));
}

@keyframes igTickPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 2px 6px rgba(0, 149, 246, 0.45));
  }

  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 149, 246, 0.8));
  }
}

.ig-verified-shine {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, transparent 60%);
  opacity: 0;
  animation: igTickShine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes igTickShine {

  0%,
  65% {
    opacity: 0;
    transform: scale(0.6);
  }

  75% {
    opacity: 0.9;
    transform: scale(1.2);
  }

  85% {
    opacity: 0.3;
    transform: scale(1.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.ig-verified-ring-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 149, 246, 0.5);
  opacity: 0;
  animation: igTickRingPulse 3.5s ease-out infinite;
  pointer-events: none;
}

@keyframes igTickRingPulse {

  0%,
  70% {
    transform: scale(0.85);
    opacity: 0;
  }

  75% {
    opacity: 0.85;
  }

  92% {
    transform: scale(1.7);
    opacity: 0;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Action Buttons Group (Inline next to handle on desktop) */
.ig-header-btns-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

/* Instagram Metrics Row */
.ig-profile-counts {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: #262626;
  margin: 0;
}

.ig-stat-col {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-size: 14.5px;
  color: #4B5563;
}

.ig-stat-col strong {
  font-weight: 700;
  color: #111827;
  font-size: 15px;
}

.ig-stat-col span {
  font-size: 13.5px;
  color: #6B7280;
}

/* Bio & Category */
.ig-profile-bio-snippet {
  grid-column: 2;
  grid-row: 3;
  font-size: 13.5px;
  color: #374151;
  line-height: 1.48;
  padding-left: 0;
}

.ig-bio-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.ig-bio-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.ig-bio-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  background: #F3F4F6;
  padding: 2px 7px;
  border-radius: 6px;
}

.ig-bio-body {
  margin: 0;
  color: #4B5563;
  line-height: 1.48;
  font-size: 13px;
}

.ig-bio-url {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #00376B !important;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.ig-bio-url:hover {
  text-decoration: underline;
}

.ig-real-btn-follow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0095F6;
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 149, 246, 0.3);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-real-btn-follow:hover {
  background: #1877F2;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 149, 246, 0.4);
}

.ig-real-btn-follow.following {
  background: #EFEFEF;
  color: #262626 !important;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.ig-real-btn-follow.following:hover {
  background: #DBDBDB;
  color: #DC2626 !important;
}

.ig-real-btn-msg {
  display: inline-flex;
  align-items: center;
  background: #EFEFEF;
  color: #262626 !important;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ig-real-btn-msg:hover {
  background: #DBDBDB;
  transform: translateY(-1px);
}

.ig-real-btn-share,
.ig-real-btn-ext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #EFEFEF;
  color: #262626 !important;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ig-real-btn-share:hover,
.ig-real-btn-ext:hover {
  background: #DBDBDB;
  transform: translateY(-1px);
}

/* Authentic Instagram Story Highlights Strip */
.ig-story-highlights-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  padding: 16px 20px 24px;
  margin-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.ig-story-highlights-bar::-webkit-scrollbar {
  display: none;
}

.ig-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ig-highlight-item:hover {
  transform: translateY(-4px);
}

.ig-hl-ring {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, #DBDBDB 0%, #C4C4C4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
}

.ig-highlight-item:hover .ig-hl-ring {
  background: conic-gradient(from 0deg, #D4A574, #52B788, #D4A574);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.35);
}

.ig-hl-thumb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #FAF8F5;
  border: 2.5px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1B4332;
  transition: all 0.25s ease;
}

.ig-highlight-item:hover .ig-hl-thumb {
  background: #FFFFFF;
  color: #059669;
  transform: scale(1.04);
}

.ig-hl-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #262626;
  letter-spacing: -0.1px;
  white-space: nowrap;
}

/* ==========================================================================
   AUTHENTIC INSTAGRAM FEED TABS
   ========================================================================== */
.ig-feed-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 22px;
}

.ig-feed-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 10px;
  background: none;
  border: none;
  border-top: 1px solid transparent;
  margin-top: -1px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #737373;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ig-feed-tab:hover {
  color: #262626;
}

.ig-feed-tab.active {
  color: #262626;
  border-top: 1.5px solid #262626;
}

/* ==========================================================================
   4-TILE REAL INSTAGRAM FEED GRID
   ========================================================================== */
.instagram-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 38px;
}

.ig-feed-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #EBE5DF;
  box-shadow: 0 4px 16px rgba(13, 45, 32, 0.06);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.ig-feed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(13, 45, 32, 0.16);
}

.ig-feed-media-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.ig-feed-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-feed-card:hover .ig-feed-media-wrap img {
  transform: scale(1.06);
}

/* Permanently Visible Badges */
.ig-type-indicator {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.ig-type-indicator.reel-indicator i {
  color: #FFFFFF;
  font-size: 12px;
}

.ig-card-bottom-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3.5px 8px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ig-card-bottom-pill i {
  color: #E1306C;
  font-size: 12px;
}

/* Real Instagram Hover Scrim */
.ig-feed-hover-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.48);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ig-feed-card:hover .ig-feed-hover-scrim {
  opacity: 1;
}

.ig-hover-metrics {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.ig-hover-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ig-hover-metrics i.ri-heart-fill {
  color: #FFFFFF;
}

.ig-hover-metrics i.ri-chat-3-fill {
  color: #FFFFFF;
}

.ig-hover-cta {
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ==========================================================================
   TRUE-TO-LIFE INSTAGRAM POST LIGHTBOX MODAL
   ========================================================================== */
.ig-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ig-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.ig-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 980px;
  height: 600px;
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ig-modal-backdrop.open .ig-modal-dialog {
  transform: scale(1);
}

.ig-modal-close-btn {
  position: absolute;
  top: -46px;
  right: -2px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.ig-modal-close-btn:hover {
  transform: scale(1.15);
}

.ig-modal-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  height: 100%;
}

.ig-modal-media-col {
  position: relative;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#igModalImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-modal-audio-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ig-modal-info-col {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  height: 100%;
  border-left: 1px solid #EFEFEF;
}

.ig-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #EFEFEF;
}

.ig-modal-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ig-mini-story-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-mini-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #FFFFFF;
  border: 1.5px solid #FFFFFF;
}

.ig-author-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ig-author-handle {
  font-size: 13.5px;
  font-weight: 700;
  color: #262626;
}

.ig-badge-icon {
  font-size: 13px;
  color: #0095F6;
}

.ig-dot-sep {
  color: #8E8E8E;
  font-size: 12px;
}

.ig-btn-modal-follow {
  background: none;
  border: none;
  font-size: 12.5px;
  font-weight: 700;
  color: #0095F6;
  cursor: pointer;
  padding: 0;
}

.ig-author-location {
  font-size: 11px;
  color: #737373;
}

.ig-modal-dots {
  background: none;
  border: none;
  font-size: 18px;
  color: #262626;
  cursor: pointer;
}

/* Scrollable comments stream */
.ig-modal-comments-stream {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ig-modal-comment-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.ig-comm-avatar {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  flex: 0 0 32px !important;
  flex-shrink: 0 !important;
  background: #E5E7EB !important;
  display: block !important;
}

.ig-comm-avatar img {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ig-comm-body {
  flex: 1;
}

.ig-comm-user {
  font-weight: 700;
  color: #262626;
  margin-right: 6px;
}

.ig-comm-text {
  color: #262626;
}

.ig-comm-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: #8E8E8E;
  margin-top: 4px;
}

.ig-comm-reply {
  background: none;
  border: none;
  font-size: 11px;
  font-weight: 600;
  color: #8E8E8E;
  cursor: pointer;
  padding: 0;
}

.ig-comm-like {
  background: none;
  border: none;
  color: #8E8E8E;
  font-size: 13px;
  cursor: pointer;
  padding: 2px;
}

/* Modal Action Bar */
.ig-modal-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 6px;
  border-top: 1px solid #EFEFEF;
}

.ig-action-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ig-act-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #262626;
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease;
}

.ig-act-btn:hover {
  transform: scale(1.15);
}

.ig-like-heart-btn.liked i {
  color: #ED4956;
  animation: heartBounce 0.3s ease;
}

@keyframes heartBounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

.ig-modal-likes-row {
  padding: 0 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ig-likes-text {
  font-size: 13px;
  color: #262626;
}

.ig-post-date {
  font-size: 10px;
  color: #8E8E8E;
  letter-spacing: 0.3px;
}

.ig-modal-add-comment {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid #EFEFEF;
  gap: 8px;
}

.ig-emoji-icon {
  font-size: 20px;
  color: #737373;
  cursor: pointer;
}

.ig-comment-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 13px;
  background: transparent;
}

.ig-btn-post-comment {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: #0095F6;
  cursor: pointer;
}

.ig-modal-footer-cta {
  padding: 8px 16px 12px;
  border-top: 1px solid #F4F4F4;
  background: #FAFAFA;
}

.ig-btn-view-direct {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #0095F6 !important;
  text-decoration: none;
}

.ig-btn-view-direct:hover {
  text-decoration: underline;
}

/* ==========================================================================
   INSTAGRAM COMMUNITY PRIVILEGE STRIP
   ========================================================================== */
.ig-privilege-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: 1px solid rgba(13, 45, 32, 0.08);
  border-radius: 18px;
  padding: 24px 36px;
  box-shadow: 0 6px 24px rgba(13, 45, 32, 0.04);
}

.ig-privilege-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.ig-priv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ig-priv-icon.icon-giveaway {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.14) 0%, rgba(245, 158, 11, 0.14) 100%);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.ig-priv-icon.icon-circle {
  background: linear-gradient(135deg, rgba(45, 106, 79, 0.14) 0%, rgba(82, 183, 136, 0.14) 100%);
  color: #2D6A4F;
  border: 1px solid rgba(45, 106, 79, 0.25);
}

.ig-priv-icon.icon-perks {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(245, 232, 199, 0.3) 100%);
  color: #B8860B;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.ig-priv-text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: #0D2D20;
  margin-bottom: 3px;
}

.ig-priv-text p {
  font-size: 12.5px;
  color: #6B7280;
  margin: 0;
  line-height: 1.45;
}

.ig-privilege-divider {
  width: 1px;
  height: 42px;
  background: rgba(13, 45, 32, 0.08);
  margin: 0 24px;
  flex-shrink: 0;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES FOR INSTAGRAM SECTION
   ========================================================================== */
@media (max-width: 1100px) {
  .instagram-feed-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 40px 0 48px;
  }

  .instagram-header {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 16px;
  }

  /* Authentic Mobile Instagram Profile Card */
  .ig-profile-card {
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 14px;
    row-gap: 8px;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .ig-profile-avatar-box {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    width: 68px;
  }

  .ig-story-ring {
    width: 66px;
    height: 66px;
    padding: 2.5px;
  }

  .ig-story-live-tag {
    font-size: 8px;
    padding: 2px 7px;
    margin-top: -8px;
  }

  .ig-top-action-row {
    display: contents;
  }

  .ig-handle-verified-group {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    align-self: center;
  }

  .ig-handle-title {
    font-size: 17px;
    font-weight: 700;
  }

  .ig-profile-counts {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 6px;
    margin: 0;
    align-self: center;
  }

  .ig-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1px;
    flex: 1;
  }

  .ig-stat-col strong {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
  }

  .ig-stat-col span {
    font-size: 11px;
    color: #6B7280;
  }

  .ig-profile-bio-snippet {
    grid-column: 1 / -1;
    grid-row: 3;
    padding-left: 0;
    font-size: 13px;
    line-height: 1.48;
    width: 100%;
    margin-top: 4px;
  }

  .ig-bio-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 2px;
  }

  .ig-bio-name {
    font-size: 13.5px;
    margin-bottom: 0;
  }

  .ig-bio-category {
    font-size: 11px;
  }

  .ig-bio-body {
    font-size: 12.5px;
    margin-top: 3px;
    margin-bottom: 0;
  }

  .ig-bio-url {
    font-size: 12.5px;
  }

  .ig-header-btns-group {
    grid-column: 1 / -1;
    grid-row: 4;
    padding-left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-top: 6px;
  }

  .ig-real-btn-follow {
    flex: 1;
    justify-content: center;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .ig-real-btn-msg {
    flex: 1;
    justify-content: center;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .ig-real-btn-share,
  .ig-real-btn-ext {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
  }

  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 24px;
  }

  .ig-story-highlights-bar {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 8px 4px 18px;
    margin-bottom: 8px;
  }

  .ig-story-highlights-bar::-webkit-scrollbar {
    display: none;
  }

  .ig-highlight-item {
    flex-shrink: 0;
  }

  .ig-hl-ring {
    width: 58px;
    height: 58px;
  }

  .ig-hl-thumb {
    font-size: 20px;
  }

  .ig-hl-label {
    font-size: 11px;
  }

  .ig-feed-tabs-bar {
    gap: 28px;
    margin-bottom: 14px;
  }

  .instagram-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ig-modal-dialog {
    height: 90vh;
    overflow-y: auto;
  }

  .ig-modal-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .ig-modal-media-col {
    height: 320px;
  }

  .ig-modal-info-col {
    border-left: none;
    border-top: 1px solid #EFEFEF;
  }
}


/* ===== RESPONSIVE BREAKPOINTS FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .brew-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .herbs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .newsletter-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .newsletter-form {
    width: 100%;
    min-width: unset;
  }
}

@media (max-width: 768px) {

  .brew-section,
  .ingredients-section,
  .faq-section {
    padding: 60px 5%;
  }

  .herbs-grid {
    grid-template-columns: 1fr;
  }

  .brew-timing-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cart-drawer {
    max-width: 100%;
  }

  .floating-whatsapp-btn span {
    display: none;
  }

  .floating-whatsapp-btn {
    padding: 14px;
    border-radius: 50%;
  }
}

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}



/* ==========================================================================
   CEO ULTRA-LUXURY POLISH: PRODUCT CARD HOVER GRADIENT & GLOW
   ========================================================================== */

/* Enhanced Section Background: Royal Emerald & Warm Gold Ambient Glow */
.products-section {
  position: relative !important;
  background: radial-gradient(circle at 10% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(27, 67, 50, 0.08) 0%, transparent 45%),
              linear-gradient(180deg, #FAF8F5 0%, #F5F1EB 50%, #FAF8F5 100%) !important;
}

/* Product Card Luxury Transition & Hover Effect */
.product-card {
  position: relative !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: 1px solid rgba(212, 165, 116, 0.25) !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

/* On product-card hover:
   1. Soft premium green + warm gold gradient inside entire card
   2. Keeps center lighter so product remains clearly visible */
.product-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 20px 40px -12px rgba(27, 67, 50, 0.16),
              0 0 0 1.5px rgba(212, 165, 116, 0.5) !important;
  background: radial-gradient(ellipse at 50% 35%, #ffffff 0%, #FAFAF7 45%, #F4EFE6 100%),
              linear-gradient(145deg, rgba(27, 67, 50, 0.04) 0%, rgba(212, 165, 116, 0.08) 100%) !important;
}

/* Subtle radial glow behind the product image */
.product-card .product-img-box {
  position: relative !important;
  transition: all 0.4s ease !important;
}

.product-card:hover .product-img-box::before {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 140px !important;
  height: 140px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.35) 0%, rgba(82, 183, 136, 0.2) 50%, transparent 75%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  animation: tdaAuraGlow 3s ease-in-out infinite alternate !important;
}

@keyframes tdaAuraGlow {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.product-card .product-img-box img {
  position: relative !important;
  z-index: 2 !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .product-img-box img {
  transform: scale(1.05) translateY(-3px) !important;
}

/* Luxury button polish */
.product-card .btn-add-cart {
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%) !important;
  border: 1px solid rgba(212, 165, 116, 0.3) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
}

.product-card .btn-add-cart:hover {
  background: linear-gradient(135deg, #D4A574 0%, #C6925B 100%) !important;
  color: #0E2419 !important;
  box-shadow: 0 6px 18px rgba(212, 165, 116, 0.35) !important;
  transform: translateY(-1px) !important;
}
