/* ==========================================================================
   Mai Pads — Premium Feminine Hygiene Design System
   Color Palette: Medical Teal, Fresh Mint, Warm Gold Accent, Deep Slate
   Typography: Plus Jakarta Sans, Playfair Display & Caveat (Handwritten)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Brand Colors - Modern Teal & Mint with Warm Golden Accent */
  --primary: #00827f;
  --primary-hover: #006663;
  --primary-dark: #0e3d3a;
  --primary-light: #e0f5f2;
  --primary-glow: rgba(0, 130, 127, 0.2);

  --secondary: #26a69a;
  --secondary-soft: #e0f2f1;
  --rose-subtle: #e8f7f5;
  --blush: #ebf8f6;
  --cream: #fafdfb;

  --accent-yellow: #ffd038;
  --accent-yellow-hover: #f5c518;
  --accent-coral: #e55353;
  --accent-lavender: #00897b;
  --accent-mint: #00897b;

  /* Neutrals & Dark Text */
  --text-dark: #162e35;
  --text-body: #2d454e;
  --text-muted: #5e757e;
  --text-light: #8fa5ae;
  --bg-white: #ffffff;
  --bg-surface: #f5fbf9;
  --border-light: #d5ebe7;
  --border-subtle: #e2f2ef;

  /* Shadows & Elevations */
  --shadow-sm: 0 2px 8px rgba(0, 130, 127, 0.06);
  --shadow-md: 0 6px 20px rgba(0, 130, 127, 0.08);
  --shadow-lg: 0 12px 36px rgba(0, 130, 127, 0.12);
  --shadow-hover: 0 18px 42px rgba(0, 130, 127, 0.16);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Typography */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-script: "Caveat", cursive;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--bg-surface);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Headings */
h1,
h2,
h3,
.serif-font {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}
h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--primary-hover);
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-sm {
  padding: 50px 0;
}
.section-bg-rose {
  background: linear-gradient(
    180deg,
    var(--rose-subtle) 0%,
    var(--bg-surface) 100%
  );
}
.section-bg-cream {
  background-color: var(--cream);
}
.section-bg-wine {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-hover) 100%
  );
  color: #ffffff;
}
.section-bg-wine h2,
.section-bg-wine h3,
.section-bg-wine p {
  color: #ffffff;
}

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

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--secondary-soft);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: #ffffff;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 122, 120, 0.28);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary);
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--rose-subtle);
  border-color: var(--secondary);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: #ffffff;
  color: var(--primary);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   1. TOP LUXURY ANNOUNCEMENT / BRAND BAR
   ========================================================================== */
.header-top {
  background: linear-gradient(90deg, #003633 0%, #004d49 35%, #005652 70%, #003633 100%);
  color: #ffffff;
  padding: 6px 0;
  min-height: 38px;
  font-size: 0.76rem;
  line-height: 1.2;
  border-bottom: 1px solid rgba(0, 191, 165, 0.16);
  position: relative;
  z-index: 1002;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.header-top-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-announcement-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.top-tagline-badge {
  background: rgba(255, 208, 56, 0.12);
  color: #ffd038;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 0.68rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 208, 56, 0.32);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.top-tagline-badge .top-heart-icon {
  color: #ffd038;
  filter: drop-shadow(0 0 3px rgba(255, 208, 56, 0.5));
}
.top-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
  margin: 0 2px;
}
.top-origin-text {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.74rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  letter-spacing: 0.15px;
}
.top-announcement-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.top-spec-tag {
  color: #a7f3d0;
  font-size: 0.74rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.top-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
.top-track-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.top-track-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.top-whatsapp-link {
  color: #86efac;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
}
.top-whatsapp-link:hover {
  color: #ffffff;
  background: rgba(16, 185, 129, 0.28);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateY(-1px);
}

/* Responsive Top Bar */
@media (max-width: 992px) {
  .top-origin-text,
  .top-divider-origin {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .header-top {
    padding: 5px 0;
    min-height: 32px;
  }
  .header-top-inner {
    padding: 0 clamp(12px, 3vw, 20px);
    gap: 8px;
    justify-content: space-between;
  }
  .top-origin-text,
  .top-divider-origin,
  .top-spec-tag,
  .top-divider-spec {
    display: none !important;
  }
  .top-tagline-badge {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    padding: 2.5px 8px;
    white-space: nowrap;
  }
  .top-track-link {
    font-size: 0.72rem;
    padding: 2.5px 6px;
    white-space: nowrap;
  }
  .top-whatsapp-link {
    font-size: 0.72rem;
    padding: 2.5px 8px;
    white-space: nowrap;
  }
}
@media (max-width: 480px) {
  .header-top-inner {
    padding: 0 10px;
    gap: 6px;
  }
  .top-tagline-badge {
    font-size: 0.62rem;
    letter-spacing: 0.2px;
    padding: 2px 6px;
  }
  .top-tagline-badge svg {
    width: 10px;
    height: 10px;
  }
  .top-account-link,
  .top-divider-account {
    display: none !important;
  }
  .top-announcement-right {
    gap: 6px;
  }
  .top-track-link {
    padding: 2px 5px;
    font-size: 0.7rem;
  }
  .top-whatsapp-link {
    padding: 2px 8px;
    font-size: 0.7rem;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 12px;
    color: #25D366;
  }
}

/* ==========================================================================
   2. REDESIGNED STICKY NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 122, 120, 0.09);
  box-shadow: 0 4px 20px -2px rgba(9, 43, 40, 0.05);
  height: 74px;
  transition: all 0.25s ease;
}
.navbar-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 40px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.brand-logo:hover {
  transform: scale(1.02);
}
.brand-logo-img {
  height: 52px;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0, 122, 120, 0.08));
}

/* Desktop Navigation Menu */
.nav-desktop {
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.nav-link:hover {
  color: #007a78;
  background: #e8f8f6;
}
.nav-link.active {
  color: #007a78 !important;
  background: #e0f5f2;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 #007a78, 0 2px 8px rgba(0, 122, 120, 0.08);
}
.nav-badge-pill {
  background: #ffd038;
  color: #092b28;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 2px;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 6px rgba(255, 208, 56, 0.35);
}
.dropdown-chevron {
  transition: transform 0.22s ease;
  margin-left: 2px;
  color: #64748b;
}
.nav-item:hover .dropdown-chevron {
  transform: rotate(180deg);
  color: #007a78;
}

/* Mega-Menu Dropdown (Hover Bridge included so menu never closes) */
.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 14px;
}
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -120px;
  width: 660px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow:
    0 18px 46px -6px rgba(9, 43, 40, 0.18),
    0 0 0 1px rgba(0, 122, 120, 0.08);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 1010;
  animation: megaFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-item:hover .mega-menu {
  display: flex;
}
@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mega-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}
.mega-header-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #007a78;
  letter-spacing: 0.5px;
  display: block;
}
.mega-header-title {
  margin: 3px 0 0 0;
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 700;
}
.mega-view-all-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #007a78;
  text-decoration: none;
}
.mega-view-all-link:hover {
  text-decoration: underline;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  background: #fafcfb;
  border: 1px solid #eef5f3;
  transition: all 0.2s ease;
}
.mega-item:hover {
  background: #e8f8f6;
  border-color: rgba(0, 122, 120, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 122, 120, 0.08);
}
.mega-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.mega-info {
  flex: 1;
  min-width: 0;
}
.mega-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.mega-badge-tag {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 6px;
  white-space: nowrap;
}
.badge-bestseller {
  background: #fef3c7;
  color: #b45309;
}
.badge-soft {
  background: #eff6ff;
  color: #1e40af;
}
.badge-slim {
  background: #e0f2fe;
  color: #0369a1;
}
.badge-eco {
  background: #ecfdf5;
  color: #047857;
}
.mega-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
  margin-top: 3px;
}
.mega-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mega-footer-perks {
  font-size: 0.75rem;
  font-weight: 600;
  color: #007a78;
  display: flex;
  gap: 14px;
}
.mega-footer-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #007a78;
  text-decoration: none;
}
.mega-footer-link:hover {
  text-decoration: underline;
}

/* Nav Actions Right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-action-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #eef2f6;
  background: #ffffff;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s ease;
  position: relative;
  text-decoration: none;
}
.nav-action-circle:hover {
  border-color: #007a78;
  color: #007a78;
  background: #e8f8f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 122, 120, 0.12);
}
.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #ffd038 0%, #f5ba13 100%);
  color: #092b28;
  font-size: 0.68rem;
  font-weight: 900;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(245, 186, 19, 0.45);
  line-height: 1;
}
.cart-count-badge.has-items {
  animation: badgePop 0.3s ease;
}
@keyframes badgePop {
  0% { transform: scale(0.6); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Radiant High-Converting CTA Button: Shop Now */
.btn-navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd038 0%, #f5ba13 100%);
  color: #092b28 !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 186, 19, 0.35);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.btn-navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.48);
  background: linear-gradient(135deg, #ffe066 0%, #fbbf24 100%);
}
.cta-arrow-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.btn-navbar-cta:hover .cta-arrow-circle {
  transform: translateX(3px);
  background: #092b28;
  color: #ffd038;
}

/* Mobile Toggle Three-Dot Button */
.mobile-toggle {
  display: none;
  background: #e8f8f6;
  border: 1.5px solid rgba(0, 122, 120, 0.2);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #007a78;
  transition: all 0.2s ease;
}
.mobile-toggle:hover {
  background: #007a78;
  color: #ffffff;
  border-color: #007a78;
  box-shadow: 0 4px 12px rgba(0, 122, 120, 0.2);
}
.mobile-toggle svg {
  display: block;
  transition: transform 0.2s ease;
}
.mobile-toggle:hover svg {
  transform: scale(1.12);
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .nav-desktop {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .navbar {
    height: 64px;
  }
  .brand-logo-img {
    height: 40px;
    max-height: 42px;
  }
}
@media (max-width: 768px) {
  .btn-navbar-cta {
    display: none !important;
  }
}
@media (max-width: 520px) {
  .navbar-wrapper {
    padding: 0 12px;
  }
  .brand-logo-img {
    height: 36px;
    max-height: 38px;
    max-width: 120px;
    width: auto;
  }
  .nav-actions {
    gap: 6px;
  }
  .nav-action-circle {
    width: 38px;
    height: 38px;
  }
  .nav-account-btn {
    display: none !important;
  }
  .mobile-toggle {
    width: 38px;
    height: 38px;
  }
}

/* ==========================================================================
   3. FULL MOBILE NAVIGATION SLIDE-OUT DRAWER
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 10001;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  background: #ffffff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav-drawer.open .mobile-nav-panel {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #fafcfb;
}
.mobile-brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.mobile-nav-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.mobile-nav-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.mobile-search-box {
  margin: 14px 18px 6px 18px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #64748b;
  cursor: pointer;
}
.mobile-nav-body {
  flex: 1;
  padding: 14px 18px 24px 18px;
}
.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.18s ease;
}
.mobile-nav-item:hover,
.mobile-nav-item.active {
  background: #e8f8f6;
  color: #007a78;
  font-weight: 700;
}
.mobile-badge-pill {
  background: #ffd038;
  color: #092b28;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
}
.mobile-sub-menu {
  background: #f8fafc;
  border-radius: 10px;
  padding: 6px 8px;
  margin: 4px 0 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid #007a78;
}
.mobile-sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.mobile-sub-item:hover {
  background: #e2e8f0;
  color: #007a78;
}
.mobile-sub-tag {
  font-size: 0.65rem;
  font-weight: 700;
  color: #007a78;
  background: #e0f5f2;
  padding: 1px 6px;
  border-radius: 4px;
}
.mobile-drawer-utilities {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-util-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #eef2f6;
  text-decoration: none;
  transition: all 0.18s ease;
}
.mobile-util-card:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.mobile-util-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-util-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
}
.mobile-util-sub {
  font-size: 0.72rem;
  color: #64748b;
}
.mobile-drawer-perk {
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  font-size: 0.78rem;
  color: #065f46;
}
.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid #f1f5f9;
  background: #fafcfb;
}
.btn-mobile-shop-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffd038 0%, #f5ba13 100%);
  color: #092b28;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 186, 19, 0.4);
}

/* ==========================================================================
   4. LIVE SEARCH MODAL OVERLAY
   ========================================================================== */
.search-overlay-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.search-overlay-box {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  z-index: 2;
  animation: searchBoxPop 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes searchBoxPop {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.search-box-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 16px;
  transition: all 0.2s ease;
}
.search-input-wrapper:focus-within {
  border-color: #007a78;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 122, 120, 0.12);
}
.search-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.95rem;
  color: #0f172a;
  font-family: inherit;
}
.search-clear-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
}
.search-clear-btn:hover {
  color: #0f172a;
}
.search-close-btn {
  background: #f1f5f9;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s ease;
}
.search-close-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}
.search-results-area {
  margin-top: 18px;
}
.search-quick-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.quick-tag-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
}
.quick-tag {
  background: #e8f8f6;
  color: #007a78;
  border: 1px solid rgba(0, 122, 120, 0.18);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}
.quick-tag:hover {
  background: #007a78;
  color: #ffffff;
  border-color: #007a78;
  transform: translateY(-1px);
}

/* ==========================================================================
   3. 100% FULL-WIDTH EDGE-TO-EDGE HERO SLIDER
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100% !important;
  max-width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #e8f8f6;
  overflow: hidden;
}
.hero-slider-container {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  user-select: none;
}
.hero-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.hero-slide {
  min-width: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  flex-shrink: 0;
  box-sizing: border-box;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  transform: none !important;
}
.hero-banner-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}
.hero-banner-img {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: cover !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Interactive Banner Hotspots */
.hero-hotspots-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-hotspot-btn {
  position: absolute;
  pointer-events: auto;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}
.hero-hotspot-btn:hover {
  transform: scale(1.02);
}
/* Slide 1 Hotspots (hero1.png) */
.hero1-hotspot-shop {
  top: 80%;
  left: 8%;
  width: 19%;
  height: 10%;
}
.hero1-hotspot-explore {
  top: 3%;
  left: 3%;
  width: 14%;
  height: 12%;
}
/* Slide 2 Hotspots (hero2.png) */
.hero2-hotspot-shop {
  top: 67%;
  left: 4.8%;
  width: 16.5%;
  height: 10%;
}
.hero2-hotspot-product {
  top: 42%;
  left: 49%;
  width: 32%;
  height: 52%;
  border-radius: 20px;
}

/* Dynamic CMS Hero Custom Overlay */
.hero-custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 40px 8%;
  background: linear-gradient(90deg, rgba(0, 48, 47, 0.78) 0%, rgba(0, 122, 120, 0.45) 55%, transparent 100%);
  pointer-events: none;
  box-sizing: border-box;
}
.hero-custom-content {
  max-width: 640px;
  pointer-events: auto;
  color: #FFFFFF;
}
.hero-custom-badge {
  display: inline-block;
  background: #FFD038;
  color: #004D40;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.hero-custom-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-custom-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin-bottom: 22px;
}
.hero-custom-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-custom-actions .hero-btn-main {
  background: #FFD038 !important;
  color: #004D40 !important;
  border: none !important;
  font-weight: 700 !important;
  padding: 12px 28px !important;
  border-radius: 30px !important;
  box-shadow: 0 4px 15px rgba(255, 208, 56, 0.4) !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: transform 0.2s, background 0.2s !important;
}
.hero-custom-actions .hero-btn-main:hover {
  background: #FFE066 !important;
  transform: translateY(-2px) !important;
}
.hero-custom-actions .hero-btn-sub {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(8px) !important;
  padding: 12px 26px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: transform 0.2s, background 0.2s !important;
}
.hero-custom-actions .hero-btn-sub:hover {
  background: rgba(255, 255, 255, 0.3) !important;
}

@media (max-width: 768px) {
  .hero-custom-overlay {
    padding: 20px 5%;
    background: linear-gradient(180deg, rgba(0, 48, 47, 0.8) 0%, rgba(0, 122, 120, 0.65) 100%);
    align-items: flex-end;
    padding-bottom: 35px;
  }
  .hero-custom-title {
    font-size: 1.45rem;
  }
  .hero-custom-sub {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 14px;
  }
  .hero-custom-actions .hero-btn-main,
  .hero-custom-actions .hero-btn-sub {
    padding: 9px 18px !important;
    font-size: 0.82rem !important;
  }
}

/* Floating Frosted-Glass Navigation Arrows */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  color: #007a78;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slider-nav:hover {
  background: #007a78;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 122, 120, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.hero-prev {
  left: clamp(16px, 3vw, 36px);
}
.hero-next {
  right: clamp(16px, 3vw, 36px);
}

/* Bottom Capsule Dots Pagination */
.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 25;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
  padding: 6px 16px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.hero-slider-dot {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.hero-slider-dot-bar {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 122, 120, 0.3);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slider-dot.active .hero-slider-dot-bar {
  width: 32px;
  border-radius: 6px;
  background: #007a78;
  box-shadow: 0 2px 8px rgba(0, 122, 120, 0.4);
}
@media (max-width: 768px) {
  .hero-slider-nav {
    display: none;
  }
  .hero-slider-dots {
    bottom: 12px;
  }
}

/* ==========================================================================
   4. ELEVATED TRUST & FEATURE BAR
   ========================================================================== */
.trust-bar-section {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 122, 120, 0.08);
  padding: 18px 0;
  position: relative;
  z-index: 10;
}
.trust-bar-wrapper {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e6f8f6;
  color: #007a78;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0, 122, 120, 0.12);
  transition: transform 0.2s ease;
}
.trust-item:hover .trust-icon-box {
  transform: translateY(-2px);
  background: #007a78;
  color: #ffffff;
}
.trust-content {
  display: flex;
  flex-direction: column;
}
.trust-title {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.94rem;
  letter-spacing: 0.1px;
}
.trust-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 34px;
  background: rgba(0, 122, 120, 0.12);
}
.trust-script-box {
  font-family: var(--font-script), "Caveat", cursive;
  font-size: clamp(2.2rem, 2.7vw, 3.25rem);
  font-weight: 700;
  color: #007a78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  line-height: 1.15;
  transition: transform 0.25s ease;
  user-select: none;
}
.trust-script-box:hover {
  transform: scale(1.03);
}
.trust-script-quote {
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #005a58 0%, #00827f 50%, #26a69a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 14px rgba(0, 130, 127, 0.12);
}
.trust-script-heart {
  font-size: 1.25em;
  color: #e55353;
  display: inline-block;
  line-height: 1;
  filter: drop-shadow(0 2px 5px rgba(229, 83, 83, 0.3));
  animation: trustHeartBeat 2.2s ease-in-out infinite;
}
@keyframes trustHeartBeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.24);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.16);
  }
  70% {
    transform: scale(1);
  }
}
@media (max-width: 1400px) {
  .trust-bar-wrapper {
    justify-content: center;
    gap: 20px;
  }
  .trust-divider:last-of-type {
    display: none;
  }
  .trust-script-box {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
    padding-top: 10px;
  }
}
@media (max-width: 1200px) {
  .trust-divider {
    display: none;
  }
  .trust-bar-wrapper {
    justify-content: center;
    gap: 20px 28px;
  }
  .trust-script-box {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: clamp(2.1rem, 5vw, 2.75rem);
    padding-top: 8px;
  }
}
@media (max-width: 768px) {
  .trust-bar-section {
    padding: 12px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 122, 120, 0.08);
  }
  .trust-item,
  .trust-divider {
    display: none !important;
  }
  .trust-bar-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 16px;
    margin: 0 auto;
    width: 100%;
  }
  .trust-script-box {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: clamp(1.75rem, 6.2vw, 2.25rem) !important;
    padding: 2px 0;
    margin: 0 auto;
    display: inline-flex !important;
  }
}

@media (max-width: 768px) {
  .hero-slider-nav {
    display: none;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(226, 109, 146, 0.2) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero-content {
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
}
.hero-title {
  margin-bottom: 18px;
  color: var(--primary);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-media {
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-pack-img {
  max-height: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 30px rgba(0, 122, 120, 0.22));
  animation: float 4s ease-in-out infinite;
}
.hero-floating-card {
  position: absolute;
  background: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.card-float-1 {
  bottom: 30px;
  left: -20px;
}
.card-float-2 {
  top: 40px;
  right: -10px;
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}
.product-card-media {
  position: relative;
  background: #FFFFFF;
  padding: 16px 16px 12px;
  text-align: center;
  min-height: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.product-card-media a,
.product-card-media .product-card-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product-card-media img {
  max-height: 230px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition-normal);
}
.product-card:hover .product-card-media img {
  transform: scale(1.05);
}
.badge-size {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  background: var(--primary);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 122, 120, 0.25);
}
.badge-length {
  display: none;
}
.product-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}
.product-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.35;
}
.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}
.product-card-specs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--text-dark);
}
.droplet-bar {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.svg-drop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.svg-drop.drop-active {
  color: #00827f;
  filter: drop-shadow(0 1px 3px rgba(0, 130, 127, 0.4));
}
.svg-drop.drop-empty {
  color: #cbd5e1;
  opacity: 0.45;
}
.btn-product-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, #007a78 0%, #083b38 100%);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 122, 120, 0.25);
  transition: all 0.22s ease;
}
.btn-product-buy:hover {
  background: linear-gradient(135deg, #00a89d 0%, #007a78 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 122, 120, 0.4);
}

/* ==========================================================================
   5. BESPOKE STANDARD FEATURES & CARE SECTIONS
   ========================================================================== */
.standard-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.standard-feature-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 122, 120, 0.08);
  box-shadow: 0 4px 20px -2px rgba(9, 43, 40, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.standard-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px -4px rgba(9, 43, 40, 0.1);
  border-color: rgba(0, 122, 120, 0.2);
}
.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}
.standard-feature-card:hover .feature-icon-circle {
  transform: scale(1.08) rotate(3deg);
}
.rose-circle {
  background: #e6f8f6;
  color: #007a78;
  border: 1px solid rgba(0, 122, 120, 0.15);
}
.teal-circle {
  background: #e8f8f6;
  color: #00827f;
  border: 1px solid rgba(0, 130, 127, 0.15);
}
.green-circle {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, 0.15);
}
.wine-circle {
  background: #d4f4f0;
  color: #007a78;
  border: 1px solid rgba(157, 23, 77, 0.15);
}
.standard-feature-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 700;
}
.standard-feature-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.feature-cert-pill {
  align-self: flex-start;
  background: #f8fafc;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

/* Doctor Care Banner */
.doctor-care-banner {
  background: linear-gradient(135deg, #e6f8f6 0%, #f0fdfb 50%, #d4f4f0 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 122, 120, 0.12);
  padding: clamp(30px, 5vw, 55px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 8px 30px -4px rgba(9, 43, 40, 0.05);
}
.doctor-care-info h2 {
  margin-bottom: 16px;
  color: #092b28;
}
.doctor-care-info p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}
.doctor-board-seal {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 10px 30px -2px rgba(9, 43, 40, 0.08);
  border: 1px solid rgba(0, 122, 120, 0.12);
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}
.medical-seal-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #e6f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  border: 1.5px solid rgba(0, 122, 120, 0.2);
}
.doctor-board-title {
  font-weight: 800;
  color: #007a78;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.doctor-board-sub {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 18px;
  line-height: 1.5;
}
.doctor-cert-badge {
  background: #e6f8f6;
  color: #007a78;
  border: 1px solid rgba(0, 122, 120, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.doctor-board-footer {
  margin-top: 14px;
  font-size: 0.74rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
@media (max-width: 991px) {
  .doctor-care-banner {
    grid-template-columns: 1fr;
  }
}

/* Sustainability Metric Cards */
.sustainability-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.metric-card {
  background: #ffffff;
  padding: 26px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 130, 127, 0.12);
  box-shadow: 0 4px 16px rgba(0, 130, 127, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s ease;
}
.metric-card:hover {
  transform: translateY(-3px);
}
.metric-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f8f6;
  color: #00827f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.metric-card .counter-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: var(--font-sans);
}
.metric-card .counter-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

/* Blog Cover Badge */
.blog-card-img {
  background: linear-gradient(135deg, #e6f8f6 0%, #d4f4f0 100%);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-cover-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: #007a78;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 122, 120, 0.12);
  border: 1px solid rgba(0, 122, 120, 0.15);
}
.blog-cat-pill {
  background: #e6f8f6;
  color: #007a78;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.blog-read-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #94a3b8;
}
.blog-read-link {
  font-weight: 700;
  color: #007a78;
  font-size: 0.92rem;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.blog-read-link:hover {
  transform: translateX(3px);
}

/* Product Detail Page */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}
.product-gallery {
  position: sticky;
  top: 100px;
}
.product-main-view {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.product-main-view img {
  max-height: 360px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.product-main-view:hover img {
  transform: scale(1.1);
  cursor: zoom-in;
}
.product-info-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}
.product-spec-table tr {
  border-bottom: 1px solid var(--border-subtle);
}
.product-spec-table td {
  padding: 12px 6px;
}
.product-spec-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  width: 35%;
}
.buy-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.btn-marketplace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}
.btn-marketplace:hover {
  border-color: var(--primary);
  background: var(--rose-subtle);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Period Predictor Interactive UI */
.predictor-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.predictor-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
  background: #ffffff;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.predictor-results {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  margin-top: 10px;
}
.predictor-results.active {
  display: block;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.result-stat-box {
  background: var(--rose-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.result-stat-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.result-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Calendar Visualizer */
.cycle-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 16px;
  background: #ffffff;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.cal-day-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--text-muted);
  padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.cal-day.period {
  background: #e26d92;
  color: #ffffff;
}
.cal-day.fertile {
  background: #ede7f6;
  color: var(--accent-lavender);
  border: 1px solid #d1c4e9;
}
.cal-day.ovulation {
  background: var(--accent-lavender);
  color: #ffffff;
}

.medical-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--secondary);
  margin-top: 20px;
}

/* Testimonial Cards & Carousel */
.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.92rem;
}
.author-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.verified-tag {
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* FAQ Accordion */
.faq-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-question {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  color: var(--primary);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.25s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

/* Impact Counters */
.counter-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.counter-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.counter-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
}

/* Blog Cards */
.blog-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(
    135deg,
    var(--rose-subtle),
    var(--secondary-soft)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}

/* Multi-Column FMCG Footer */
.footer {
  background: #19050e;
  color: #e2d4dc;
  padding-top: 70px;
  font-size: 0.92rem;
}
.footer h4 {
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 20px;
}
.footer p,
.footer span,
.footer li,
.footer strong,
.footer div {
  color: #e2d4dc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #e2d4dc;
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}
.footer-newsletter p {
  color: #e2d4dc;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--transition-fast);
}
.social-btn:hover {
  background: var(--secondary);
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #e2d4dc;
}
.footer-legal a {
  color: #e2d4dc;
  margin-left: 16px;
  transition: color var(--transition-fast);
}
.footer-legal a:hover {
  color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 440px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  z-index: 9999;
  display: none;
  animation: slideUp 0.3s ease-out;
}
.cookie-banner.active {
  display: block;
}
.cookie-banner p {
  font-size: 0.86rem;
  color: var(--text-body);
  margin-bottom: 14px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}

/* Marketplace Buy Buttons & Buy Now Modal */
.buy-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.btn-marketplace {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
}
.btn-marketplace:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-marketplace.platform-amazon {
  background: #131921;
  color: #ffa41c;
  border-color: #232f3e;
}
.btn-marketplace.platform-amazon:hover {
  background: #232f3e;
  color: #ffffff;
}
.btn-marketplace.platform-flipkart {
  background: #2874f0;
  color: #ffffff;
}
.btn-marketplace.platform-flipkart:hover {
  background: #1259c3;
  color: #ffe500;
}
.btn-marketplace.platform-blinkit {
  background: #f8cb46;
  color: #0c831f;
}
.btn-marketplace.platform-blinkit:hover {
  background: #e8bc35;
  color: #086317;
}
.btn-marketplace.platform-zepto {
  background: #3e006a;
  color: #ffffff;
}
.btn-marketplace.platform-zepto:hover {
  background: #4f0087;
  color: #ff70a6;
}
.btn-marketplace.platform-store {
  background: var(--primary);
  color: #ffffff;
}
.btn-marketplace.platform-store:hover {
  background: #5e1636;
}

/* Buy Now Quick-Select Modal */
.buy-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease-out;
}
.buy-modal.active {
  display: flex;
}
.buy-modal-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 540px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 122, 120, 0.25);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border-light);
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.buy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}
.buy-modal-title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.buy-modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.buy-modal-close {
  background: #f3f4f6;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.buy-modal-close:hover {
  background: var(--rose-subtle);
  color: var(--primary);
}
.buy-modal-product-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-cream);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}
.buy-modal-product-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.buy-modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.buy-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border-light);
}
.buy-option-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.buy-badge-discreet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  text-align: center;
  justify-content: center;
}

/* Buy Links & Marketplace Options */
.buy-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.btn-marketplace {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}
.btn-marketplace:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.platform-amazon {
  background: linear-gradient(135deg, #1a222d 0%, #131921 100%);
  color: #ffffff !important;
  border-color: #37475a;
}
.platform-amazon:hover {
  background: linear-gradient(135deg, #232f3e 0%, #0f141a 100%);
  border-color: #ffa41c;
  color: #ffffff !important;
}

.platform-blinkit {
  background: linear-gradient(135deg, #ffde59 0%, #f5b014 100%);
  color: #111827 !important;
  border-color: #eab308;
}
.platform-blinkit:hover {
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  border-color: #0c831f;
  color: #000000 !important;
}

.platform-flipkart {
  background: linear-gradient(135deg, #2874f0 0%, #1a54b8 100%);
  color: #ffffff !important;
  border-color: #1a54b8;
}
.platform-flipkart:hover {
  background: linear-gradient(135deg, #1a54b8 0%, #0f3880 100%);
  border-color: #ffe500;
  color: #ffffff !important;
}

.platform-zepto {
  background: linear-gradient(135deg, #8b0e6c 0%, #083b38 100%);
  color: #ffffff !important;
  border-color: #8b0e6c;
}
.platform-zepto:hover {
  background: linear-gradient(135deg, #083b38 0%, #300024 100%);
  border-color: #ff70a6;
  color: #ffffff !important;
}

.platform-store {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: #ffffff !important;
  border-color: var(--primary);
}
.platform-store:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #4a0e2a 100%);
  color: #ffffff !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-float-1,
  .card-float-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .header-top {
    background: linear-gradient(90deg, #092b28 0%, #004d47 50%, #006e6b 100%);
    color: #ffffff;
    padding: 9px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(0, 191, 165, 0.25);
    position: relative;
    z-index: 1001;
  }
  .navbar-inner {
    height: 68px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-legal a {
    margin: 0 8px;
  }
  .section {
    padding: 50px 0;
  }
}

/* ==========================================================================
   Complete D2C E-Commerce Components: Cart Drawer, Search Modal & Cart Page
   ========================================================================== */

/* 1. Slide-out Cart Drawer */
.cart-drawer-wrapper {
  position: fixed;
  inset: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}
.cart-drawer-wrapper.open {
  visibility: visible;
  opacity: 1;
}
.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 43, 40, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  box-shadow: -8px 0 36px rgba(9, 43, 40, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.cart-drawer-wrapper.open .cart-drawer-panel {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 18px 22px;
  border-bottom: 1px solid #eef3f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
}
.cart-drawer-title-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #007a78;
  margin: 0;
}
.cart-drawer-count-badge {
  background: #e6f8f6;
  color: #007a78;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
}
.cart-drawer-close-btn {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #64748b;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cart-drawer-close-btn:hover {
  background: #f1f5f9;
  color: #092b28;
}

/* Free Shipping Goal Bar */
.cart-free-shipping-box {
  background: #f8fbfb;
  padding: 14px 22px;
  border-bottom: 1px solid #eef3f2;
}
.cart-free-shipping-text {
  font-size: 0.82rem;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.free-shipping-progress-bar {
  height: 6px;
  background: #e2eceb;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.free-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, #00bfa5 0%, #007a78 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
}

/* Drawer Items List */
.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-drawer-items::-webkit-scrollbar {
  width: 6px;
}
.cart-drawer-items::-webkit-scrollbar-thumb {
  background: #d4e5e3;
  border-radius: 4px;
}
.cart-item-row {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid #edf4f3;
  border-radius: 14px;
  background: #ffffff;
  transition: all 0.2s ease;
}
.cart-item-row:hover {
  border-color: #cce7e4;
  box-shadow: 0 4px 12px rgba(0, 122, 120, 0.05);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: #f4f8f7;
  flex-shrink: 0;
}
.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.3;
}
.cart-item-title:hover {
  color: #007a78;
}
.cart-item-remove-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
  font-size: 1rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.cart-item-remove-btn:hover {
  color: #ef4444;
}
.cart-item-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 3px 0 8px;
}
.cart-pack-badge {
  background: #e6f8f6;
  color: #007a78;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}
.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #d5ebe7;
  border-radius: 25px;
  overflow: hidden;
  background: #fafdfb;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: #007a78;
  transition: background 0.15s ease;
}
.cart-qty-btn:hover {
  background: #e6f8f6;
}
.cart-qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}
.cart-item-price {
  font-size: 0.96rem;
  font-weight: 800;
  color: #007a78;
}

/* Empty Drawer State */
.cart-empty-box {
  padding: 48px 20px;
  text-align: center;
  margin: auto;
}
.cart-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 14px;
  opacity: 0.8;
}
.cart-empty-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.cart-empty-desc {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

/* Drawer Footer */
.cart-drawer-footer {
  border-top: 1px solid #eef3f2;
  padding: 18px 22px;
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.03);
}
.cart-coupon-inline {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.cart-coupon-input {
  flex: 1;
  border: 1.5px solid #d5ebe7;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.84rem;
  text-transform: uppercase;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease;
}
.cart-coupon-input:focus {
  border-color: #007a78;
}
.cart-coupon-btn {
  background: #007a78;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cart-coupon-btn:hover {
  background: #006663;
}
.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #64748b;
  margin-bottom: 6px;
}
.cart-summary-line.total {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  margin-top: 10px;
  margin-bottom: 14px;
}
.cart-btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, #ffd038 0%, #f5ba13 100%);
  color: #092b28 !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(245, 186, 19, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 186, 19, 0.55);
}
.cart-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

/* 2. Live Search Modal */
.search-overlay-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(9, 43, 40, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  padding-left: 16px;
  padding-right: 16px;
  animation: modalFadeIn 0.2s ease;
}
.search-overlay-modal.open {
  display: flex;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-modal-container {
  width: 100%;
  max-width: 620px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(9, 43, 40, 0.25);
  overflow: hidden;
  border: 1px solid rgba(0, 122, 120, 0.15);
}
.search-input-header {
  padding: 16px 20px;
  border-bottom: 1px solid #edf4f3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
}
.search-input-icon {
  font-size: 1.25rem;
  color: #007a78;
}
.search-input-field {
  flex: 1;
  border: none;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  color: #0f172a;
  outline: none;
}
.search-close-icon-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
}
.search-close-icon-btn:hover {
  color: #0f172a;
}
.search-results-area {
  max-height: 420px;
  overflow-y: auto;
  padding: 12px 18px;
}
.search-popular-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 18px;
  background: #f8fbfb;
  border-top: 1px solid #edf4f3;
  font-size: 0.8rem;
  color: #64748b;
}
.search-tag-chip {
  background: #ffffff;
  border: 1px solid #d5ebe7;
  color: #007a78;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-tag-chip:hover {
  background: #007a78;
  color: #ffffff;
}
.search-result-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s ease;
}
.search-result-row:hover {
  background: #e6f8f6;
}
.search-result-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5f9;
}
.search-result-info {
  flex: 1;
}
.search-result-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.search-result-meta {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 2px;
}
.search-result-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #007a78;
}

/* 3. Dedicated /cart Page Layout */
.cart-page-section {
  padding: 40px 0 80px;
  background: #f5fbf9;
  min-height: 80vh;
}
.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.cart-table-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 130, 127, 0.05);
  border: 1px solid #eef3f2;
}
.cart-table-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #eef3f2;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
}
.cart-table-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr auto;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #f1f5f9;
}
.cart-table-product {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-table-thumb {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  object-fit: cover;
  background: #f4f8f7;
  border: 1px solid #edf4f3;
}
.cart-summary-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 4px 22px rgba(0, 130, 127, 0.07);
  border: 1px solid #eef3f2;
  position: sticky;
  top: 100px;
}

/* 4. Global Toast Notification */
.mai-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100000;
  background: #092b28;
  color: #ffffff;
  border-left: 4px solid #ffd038;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.mai-toast.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cart-page-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .cart-table-header {
    display: none;
  }
  .cart-table-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cart-drawer-panel {
    max-width: 100%;
  }
}

/* Rich Cart Drawer Component Styles */
.cart-drawer-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-drawer-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin: 0;
}
.cart-drawer-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cart-drawer-close:hover {
  background: #f1f5f9;
  color: #092b28;
}
.free-shipping-unlocked,
.free-shipping-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #334155;
  margin-bottom: 8px;
}
.shipping-progress-track {
  height: 6px;
  background: #e2eceb;
  border-radius: 10px;
  overflow: hidden;
}
.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00bfa5 0%, #007a78 100%);
  border-radius: 10px;
  transition: width 0.4s ease;
}
.shipping-progress-fill.unlocked {
  background: linear-gradient(90deg, #ffd038 0%, #00bfa5 100%);
}
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
}
.cart-drawer-empty {
  padding: 40px 20px;
  text-align: center;
  margin: auto;
}
.cart-empty-icon-wrap {
  color: #007a78;
  margin-bottom: 14px;
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f8f7;
  flex-shrink: 0;
  display: block;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart-item-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.3;
}
.cart-item-name:hover {
  color: #007a78;
}
.cart-pack-chip {
  background: #e6f8f6;
  color: #007a78;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}
.cart-length-chip {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}
.cart-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #d5ebe7;
  border-radius: 25px;
  overflow: hidden;
  background: #fafdfb;
}
.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: #007a78;
  transition: background 0.15s ease;
}
.qty-btn:hover {
  background: #e6f8f6;
}
.qty-display {
  min-width: 26px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0f172a;
}
.cart-item-price-col {
  text-align: right;
}
.cart-item-total {
  font-size: 0.96rem;
  font-weight: 800;
  color: #007a78;
  display: block;
}
.cart-item-unit {
  font-size: 0.72rem;
  color: #94a3b8;
}
.applied-coupon-pill {
  background: #e6f8f6;
  border: 1px dashed #007a78;
  color: #007a78;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-remove-coupon {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #ef4444;
  cursor: pointer;
  padding: 0 4px;
}
.coupon-input-group {
  display: flex;
  gap: 8px;
}
.coupon-input-group input {
  flex: 1;
  border: 1.5px solid #d5ebe7;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.84rem;
  text-transform: uppercase;
  font-weight: 600;
  outline: none;
}
.coupon-input-group input:focus {
  border-color: #007a78;
}
.coupon-input-group button {
  background: #007a78;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.coupon-input-group button:hover {
  background: #006663;
}
.coupon-chips-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.coupon-chip {
  background: #f8fbfb;
  border: 1px solid #d5ebe7;
  color: #007a78;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.coupon-chip:hover {
  background: #007a78;
  color: #ffffff;
}
.cart-breakdown {
  margin: 14px 0;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #64748b;
  margin-bottom: 6px;
}
.discount-row {
  color: #00897b;
  font-weight: 700;
}
.breakdown-divider {
  border-top: 1px dashed #e2e8f0;
  margin: 10px 0;
}
.total-row {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f172a;
}
.final-total-amount {
  color: #007a78;
}
.cart-trust-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.74rem;
  color: #64748b;
  margin-bottom: 12px;
}
.cart-drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn-drawer-checkout {
  width: 100%;
  background: linear-gradient(135deg, #ffd038 0%, #f5ba13 100%);
  color: #092b28 !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 13px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245, 186, 19, 0.4);
  transition: all 0.25s ease;
}
.btn-drawer-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 186, 19, 0.55);
}
.checkout-total-pill {
  background: rgba(9, 43, 40, 0.15);
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 0.88rem;
}
.btn-drawer-view-cart {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
  color: #007a78;
  text-decoration: none;
  padding: 6px;
}
.btn-drawer-view-cart:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Niine-Inspired Features: Retail Bar, Range Switcher, Resealable Spotlight
   & Dual Wellness Hub (Period Predictor + Ask Gynac)
   ========================================================================== */

/* 1. Omnichannel Retail & Direct Brand Order Bar (Luxury Redesign) */
.retail-channels-section {
  background: radial-gradient(circle at 50% 10%, #0d3834 0%, #062220 70%, #041716 100%);
  color: #ffffff;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 191, 165, 0.2);
  border-bottom: 1px solid rgba(0, 191, 165, 0.15);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.retail-channels-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.retail-channels-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.retail-beacon-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 208, 56, 0.12);
  border: 1px solid rgba(255, 208, 56, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd038;
  box-shadow: 0 0 0 0 rgba(255, 208, 56, 0.7);
  animation: pulseGold 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulseGold {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 208, 56, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 208, 56, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 208, 56, 0);
  }
}
.retail-beacon-text {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #ffd038;
  text-transform: uppercase;
}
.retail-headline-text {
  font-size: 0.96rem;
  color: #e2f8f5;
  line-height: 1.4;
  letter-spacing: 0.1px;
}
.retail-headline-text strong {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.retail-pills-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.retail-card-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.retail-card-btn:hover {
  transform: translateY(-3px) scale(1.01);
}
.retail-card-btn:active {
  transform: translateY(0) scale(0.99);
}

/* Button 1: Gold Luxury Direct Store */
.btn-store-gold {
  background: linear-gradient(135deg, #ffe885 0%, #ffca28 45%, #ffa000 100%);
  color: #092b28;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 26px -2px rgba(255, 179, 0, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.8);
}
.btn-store-gold:hover {
  box-shadow: 0 12px 32px 0 rgba(255, 179, 0, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}
.retail-btn-icon-wrap.icon-gold {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(9, 43, 40, 0.12);
  border: 1.5px solid rgba(9, 43, 40, 0.18);
  color: #062320;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Shimmer Animation for Store */
.retail-btn-shimmer {
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  animation: storeShine 3.2s infinite;
  pointer-events: none;
}
@keyframes storeShine {
  0% { left: -120%; }
  35%, 100% { left: 160%; }
}

/* Button 2: Authentic WhatsApp Emerald */
.btn-wa-green {
  background: linear-gradient(135deg, #25d366 0%, #1ebe5d 50%, #128c7e 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 26px -2px rgba(37, 211, 102, 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
.btn-wa-green:hover {
  box-shadow: 0 12px 32px 0 rgba(37, 211, 102, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}
.retail-btn-icon-wrap.icon-green {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Text Content & Badges */
.retail-btn-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.retail-btn-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.2;
}
.btn-store-gold .retail-btn-title {
  color: #062623;
}
.btn-wa-green .retail-btn-title {
  color: #ffffff;
}
.retail-tag-highlight {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  background: #092b28;
  color: #ffd038;
  padding: 1.5px 6px;
  border-radius: 6px;
  line-height: 1;
}
.retail-wa-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  display: inline-block;
  animation: waPulse 1.6s infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.retail-btn-desc {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}
.btn-store-gold .retail-btn-desc {
  color: #1a423e;
}
.btn-wa-green .retail-btn-desc {
  color: #e6fffa;
}
.retail-btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 4px;
  transition: transform 0.22s ease;
}
.btn-store-gold .retail-btn-arrow {
  background: rgba(9, 43, 40, 0.12);
  color: #092b28;
}
.btn-wa-green .retail-btn-arrow {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.retail-card-btn:hover .retail-btn-arrow {
  transform: translateX(3px);
}

/* Responsive Rules for Order Bar */
@media (max-width: 991px) {
  .retail-channels-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
  }
  .retail-channels-label {
    align-items: center;
    text-align: center;
  }
  .retail-headline-text {
    font-size: 0.92rem;
  }
  .retail-pills-row {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .retail-channels-section {
    padding: 16px 0;
  }
  .retail-pills-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .retail-card-btn {
    width: 100%;
    padding: 12px 14px;
    justify-content: space-between;
  }
  .retail-btn-content {
    flex: 1;
    text-align: left;
    margin-left: 4px;
  }
  .retail-btn-desc {
    white-space: normal;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   Checkout & Catalog Responsive Utilities
   ========================================================================== */
.checkout-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: flex-start;
}
.checkout-form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-field-full {
  grid-column: span 2;
}
.checkout-summary-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .checkout-main-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .checkout-summary-col {
    position: static !important;
    top: auto !important;
  }
}
@media (max-width: 600px) {
  .checkout-form-grid-2col {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .checkout-field-full {
    grid-column: span 1 !important;
  }
}

/* Product Catalog Filter Tabs & Mobile Grid */
@media (max-width: 768px) {
  .product-filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }
  .product-filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.82rem !important;
    padding: 7px 15px !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .product-card-media {
    height: 240px;
    min-height: 240px;
  }
  .product-card-media img {
    max-height: 205px;
  }
}

/* 2. Range Category Tabs & Pack Switcher */
.range-nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.range-tab-btn {
  background: #ffffff;
  border: 1.5px solid #d5ebe7;
  color: #334155;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.range-tab-btn:hover {
  background: #e6f8f6;
  border-color: #007a78;
  color: #007a78;
}
.range-tab-btn.active {
  background: #007a78;
  border-color: #007a78;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 122, 120, 0.28);
}
.badge-disposal-chip {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(9, 43, 40, 0.82);
  backdrop-filter: blur(4px);
  color: #ffd038;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}
.card-pack-selector {
  margin: 10px 0 14px;
  background: #f8fbfb;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #edf4f3;
}
.pack-selector-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pack-chips-group {
  display: flex;
  gap: 6px;
}
.pack-opt-chip {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid #d5ebe7;
  border-radius: 8px;
  padding: 5px 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pack-opt-chip span {
  font-size: 0.72rem;
  color: #007a78;
  font-weight: 800;
}
.pack-opt-chip:hover {
  border-color: #007a78;
  background: #e6f8f6;
}
.pack-opt-chip.active {
  background: #007a78;
  border-color: #007a78;
  color: #ffffff;
}
.pack-opt-chip.active span {
  color: #ffd038;
}
.btn-card-add-cart {
  font-weight: 800;
  background: #e6f8f6;
  color: #007a78;
  border: 1.5px solid rgba(0, 122, 120, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-card-add-cart:hover {
  background: #007a78;
  color: #ffffff;
}

/* 3. Signature Resealable Pack & Disposal Bags Showcase */
.innovation-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.innovation-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.innovation-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.innovation-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e6f8f6;
  color: #007a78;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 122, 120, 0.1);
}
.innovation-card-preview {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #d5ebe7;
  box-shadow: 0 16px 40px rgba(0, 122, 120, 0.12);
  position: relative;
  text-align: center;
}
.preview-badge-top {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, #ffd038 0%, #f5ba13 100%);
  color: #092b28;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(245, 186, 19, 0.4);
}
.innovation-hero-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 10px auto 20px;
  display: block;
  border-radius: 16px;
}
.preview-callout-box {
  background: #f8fbfb;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #edf4f3;
}
.callout-pill {
  font-size: 0.76rem;
  font-weight: 800;
  color: #007a78;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.callout-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 4px;
}

/* 4. Dual Cycle Wellness Hub (Period Predictor + Ask Gynac) */
.dual-wellness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.wellness-interactive-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px;
  border: 1px solid #d5ebe7;
  box-shadow: 0 8px 28px rgba(0, 130, 127, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wellness-interactive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 130, 127, 0.12);
}
@media (max-width: 640px) {
  .wellness-interactive-card {
    padding: 22px 16px;
    border-radius: 16px;
  }
}
.wellness-badge-top {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #007a78;
  background: #e6f8f6;
  padding: 3px 10px;
  border-radius: 15px;
}
.wellness-icon-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.wellness-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wellness-icon-circle.gold {
  background: #fef3c7;
  color: #d97706;
}
.wellness-icon-circle.teal {
  background: #ccfbf1;
  color: #0d9488;
}
.predictor-quick-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0 24px;
}
.quick-step-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #334155;
  font-weight: 600;
}
.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e6f8f6;
  color: #007a78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.gynac-topics-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 20px;
}
.topic-chip {
  background: #f8fbfb;
  border: 1px solid #d5ebe7;
  color: #007a78;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.doctor-badge-quote {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #007a78;
  font-weight: 700;
  margin-bottom: 24px;
  padding: 8px 12px;
  background: #e6f8f6;
  border-radius: 10px;
}
.wellness-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid #edf4f3;
}
.wellness-footnote {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}
.wellness-link-sub {
  font-size: 0.86rem;
  font-weight: 700;
  color: #007a78;
  text-decoration: none;
}
.wellness-link-sub:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .innovation-showcase-grid {
    grid-template-columns: 1fr;
  }
  .dual-wellness-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Smooth Working & High-Fidelity Micro-Interactions
   ========================================================================== */

/* Smooth Product Grid & Filter Transitions */
#homeProductGrid {
  transition: min-height 0.3s ease;
}
#homeProductGrid .product-card {
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: opacity, transform;
}
#homeProductGrid .product-card.card-hidden {
  display: none !important;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
}
#homeProductGrid .product-card.card-entering {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
}

.card-price-banner {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 12px;
  padding: 6px 10px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #eef3f2;
}
.card-price-main {
  font-size: 1.18rem;
  font-weight: 800;
  color: #007a78;
  letter-spacing: -0.2px;
}
.card-price-sub {
  font-size: 0.74rem;
  font-weight: 600;
  color: #64748b;
}

/* Micro-feedback on Button Add to Cart */
.btn-card-add-cart {
  position: relative;
  overflow: hidden;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-card-add-cart:active {
  transform: scale(0.96);
}
.btn-card-add-cart.btn-added-success {
  background: #007a78 !important;
  color: #ffffff !important;
  border-color: #007a78 !important;
  box-shadow: 0 4px 14px rgba(0, 122, 120, 0.35) !important;
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: btnRotate 0.65s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}
@keyframes btnRotate {
  to { transform: rotate(360deg); }
}

/* Pack Option Chip Active Tap Feedback */
.pack-opt-chip {
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.pack-opt-chip:active {
  transform: scale(0.93);
}
.pack-opt-chip.active {
  box-shadow: 0 3px 8px rgba(0, 122, 120, 0.22);
}

/* Smooth Cycle Predictor Widget */
.predictor-input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.predictor-input:focus {
  outline: none;
  border-color: #007a78 !important;
  box-shadow: 0 0 0 3px rgba(0, 122, 120, 0.15) !important;
}
.predictor-result-box {
  background: linear-gradient(135deg, #f0fbf9 0%, #ffffff 100%);
  border: 1.5px solid #007a78;
  border-radius: 14px;
  padding: 16px;
  margin: 14px 0;
  box-shadow: 0 8px 24px rgba(0, 122, 120, 0.08);
  animation: fadeInSmooth 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes fadeInSmooth {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gynecologist Modal & Backdrops */
.modal-smooth-wrapper {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease, opacity 0.25s ease;
}
.modal-smooth-wrapper.open {
  visibility: visible;
  opacity: 1;
}
.modal-smooth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 43, 40, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.modal-smooth-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(9, 43, 40, 0.25);
  padding: 28px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.modal-smooth-wrapper.open .modal-smooth-card {
  transform: translateY(0) scale(1);
}
.modal-smooth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f1f5f9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}
.modal-smooth-close:hover {
  background: #007a78;
  color: #ffffff;
  transform: rotate(90deg);
}

/* ==========================================================================
   Redesigned Real Stories & Social Proof Section
   ========================================================================== */
.real-stories-section {
  background: linear-gradient(180deg, #FAFDFB 0%, #F0FBF9 50%, #FAFDFB 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.real-stories-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 208, 56, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.real-stories-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 122, 120, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Trust Rating Banner */
.stories-trust-banner {
  background: #ffffff;
  border: 1.5px solid #d5ebe7;
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow: 0 10px 30px rgba(0, 122, 120, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.stories-rating-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stories-big-score {
  font-size: 2.8rem;
  font-weight: 800;
  color: #004d40;
  line-height: 1;
  letter-spacing: -1px;
}
.stories-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stories-stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
}
.stories-count-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}
.stories-metrics-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stories-metric-item {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #eef3f2;
  padding-left: 18px;
}
.stories-metric-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #007a78;
}
.stories-metric-desc {
  font-size: 0.76rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Filter Tabs */
.stories-filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.story-tab-btn {
  background: #ffffff;
  border: 1.5px solid #d5ebe7;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.story-tab-btn:hover {
  border-color: #007a78;
  color: #007a78;
  background: #e6f8f6;
  transform: translateY(-1px);
}
.story-tab-btn.active {
  background: #007a78;
  color: #ffffff;
  border-color: #007a78;
  box-shadow: 0 4px 14px rgba(0, 122, 120, 0.25);
}

/* 3-Column Stories Grid & Slide Carousel */
.stories-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Slide-based stories carousel */
.stories-slider-wrap {
  position: relative;
  margin-bottom: 48px;
  padding: 0 54px;
}
.stories-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  padding: 12px 2px 24px;
}
.stories-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  user-select: none;
}
.story-slide-item {
  flex: 0 0 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  min-height: 100%;
  box-sizing: border-box;
}
.stories-nav-btn {
  position: absolute;
  top: calc(50% - 24px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #007A78;
  color: #007A78;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 122, 120, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  outline: none;
}
.stories-nav-btn:hover:not(:disabled) {
  background: #007A78;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 122, 120, 0.25);
}
.stories-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: #cbd5e1;
  color: #94a3b8;
  box-shadow: none;
}
.stories-prev-btn {
  left: 0;
}
.stories-next-btn {
  right: 0;
}
.stories-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.stories-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.stories-dot:hover {
  background: #26a69a;
}
.stories-dot.active {
  background: #007a78;
  width: 28px;
}

.story-card-item {
  background: #ffffff;
  border: 1.5px solid #eef4f3;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 6px 20px rgba(0, 122, 120, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
}
.story-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 122, 120, 0.12);
  border-color: rgba(0, 122, 120, 0.3);
}
.story-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.story-pill-verified {
  background: #e6f8f6;
  color: #004d40;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(0, 122, 120, 0.2);
}
.story-tag-badge {
  background: #fff8e1;
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.story-headline {
  font-size: 1.05rem;
  font-weight: 800;
  color: #004d40;
  line-height: 1.4;
  margin-bottom: 10px;
}
.story-quote-body {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}
.story-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.story-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #007a78 0%, #26a69a 100%);
  color: #ffd038;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0, 122, 120, 0.25);
}
.story-author-details {
  flex-grow: 1;
}
.story-author-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: #092b28;
}
.story-author-meta {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 2px;
}
.story-product-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #007a78;
  margin-top: 4px;
  background: #f0fbf9;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid #d5ebe7;
  text-decoration: none;
}
.story-product-chip:hover {
  text-decoration: underline;
}

/* Share Your Story CTA Card */
.story-share-cta-card {
  background: linear-gradient(135deg, #092b28 0%, #004d40 100%);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(9, 43, 40, 0.2);
  flex-wrap: wrap;
}
.story-share-cta-text h3 {
  color: #ffffff !important;
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.story-share-cta-text p {
  color: #d5ebe7;
  font-size: 0.92rem;
  margin: 0;
  max-width: 540px;
}
.story-share-cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .stories-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-slide-item {
    flex: 0 0 calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
  }
  .stories-trust-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .stories-metric-item {
    border-left: none;
    border-top: 2px solid #eef3f2;
    padding-left: 0;
    padding-top: 12px;
  }
}
@media (max-width: 640px) {
  .stories-cards-grid {
    grid-template-columns: 1fr;
  }
  .stories-slider-wrap {
    padding: 0 0 54px;
  }
  .story-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .stories-nav-btn {
    top: auto;
    bottom: 0;
  }
  .stories-prev-btn {
    left: calc(50% - 64px);
  }
  .stories-next-btn {
    right: calc(50% - 64px);
  }
  .stories-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
  }
  .story-share-cta-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   Dynamic Impact Counter Section (Admin Panel)
   ============================================ */
.impact-counter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #092B28 0%, #004D40 40%, #00695C 100%);
  position: relative;
  overflow: hidden;
}

.impact-counter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,208,56,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.impact-counter-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(0,200,180,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.impact-counter-section .section-header {
  position: relative;
  z-index: 1;
}

.impact-counter-section .section-header h2 {
  color: #FFFFFF;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.impact-counter-section .section-header p {
  color: #B2DFDB;
  font-size: 0.92rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.impact-counters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}

.impact-counter-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.impact-counter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.impact-counter-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.impact-counter-card:hover::before {
  opacity: 1;
}

.impact-counter-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}

.impact-counter-card:hover .impact-counter-icon {
  transform: scale(1.1) rotate(-3deg);
}

.impact-counter-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.impact-counter-value .counter-number {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.impact-counter-suffix {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFD038;
  line-height: 1;
}

.impact-counter-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #B2DFDB;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* Responsive: Impact Counter */
@media (max-width: 768px) {
  .impact-counter-section {
    padding: 44px 0;
  }

  .impact-counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .impact-counter-card {
    padding: 22px 14px;
    border-radius: 14px;
  }

  .impact-counter-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .impact-counter-icon svg {
    width: 22px;
    height: 22px;
  }

  .impact-counter-value .counter-number {
    font-size: 1.6rem;
  }

  .impact-counter-suffix {
    font-size: 1.1rem;
  }

  .impact-counter-label {
    font-size: 0.78rem;
  }
}

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

  .impact-counter-card {
    padding: 18px 10px;
  }

  .impact-counter-value .counter-number {
    font-size: 1.4rem;
  }
}


