/* ============================================
   HERBALIST – styles.css
   Production-ready CSS matching screenshots
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --dark-green:    #1e3d2f;
  --forest-green:  #1a3428;
  --medium-green:  #2d6a45;
  --light-green:   #3d8a5a;
  --accent-yellow: #c9a227;
  --accent-gold:   #d4ab2d;
  --cream:         #f5f4e8;
  --cream-light:   #f8f7ee;
  --white:         #ffffff;
  --text-dark:     #1a2e1f;
  --text-gray:     #6b7c6b;
  --text-light:    #8a9a8a;
  --star-yellow:   #f0b429;
  --card-shadow:   0 4px 24px rgba(0,0,0,0.08);
  --border-light:  #e4e8e4;
  --badge-green:   #1e4d35;

  --font-main:     'Poppins', sans-serif;
  --font-alt:      'Nunito', sans-serif;

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     24px;
  --radius-pill:   50px;

  --transition:    all 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--medium-green); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-alt);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.logo-herba { color: var(--text-dark); }
.logo-list  { color: var(--medium-green); }
.logo-white .logo-herba { color: var(--white); }
.logo-white .logo-list  { color: var(--accent-yellow); }

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 4px 0;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link:hover, .nav-link.active { color: var(--medium-green); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--medium-green);
  border-radius: 2px;
}
.caret { font-size: 0.7rem; opacity: 0.7; }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--cream);
  color: var(--medium-green);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-bar {
  display: flex;
  align-items: center;
  background: #f5f5f0;
  border-radius: var(--radius-pill);
  padding: 0 6px 0 18px;
  height: 42px;
  min-width: 240px;
  border: 1px solid #e8e8e0;
}
.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
}
.search-bar input::placeholder { color: var(--text-light); }
.search-btn {
  width: 32px;
  height: 32px;
  background: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  flex-shrink: 0;
}
.search-btn:hover { background: var(--medium-green); }
.search-btn svg { width: 14px; height: 14px; }

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  transition: var(--transition);
}
.icon-btn:hover { background: var(--accent-yellow); color: white; }
.icon-btn svg { width: 18px; height: 18px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  position: relative;
}

/* Hero Left */
.hero-left {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 60px 60px 60px 80px;
  position: relative;
}
.hero-content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-desc {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent-yellow);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent-yellow);
}

.hero-support {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.support-icon {
  width: 48px;
  height: 48px;
  background: var(--medium-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.support-icon svg { width: 20px; height: 20px; }
.support-text { font-size: 0.8rem; color: var(--text-gray); }
.support-label { margin-bottom: 6px; font-weight: 500; color: var(--text-dark); line-height: 1.5; }
.support-phone { font-size: 0.85rem; }
.support-phone strong { color: var(--text-dark); font-size: 0.9rem; }

/* Hero Right */
.hero-right {
  background: var(--dark-green);
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 60px 60px 120px;
}
.hero-product-img {
  position: absolute;
  left: -175px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  z-index: 5;
  pointer-events: none;
}
.hero-product-img img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-product-info {
  position: relative;
  z-index: 10;
  color: white;
  padding-left: 50px;
}
.hero-dots {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dot {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active, .dot:hover { color: white; }
.product-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.product-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--accent-yellow);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
/* Override check-icon for info section (dark text) */
.featured-detail .check-icon,
.therapeutic-section .check-icon {
  background: var(--accent-yellow);
}
.info-section .product-features li { color: var(--text-dark); }

.about-product-link {
  display: inline-block;
  color: var(--accent-yellow);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 2px solid var(--accent-yellow);
  padding-bottom: 2px;
  transition: var(--transition);
}
.about-product-link:hover { opacity: 0.8; }

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
  padding: 80px 60px;
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* Product Card */
.product-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.product-card:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-4px);
}
.card-image-wrap {
  position: relative;
  height: 200px;
  background: #f8f8f4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-image-wrap img { transform: scale(1.06); }

.badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--badge-green);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .card-actions {
  opacity: 1;
  transform: translateX(0);
}
.card-action-btn {
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: var(--text-dark);
  transition: var(--transition);
  border: 1px solid #eee;
}
.card-action-btn:hover { background: var(--accent-yellow); color: white; border-color: var(--accent-yellow); }
.card-action-btn svg { width: 14px; height: 14px; }

.card-body {
  padding: 18px 20px 20px;
}
.stars {
  color: var(--star-yellow);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.card-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.card-specs {
  font-size: 0.78rem;
  color: var(--text-gray);
  line-height: 1.5;
}
.card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 10px 0 14px;
}
.card-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 14px;
}
.price-old {
  font-size: 0.9rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.card-price-row .card-price { margin: 0; }

.btn-cart {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--dark-green);
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-green);
  background: transparent;
  transition: var(--transition);
}
.btn-cart:hover { background: var(--dark-green); color: white; }

/* View More Button Row */
.card-actions-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.btn-view-more {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-yellow);
  border: 1.5px solid var(--accent-yellow);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-view-more:hover {
  background: var(--accent-yellow);
  color: var(--white);
}

/* Products Promo Row */
.products-promo-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  align-items: start;
}
.products-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Best Offers Block */
.best-offers-block {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
}
.best-offers-content { flex: 1; z-index: 2; }
.best-offers-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  max-width: 240px;
}
.best-offers-block p {
  font-size: 0.83rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}
.countdown-timer {
  display: flex;
  gap: 10px;
}
.timer-unit {
  background: var(--dark-green);
  color: white;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
  min-width: 58px;
}
.timer-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-alt);
  line-height: 1;
}
.timer-label {
  display: block;
  font-size: 0.65rem;
  opacity: 0.75;
  margin-top: 4px;
  text-transform: capitalize;
}
.best-offers-img {
  width: 160px;
  flex-shrink: 0;
  opacity: 0.85;
}
.best-offers-img img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
  padding: 80px 60px;
  background: var(--white);
}
.info-text-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.info-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 20px;
}
.info-body {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.75;
}
.info-right-img img {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 72px;
  padding: 0 8px;
}
.stat-item { text-align: left; }
.stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--medium-green);
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-alt);
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Featured Product Detail */
.featured-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.featured-detail-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.featured-detail-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.featured-detail-info {}
.featured-detail-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 14px;
}
.stars-gold {
  color: var(--star-yellow);
  font-size: 1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.review-count {
  color: var(--text-gray);
  font-size: 0.85rem;
}
.featured-detail-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 24px;
}
.detail-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
}
.detail-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* ============================================
   BANNER / QUOTE SECTION
   ============================================ */
.banner-quote {
  background: var(--dark-green);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}
.banner-center {
  text-align: center;
  max-width: 680px;
  z-index: 2;
}
.banner-logo-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 24px;
}
.banner-logo-icon svg { width: 100%; height: 100%; }
.banner-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  line-height: 1.65;
}
.banner-leaves {
  width: 120px;
  flex-shrink: 0;
  opacity: 0.5;
}
.banner-leaves svg { width: 100%; height: auto; }

/* ============================================
   THERAPEUTIC EFFECTS SECTION
   ============================================ */
.therapeutic-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.1fr;
  gap: 50px;
  padding: 80px 60px;
  background: var(--white);
  align-items: center;
}
.therapeutic-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 16px;
}
.therapeutic-desc {
  font-size: 0.88rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 28px;
}
.molecular-diagram {
  margin-top: 28px;
  opacity: 0.7;
}
.molecular-diagram svg { width: 200px; height: auto; }

.therapeutic-center img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.therapeutic-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.benefit-text p {
  font-size: 0.83rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-green);
  color: rgba(255,255,255,0.85);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding: 60px 60px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-brand-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 16px 0 24px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: white;
}
.social-link svg { width: 15px; height: 15px; }

.footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

/* Footer Contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.contact-icon svg { width: 16px; height: 16px; }

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a::before {
  content: '▸';
  color: var(--accent-yellow);
  font-size: 0.7rem;
}
.footer-links li a:hover { color: white; padding-left: 4px; }

/* Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.instagram-grid img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  filter: brightness(0.85);
}
.instagram-grid img:hover { filter: brightness(1.1); transform: scale(1.04); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.15);
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.payment-icon {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
}
.payment-icon.visa { color: #1a1f71; letter-spacing: 1px; font-style: italic; font-size: 0.85rem; }
.payment-icon.mastercard { background: transparent; padding: 0; }
.payment-icon.mastercard svg { width: 38px; height: 24px; }
.payment-icon.paypal { color: #003087; font-size: 0.78rem; }
.payment-icon.bitcoin { background: transparent; padding: 0; }
.payment-icon.bitcoin svg { width: 28px; height: 28px; }

/* ============================================
   FLOATING CART
   ============================================ */
.floating-cart {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
  z-index: 999;
}
.floating-cart:hover { background: var(--accent-yellow); transform: scale(1.1); }
.floating-cart svg { width: 20px; height: 20px; }

/* ============================================
   CART COUNT BADGE (navbar)
   ============================================ */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

.icon-btn { position: relative; }

/* ============================================
   CART OVERLAY
   ============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   CART SIDEBAR (slides from right)
   ============================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: var(--white);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border-light);
}

.cart-header h2 {
  font-family: var(--font-alt);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cart-close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  color: #888;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.cart-close:hover { background: #f0f0f0; color: #333; }

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

.cart-items::-webkit-scrollbar { width: 4px; }
.cart-items::-webkit-scrollbar-track { background: var(--cream-light); }
.cart-items::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--border-light);
  transition: background 0.15s;
}

.cart-item:hover { background: var(--cream-light); }

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--medium-green);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border-light);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition);
  line-height: 1;
}

.qty-btn:hover { background: var(--cream); border-color: #bbb; }

.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 20px;
  text-align: center;
}

.remove-btn {
  font-size: 0.78rem;
  font-weight: 500;
  color: #999;
  background: none;
  border: none;
  border-bottom: 1px solid #999;
  cursor: pointer;
  padding-bottom: 1px;
  transition: var(--transition);
  white-space: nowrap;
}

.remove-btn:hover { color: #e53e3e; border-color: #e53e3e; }

.cart-footer {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--border-light);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.cart-total span:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--accent-yellow);
  color: var(--text-dark);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: var(--transition);
}

.btn-checkout:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large Desktop */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .therapeutic-section { grid-template-columns: 1fr 1fr; }
  .therapeutic-center { display: none; }
}

/* Tablet */
@media (max-width: 900px) {
  .navbar { padding: 0 24px; }
  .main-nav { gap: 18px; }
  .search-bar { min-width: 160px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 32px; }
  .hero-right {
    padding: -60px 32px 60px 180px;
    min-height: 440px;
  }
  .hero-product-img { left: -80px; width: 240px; }
  .info-text-block { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .featured-detail { grid-template-columns: 1fr; }
  .featured-detail-img img { height: 280px; }
  .featured-products { padding: 60px 24px; }
  .info-section { padding: 60px 24px; }
  .footer-inner { padding: 48px 24px; grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { padding: 20px 24px; }
  .products-promo-row { grid-template-columns: 1fr; }
  .products-sub-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 600px) {
  .navbar { padding: 0 16px; height: 64px; }
  .main-nav { display: none; }
  .search-bar { display: none; }
  .nav-left { gap: 16px; }
  .hero-left { padding: 40px 20px; }
  .hero-title { font-size: 1.8rem; }
  .hero-right { padding: 40px 20px 40px 160px; min-height: 360px; }
  .hero-product-img { left: -50px; width: 180px; }
  .hero-product-info { padding-left: 20px; }
  .product-title { font-size: 1.4rem; }
  .products-grid { grid-template-columns: 1fr; }
  .products-sub-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 2rem; }
  .therapeutic-section { grid-template-columns: 1fr; padding: 50px 20px; }
  .banner-quote { padding: 50px 20px; }
  .banner-leaves { display: none; }
  .footer-inner { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding: 20px; }
  .countdown-timer { flex-wrap: wrap; }
  .best-offers-img { display: none; }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content, .hero-product-info {
  animation: fadeInUp 0.7s ease both;
}
.hero-product-info { animation-delay: 0.18s; }

/* Smooth scroll progress hint */
.product-card, .benefit-item, .stat-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
