/* =====================================================
   APHRODITE GO NATURAL — style.css (IMPROVED)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800;900&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --green:       #43A047;
  --green-light: #8BC34A;
  --green-pale:  #e8f5e9;
  --blue:        #1E4E9D;
  --text:        #263238;
  --text-soft:   #555;
  --white:       #ffffff;
  --bg:          #F8FAFC;
  --radius:      16px;
  --shadow:      0 8px 32px rgba(46,125,50,0.10);
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: rgba(67,160,71,0.2); color: var(--text); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SHARED BUTTONS ── */
.btn-primary {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,50,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid #ddd;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ── SECTION LABELS ── */
.section-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--green);
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-title .highlight { color: var(--green); }
.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* ══ NAV ══ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #e8f5e9;
  display: flex;
  align-items: center;
  padding: 12px 5%;
  width: 100%;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.logo-text strong { display: block; font-size: 18px; color: var(--green); font-weight: 700; line-height: 1.1; }
.logo-text span   { font-size: 11px; color: var(--text-soft); letter-spacing: 1.5px; font-weight: 500; }

.nav-links { display: flex; gap: 32px; list-style: none; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a {
  text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px;
  background: var(--green); transform: scaleX(0); transition: transform 0.3s; border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--green); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
/* ── BOOK APPOINTMENT BUTTON ── */
.btn-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: #2e7d32;
  border: 2px solid #43A047;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: color 0.28s ease, box-shadow 0.28s ease, transform 0.18s ease;
  box-shadow: 0 2px 10px rgba(67,160,71,0.13);
}
.btn-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #43A047 0%, #2e7d32 100%);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.btn-nav:hover::before { transform: scaleX(1); }
.btn-nav:hover {
  color: #fff;
  box-shadow: 0 6px 22px rgba(46,125,50,0.32);
  transform: translateY(-1px);
}
.btn-nav:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(46,125,50,0.2); }

/* Legacy sparkle elements — hidden cleanly */
.btn-nav .sparkle-label { position: relative; z-index: 1; color: inherit; font-size: 14px; font-weight: 700; }
.btn-nav .sparkle-glare { display: none; }
.btn-nav .sparkle-svg   { display: none; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none; z-index: 200;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 98; opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* ── CART BUTTON ── */
.nav-cart {
  position: relative; display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 2px solid #43A047; color: #43A047;
  padding: 8px 18px; border-radius: 50px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: var(--transition);
}
.nav-cart:hover { background: #43A047; color: #fff; }
.cart-badge {
  position: absolute; top: -7px; right: -7px; background: #e53935; color: #fff;
  width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid #fff; line-height: 1;
  animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes badgePop { 0% { transform: scale(0); } 100% { transform: scale(1); } }

/* ══ HERO ══ */
.hero {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f4ff 100%);
  min-height: 90vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 20px; position: relative; overflow: hidden;
}
.hero-content { max-width: 800px; width: 100%; text-align: center; }
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; animation: float 6s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,78,157,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
.hero-badge {
  display: inline-flex; gap: 12px; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; color: var(--green); margin-bottom: 20px; justify-content: center;
}
.hero-badge span::after { margin-left: 12px; }
.hero-badge span:last-child::after { content: ''; }
.hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1; margin-bottom: 16px;
}
.hero h1 .green { color: var(--green); }
.hero h1 .blue  { color: var(--blue); }
.hero-sub { font-size: 17px; color: var(--text-soft); line-height: 1.6; margin-bottom: 32px; }
.stats-row { display: flex; gap: 28px; margin-bottom: 36px; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; }
.stat-icon {
  width: 48px; height: 48px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px; font-size: 20px; color: #fff; object-fit: cover;
}
.stat strong { display: block; font-size: 15px; font-weight: 700; }
.stat small   { font-size: 11px; color: var(--text-soft); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; justify-content: center; }
.trust-row { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff;
  margin-left: -8px; object-fit: cover;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 13px; color: var(--text-soft); }
.trust-text strong { color: var(--green); }

/* ── TRUST BAR ── */
.trust-bar {
  background: linear-gradient(135deg, #43A047, #8BC34A);
  padding: 18px 5%; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.95); font-size: 14px; font-weight: 500; }
.trust-item .icon { font-size: 20px; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg); padding: 80px 5%; }
.steps-zigzag { max-width: 860px; margin: 0 auto; position: relative; }
.steps-zigzag::before {
  content: ''; position: absolute; left: 50%; top: 80px; bottom: 80px;
  width: 0; border-left: 2px dashed var(--green-light); transform: translateX(-50%); z-index: 0;
}
.step-row {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 0 60px; margin-bottom: 40px; position: relative; z-index: 1;
}
.step-row.odd  .step-img  { grid-column: 1; grid-row: 1; justify-self: end; }
.step-row.odd  .step-info { grid-column: 2; grid-row: 1; }
.step-row.even .step-img  { grid-column: 2; grid-row: 1; justify-self: start; }
.step-row.even .step-info { grid-column: 1; grid-row: 1; }
.step-img { position: relative; width: 170px; height: 170px; }
.step-img img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--green-light); box-shadow: var(--shadow); display: block; transition: transform 0.4s;
}
.step-img:hover img { transform: scale(1.05); }
.step-num {
  position: absolute; top: 4px; right: 4px; width: 34px; height: 34px;
  background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; border: 2px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.step-dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 22px; height: 22px; background: var(--green); border-radius: 50%;
  border: 3px solid #fff; box-shadow: 0 0 0 3px var(--green-pale); z-index: 2;
}
.step-info { padding: 8px 0; }
.step-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.step-info h3 .col-green { color: var(--green); }
.step-info h3 .col-blue  { color: var(--blue); }
.step-info p  { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-bottom: 12px; }
.step-badges  { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.step-badge {
  background: var(--white); border: 1px solid #e0e0e0; border-radius: 20px;
  padding: 5px 12px; font-size: 12px; color: var(--text-soft); display: inline-flex; align-items: center; gap: 5px;
}
/* ── PRODUCTS (Unified) ── */
.products-section { background: #fff; padding: 80px 5%; }
.products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.see-all { font-size: 14px; color: var(--text-soft); text-decoration: none; border-bottom: 1px solid #ccc; transition: var(--transition); }
.see-all:hover { color: var(--green); border-color: var(--green); }

/* ── INDEX FILTER BAR ── */
.index-filter-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto 32px; padding: 0;
}
.index-filter-btn {
  background: #f5f5f5; border: 1.5px solid #e0e0e0; border-radius: 50px;
  padding: 7px 18px; font-size: 13px; font-weight: 500; color: var(--text-soft);
  cursor: pointer; transition: all .2s; font-family: 'Manrope', sans-serif;
  white-space: nowrap;
}
.index-filter-btn:hover,
.index-filter-btn.active {
  background: var(--green); border-color: var(--green); color: #fff;
}
@media (max-width: 768px) {
  .index-filter-bar {
    gap: 8px; margin-bottom: 24px;
    overflow-x: auto; flex-wrap: nowrap;
    padding-bottom: 6px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .index-filter-bar::-webkit-scrollbar { display: none; }
  .index-filter-btn { flex-shrink: 0; padding: 6px 14px; font-size: 12px; }
}
/* card hide animation for filter */
.pcard.filter-hidden {
  display: none;
}

/* Index product grid */
.index-pcard-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 1024px) { .index-pcard-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .index-pcard-grid { grid-template-columns: 1fr; } }

/* Full product grid */
.products-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 60px; max-width: 1200px; margin-left: auto; margin-right: auto; }
@media (max-width: 1024px) { .products-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-full-grid { grid-template-columns: 1fr; } }

/* Product Card Base */
.pcard {
  border-radius: 20px; overflow: hidden; background: var(--bg);
  transition: var(--transition); cursor: pointer; display: flex; flex-direction: column;
  border: 1.5px solid transparent;
}
.pcard:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(46,125,50,0.16); border-color: #e0f2e0; }
.pcard-img-wrap { position: relative; overflow: hidden; }
.pcard-img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform .4s; }
.pcard:hover .pcard-img { transform: scale(1.04); }
.pcard-badge {
  position: absolute; top: 14px; left: 14px; background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 50px;
}
.pcard-badge.badge-blue { background: var(--blue); }
.pcard-badge.badge-amber { background: #f59e0b; }
.pcard-wishlist {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: var(--transition); border: none;
}
.pcard-wishlist:hover { background: #fff; transform: scale(1.1); }
.pcard-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pcard-category { font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.pcard-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.25; }
.pcard-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars-sm { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }
.rating-count { font-size: 12px; color: var(--text-soft); }
.pcard-desc { font-size: 13px; color: var(--text-soft); line-height: 1.65; margin-bottom: 16px; }
.pcard-benefits { list-style: none; padding: 0; margin-bottom: 18px; flex: 1; }
.pcard-benefits li { font-size: 13px; color: var(--text); padding: 4px 0; display: flex; align-items: baseline; gap: 8px; }
.pcard-benefits li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pcard-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #e8f5e9; gap: 10px; flex-wrap: wrap; }
.pcard-qty { font-size: 12px; color: var(--text-soft); display: flex; align-items: center; gap: 5px; }
.pcard-qty::before { content: '📦'; font-size: 13px; }
.pcard-price { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: var(--green); }
.pcard-price small { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 400; color: var(--text-soft); }
.pcard-actions { display: flex; gap: 8px; margin-top: 14px; }
.btn-add-cart {
  flex: 1; background: var(--green); color: #fff; border: none; padding: 11px 16px;
  border-radius: 50px; font-size: 13px; font-weight: 700; cursor: pointer; transition: var(--transition);
  font-family: 'Manrope', sans-serif; text-align: center; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-add-cart:hover { background: #7cb342; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(46,125,50,0.35); }
.btn-buy-now, .btn-details {
  flex: 1; background: transparent; color: var(--green); border: 1.5px solid var(--green);
  padding: 11px 16px; border-radius: 50px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: var(--transition); font-family: 'Manrope', sans-serif;
  white-space: nowrap; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none;
}
.btn-buy-now:hover, .btn-details:hover { background: var(--green); color: #fff; }

/* ── SUCCESS STORIES ── */
.success-section { background: var(--bg); padding: 80px 5%; text-align: center; }
.before-after {
  display: inline-grid; grid-template-columns: 1fr 1fr; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); position: relative; margin-top: 20px; max-width: 520px; width: 100%;
}
.ba-img { width: 100%; height: 320px; object-fit: cover; display: block; background: linear-gradient(135deg, #e0e0e0, #f5f5f5); }
.ba-label { position: absolute; bottom: 12px; font-size: 12px; font-weight: 700; letter-spacing: 1px; padding: 5px 14px; border-radius: 20px; }
.ba-before { left: 12px; background: rgba(0,0,0,0.7); color: #fff; }
.ba-after  { right: 12px; background: var(--green); color: #fff; }
.loss-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--green); color: #fff; border-radius: 50%; width: 70px; height: 70px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; z-index: 2; border: 3px solid #fff; line-height: 1.2;
}

/* ── REVIEWS ── */
.reviews-section { background: #fff; padding: 80px 5%; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 40px; }
.review-card {
  background: var(--bg); border-radius: var(--radius); padding: 24px;
  transition: var(--transition); border: 1.5px solid transparent;
}
.review-card:hover { box-shadow: var(--shadow); border-color: #e0f2e0; transform: translateY(-4px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.reviewer-info strong { display: block; font-size: 14px; }
.reviewer-info span  { font-size: 12px; color: var(--text-soft); }
.stars { color: #f59e0b; font-size: 14px; margin-left: auto; }
.review-text { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.review-date { font-size: 12px; color: #aaa; margin-top: 12px; }

/* ── FOOTER ── */
footer { background: #1B2A41; color: #ccc; padding: 60px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-brand h2 { font-family: 'Outfit', sans-serif; font-size: 22px; color: var(--green-light); margin-bottom: 6px; }
.footer-brand p  { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links    { display: flex; gap: 10px; margin-bottom: 20px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  text-decoration: none; transition: var(--transition); overflow: hidden;
}
.social-link:hover { border-color: var(--green-light); background: rgba(76,175,80,0.15); transform: translateY(-2px); }
.social-link img { width: 40px; height: 40px; object-fit: contain; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05); color: #fff; font-size: 14px; outline: none; transition: border-color 0.3s;
}
.newsletter-form input:focus { border-color: var(--green-light); }
.newsletter-form input::placeholder { color: #888; }
.newsletter-form button {
  background: var(--green); color: #fff; border: none; padding: 10px 18px;
  border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--green-light); }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { text-decoration: none; color: #aaa; font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links ul a:hover { color: var(--green-light); transform: translateX(4px); }
.footer-links ul a::after { content: '→'; font-size: 12px; transition: transform 0.3s; }
.footer-links ul a:hover::after { transform: translateX(3px); }
.contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.contact-icon { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; object-fit: cover; display: block; background: transparent !important; border: none; padding: 0; }
.contact-item p      { font-size: 13px; color: #aaa; line-height: 1.6; }
.contact-item p a    { color: var(--green-light); text-decoration: none; transition: color .2s; }
.contact-item p a:hover { color: var(--green); text-decoration: underline; }
.contact-item strong { color: #fff; display: block; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: #666; }
.footer-policy { display: flex; gap: 20px; }
.footer-policy a { font-size: 13px; color: #666; text-decoration: none; transition: color .2s; }
.footer-policy a:hover { color: var(--green-light); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); cursor: pointer;
  transition: var(--transition); text-decoration: none;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-float img { width: 30px; height: 30px; }
@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 90px; right: 28px; z-index: 89;
  width: 42px; height: 42px; border-radius: 50%; background: #fff;
  border: 2px solid #e0e0e0; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); opacity: 0; visibility: hidden;
  transform: translateY(10px); font-size: 18px; color: var(--text); text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ══ PRODUCTS PAGE ══ */
.products-hero {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f4ff 100%);
  padding: 70px 5% 50px; text-align: center; position: relative; overflow: hidden;
}
.products-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}
.products-hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(30,78,157,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none;
}
.products-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(32px, 5vw, 58px); line-height: 1.1; margin-bottom: 16px; }
.products-hero p { font-size: 17px; color: var(--text-soft); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.breadcrumb { font-size: 13px; color: var(--text-soft); margin-bottom: 20px; display: flex; gap: 8px; justify-content: center; align-items: center; }
.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb span { color: #bbb; }

.filter-bar {
  background: #fff; border-bottom: 1px solid #e8f5e9; padding: 18px 5%;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  position: sticky; top: 0; z-index: 50;
}
.filter-label { font-size: 13px; font-weight: 600; color: var(--text-soft); letter-spacing: 0.5px; margin-right: 4px; }
.filter-btn { background: var(--bg); border: 1.5px solid #e0e0e0; border-radius: 50px; padding: 7px 18px; font-size: 13px; font-weight: 500; color: var(--text-soft); cursor: pointer; transition: var(--transition); font-family: 'Manrope', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

.products-full { background: #fff; padding: 60px 5%; }

/* ── BUNDLES ── */
.bundles-section { background: var(--bg); padding: 70px 5%; }
.bundles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 48px; }
.bundle-card {
  background: #fff; border-radius: 20px; padding: 32px; border: 2px solid #e0f2e0;
  transition: var(--transition); position: relative; overflow: hidden;
}
.bundle-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.bundle-card.featured::before { background: linear-gradient(90deg, var(--blue), #4fc3f7); }
.bundle-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(46,125,50,0.12); border-color: var(--green); }
.bundle-card.featured:hover { border-color: var(--blue); }
.bundle-popular { position: absolute; top: 16px; right: 16px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 50px; }
.bundle-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.bundle-name { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.bundle-tagline { font-size: 14px; color: var(--text-soft); margin-bottom: 20px; line-height: 1.5; }
.bundle-includes { list-style: none; padding: 0; margin-bottom: 24px; }
.bundle-includes li { font-size: 14px; color: var(--text); padding: 6px 0; display: flex; align-items: center; gap: 8px; border-bottom: 1px dashed #e8f5e9; }
.bundle-includes li:last-child { border-bottom: none; }
.bundle-includes li::before { content: '🌿'; font-size: 13px; }
.bundle-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.bundle-price { font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 700; color: var(--green); }
.bundle-card.featured .bundle-price { color: var(--blue); }
.bundle-price-old { font-size: 15px; color: #bbb; text-decoration: line-through; }
.bundle-save { font-size: 12px; font-weight: 700; color: #f59e0b; background: #fff8e1; padding: 3px 10px; border-radius: 50px; }
.btn-bundle {
  width: 100%; background: var(--green); color: #fff; border: none; padding: 13px;
  border-radius: 50px; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition);
  font-family: 'Manrope', sans-serif; text-align: center; display: block; text-decoration: none;
}
.btn-bundle:hover { background: #2e7d32; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(46,125,50,0.3); }
.bundle-card.featured .btn-bundle { background: var(--blue); }
.bundle-card.featured .btn-bundle:hover { background: #1a3e8a; }

.why-strip { background: linear-gradient(135deg, var(--green) 0%, #8BC34A 100%); padding: 48px 5%; }
.why-strip-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; max-width: 1300px; margin: 0 auto; }
.why-item { text-align: center; color: #fff; }
.why-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.why-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.why-item p  { font-size: 13px; opacity: 0.85; line-height: 1.5; }

/* ── MODALS ── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: #fff; border-radius: 24px; max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; animation: modalIn .25s ease; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.94) translateY(16px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg); border: none; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background .2s; }
.modal-close:hover { background: #e0e0e0; }
.modal-img { width: 100%; height: 280px; object-fit: cover; border-radius: 24px 24px 0 0; display: block; }
.modal-body { padding: 28px; }
.modal-category { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.modal-title { font-family: 'Outfit', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.modal-desc { font-size: 15px; color: var(--text-soft); line-height: 1.7; margin-bottom: 20px; }
.modal-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.modal-feature { background: var(--bg); border-radius: 12px; padding: 12px 14px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.modal-feature span { font-size: 18px; }
.modal-actions { display: flex; gap: 12px; }
.ingredient-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.ing-tag { background: #e8f5e9; color: var(--green); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 50px; }

/* ── FAQ ── */
.faq-section { background: #fff; padding: 70px 5%; max-width: 900px; margin: 0 auto; }
.faq-section .section-title { text-align: left; }
.faq-section .section-sub { text-align: left; margin-left: 0; }
.faq-item { border: 1.5px solid #e8f5e9; border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--green); }
.faq-q { padding: 18px 20px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; background: #fff; transition: background .2s; user-select: none; }
.faq-q:hover { background: #f9fef9; }
.faq-chevron { font-size: 18px; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; padding: 0 20px; font-size: 14px; color: var(--text-soft); line-height: 1.7; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }
.faq-item.open .faq-q { color: var(--green); }

.sticky-cta { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: #1B2A41; color: #fff; padding: 14px 28px; border-radius: 50px; display: flex; align-items: center; gap: 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.3); z-index: 90; font-size: 14px; white-space: nowrap; animation: slideUp .4s ease .5s both; }
@keyframes slideUp { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }
.sticky-cta strong { color: var(--green-light); }
.sticky-cta a { background: var(--green); color: #fff; text-decoration: none; padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 700; transition: background .2s; }
.sticky-cta a:hover { background: #8BC34A; }
.sticky-close { cursor: pointer; opacity: 0.5; font-size: 18px; background: none; border: none; color: #fff; flex-shrink: 0; padding: 0; transition: opacity .2s; }
.sticky-close:hover { opacity: 1; }

.pcard-fade { opacity: 0; transform: translateY(20px); transition: opacity .4s, transform .4s; }
.pcard-fade.visible { opacity: 1; transform: translateY(0); }

/* ══ INDEX BUNDLES ══ */
.bundles-index-section { background: var(--bg); padding: 70px 5%; }
.bundles-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 860px) { .bundles-index-grid { grid-template-columns: 1fr; } }

.bund-card {
  position: relative; border-radius: 20px; padding: 32px 30px 28px;
  overflow: hidden; display: flex; flex-direction: column; gap: 0;
  transition: transform .3s, box-shadow .3s;
  background: #f1f8f6; border: 2px solid #e8f5e9; color: var(--text);
}
.bund-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(67,160,71,0.12); border-color: #c8e6c9; }
.bund-transform { background: #f1f8f6; border-color: #c8e6c9; }
.bund-premium { background: #f1f8f6; border-color: #bbdefb; }
.bund-popular-pill { display: inline-flex; align-items: center; gap: 5px; background: #e8f5e9; border: 1.5px solid #43A047; color: #43A047; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 6px 14px; border-radius: 50px; margin-bottom: 18px; width: fit-content; }
.bund-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.bund-icon-ring { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.bund-icon-fire { background: #fff8e1; border: 1.5px solid #ffe082; }
.bund-icon-star { background: #fff8e1; border: 1.5px solid #ffe082; }
.bund-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); margin: 0 0 4px 0; line-height: 1.2; }
.bund-sub { font-size: 13px; color: var(--text-soft); margin: 0; }
.bund-results-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.bund-result-pill { background: #e8f5e9; border: 1px solid #c8e6c9; color: #2e7d32; font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 50px; }
.bund-result-pill.gold { background: #fff8e1; border-color: #ffe082; color: #f57f17; }
.bund-section-label { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-soft); margin-bottom: 10px; }
.bund-section-label.mt { margin-top: 14px; }
.bund-items { list-style: none; padding: 0; margin: 0 0 4px 0; }
.bund-items li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; border-bottom: 1px solid #f0f0f0; }
.bund-items li:last-child { border-bottom: none; }
.bund-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.bund-dot.green { background: #43A047; }
.bund-dot.blue { background: #1E4E9D; }
.bund-dot.gold-dot { background: #f59e0b; }
.bund-items li > div strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 1px; }
.bund-items li > div span { font-size: 11px; color: var(--text-soft); }
.bund-price-area { display: flex; align-items: center; justify-content: space-between; margin: 22px 0 20px; padding-top: 18px; border-top: 1px solid #f0f0f0; }
.bund-price-main { display: flex; align-items: baseline; gap: 10px; }
.bund-price-now { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 700; color: #43A047; }
.bund-price-now.gold-price { color: #f59e0b; }
.bund-price-was { font-size: 14px; color: #999; text-decoration: line-through; }
.bund-save-badge { background: #e8f5e9; border: 1px solid #c8e6c9; color: #2e7d32; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 50px; }
.bund-save-badge.gold-save { background: #fff8e1; border-color: #ffe082; color: #f57f17; }
.bund-cta-row { display: flex; gap: 10px; }
.bund-btn-cart, .bund-btn-buy { flex: 1; padding: 13px 18px; border-radius: 12px; font-size: 14px; font-weight: 700; cursor: pointer; text-align: center; transition: all .2s; font-family: 'Manrope', sans-serif; border: none; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.bund-btn-cart { background: transparent; border: 1.5px solid #43A047; color: #43A047; }
.bund-btn-cart:hover { background: #e8f5e9; transform: translateY(-2px); }
.bund-btn-cart-gold { border-color: #f59e0b; color: #f59e0b; }
.bund-btn-cart-gold:hover { background: #fff8e1; }
.bund-btn-buy { background: #43A047; color: #fff; }
.bund-btn-buy:not(.has-blob):hover { background: #2e7d32; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(67,160,71,0.2); }
.bund-btn-buy-gold { background: #f59e0b; color: #fff; }
.bund-btn-buy-gold:not(.has-blob):hover { background: #d97706; box-shadow: 0 8px 20px rgba(245,158,11,0.2); }

/* ── CART TOAST ── */
#cartToast {
  position: fixed; bottom: 30px; right: 24px; background: #1B2A41; color: #fff;
  padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25); z-index: 9999;
  transform: translateY(120%); transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-width: 280px; max-width: 340px;
}
#cartToast.show { transform: translateY(0); }
.toast-icon { font-size: 26px; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-body strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.toast-name { font-size: 13px; color: #8BC34A; display: block; }
.toast-body > span { font-size: 12px; opacity: 0.7; }
.toast-actions { display: flex; flex-direction: column; gap: 6px; }
.toast-actions a { font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 8px; text-decoration: none; text-align: center; white-space: nowrap; transition: all .15s; }
.toast-view-cart { background: #43A047; color: #fff; }
.toast-checkout { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: #fff; }

/* ══ CHECKOUT PAGE (2-COLUMN) ══ */
.checkout-wrap {
  max-width: 1140px; margin: 0 auto;
  padding: 40px 5% 80px;
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
.checkout-left { display: flex; flex-direction: column; gap: 24px; }
.checkout-right { position: sticky; top: 90px; }

.co-card {
  background: #fff; border-radius: 20px; padding: 36px 40px;
  border: 1.5px solid #e8f5e9; transition: border-color .2s;
  animation: coSlideUp .35s ease both;
}
.co-card:nth-child(1) { animation-delay: .05s; }
.co-card:nth-child(2) { animation-delay: .1s; }
.co-card:nth-child(3) { animation-delay: .15s; }
.co-card:nth-child(4) { animation-delay: .2s; }
.co-card:focus-within { border-color: var(--green); }
@keyframes coSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.co-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.co-card-icon {
  width: 38px; height: 38px; background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.co-card-title { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; }
.co-card-subtitle { font-size: 13px; color: #888; margin-top: 2px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field-row.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 600; color: #555; letter-spacing: 0.4px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  padding: 15px 20px; border: 1.5px solid #e0e0e0; border-radius: 14px;
  font-size: 16px; font-family: 'Manrope', sans-serif; color: var(--text);
  background: #fafafa; outline: none; transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(67,160,71,0.1);
}
.field input.error { border-color: #e57373; background: #fff8f8; }
.field .err-msg { font-size: 11px; color: #e57373; display: none; margin-top: 4px; }
.field input.error ~ .err-msg { display: block; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}
.icon-input-wrap { position: relative; }
.icon-input-wrap .field-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-size: 18px; pointer-events: none; }
.icon-input-wrap input { padding-left: 46px; }

.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #555; cursor: pointer; margin-top: 4px;
}
.checkbox-row input[type="checkbox"] { display: none; }
.custom-check {
  width: 18px; height: 18px; border: 2px solid #ccc; border-radius: 5px; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.checkbox-row input:checked + .custom-check { background: var(--green); border-color: var(--green); }
.checkbox-row input:checked + .custom-check::after { content: '✓'; color: #fff; font-size: 11px; font-weight: 700; }
.same-phone-toggle {
  background: linear-gradient(135deg, #f0faf0, #e8f4ff); border: 1.5px solid #c8e6c9;
  border-radius: 12px; padding: 12px 16px; margin-bottom: 10px;
}
.intl-fee-note { color: #e67e22; }

.cod-box { background: #f0faf0; border-radius: 14px; padding: 20px; display: flex; align-items: flex-start; gap: 14px; }
.cod-icon { font-size: 32px; flex-shrink: 0; }
.cod-info strong { font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.cod-info p { font-size: 13px; color: #555; line-height: 1.5; }

.summary-card { background: #fff; border-radius: 20px; border: 1.5px solid #e8f5e9; overflow: hidden; }
.summary-header { background: linear-gradient(135deg, var(--green), var(--green-light)); padding: 20px 24px; color: #fff; }
.summary-header h3 { font-family: 'Outfit', sans-serif; font-size: 20px; margin-bottom: 2px; }
.summary-header p { font-size: 13px; opacity: 0.85; }
.summary-items { padding: 20px 24px; border-bottom: 1px solid #e8f5e9; }
.summary-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px dashed #e8f5e9; }
.summary-item:last-child { border-bottom: none; padding-bottom: 0; }
.item-img { width: 52px; height: 52px; border-radius: 10px; background: #f0faf0; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.item-details { flex: 1; }
.item-details strong { font-size: 13px; font-weight: 600; display: block; }
.item-details span   { font-size: 12px; color: #888; }
.item-qty-control { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid #e0e0e0; background: #fff;
  cursor: pointer; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  transition: all .15s; color: var(--green); line-height: 1;
}
.qty-btn:hover { border-color: var(--green); background: #f0faf0; }
.qty-num { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }
.item-price { font-size: 14px; font-weight: 700; color: var(--green); white-space: nowrap; }
.item-remove { background: none; border: none; cursor: pointer; font-size: 16px; color: #ccc; transition: color .15s; padding: 0; margin-left: 4px; }
.item-remove:hover { color: #e57373; }
.summary-totals { padding: 20px 24px; }
.total-row { display: flex; justify-content: space-between; font-size: 14px; color: #555; margin-bottom: 10px; }
.total-row.grand { font-size: 18px; font-weight: 700; color: var(--text); padding-top: 12px; border-top: 2px solid #e8f5e9; margin-top: 4px; margin-bottom: 0; }
.total-row.grand span:last-child { color: var(--green); }
.intl-fee-amount { color: #e67e22; font-weight: 600; }
.trust-badges { display: flex; gap: 10px; padding: 16px 24px; border-top: 1px solid #e8f5e9; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #888; font-weight: 500; }
.place-order-wrap { padding: 0 28px 28px; }
.btn-place-order {
  width: 100%; padding: 20px; background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff; border: none; border-radius: 16px; font-size: 20px; font-weight: 700; cursor: pointer;
  font-family: 'Manrope', sans-serif; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 6px 20px rgba(67,160,71,0.3);
}
.btn-place-order:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(67,160,71,0.4); }
.btn-place-order.loading { pointer-events: none; opacity: 0.8; }
.continue-shopping { font-size: 13px; color: #888; text-decoration: none; transition: color .2s; }
.continue-shopping:hover { color: var(--green); }

.success-overlay {
  display: none; position: fixed; inset: 0; background: rgba(255,255,255,0.96); z-index: 500;
  align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 40px;
}
.success-overlay.show { display: flex; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.success-circle {
  width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center; font-size: 48px; margin-bottom: 28px;
  animation: popIn .5s cubic-bezier(0.175, 0.885, 0.32, 1.275) .1s both;
}
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-overlay h2 { font-family: 'Outfit', sans-serif; font-size: 34px; margin-bottom: 12px; }
.success-overlay p { font-size: 16px; color: #555; max-width: 420px; line-height: 1.6; margin-bottom: 32px; }
.success-order-num {
  background: #f0faf0; border: 1.5px solid var(--green-light); border-radius: 14px;
  padding: 16px 32px; margin-bottom: 32px; font-size: 13px; color: #555;
}
.success-order-num strong { font-size: 22px; color: var(--green); display: block; font-family: 'Outfit', sans-serif; }
.success-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── LOADING SPINNER ── */
.page-loader {
  position: fixed; inset: 0; background: #fff; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-spinner {
  width: 40px; height: 40px; border: 3px solid #e8f5e9; border-top-color: var(--green);
  border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .checkout-wrap { grid-template-columns: 1fr; }
  .checkout-right { position: static; }
  .index-pcard-grid, .products-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 40px 5%; min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 16px; }
  .stat { min-width: 80px; }
  .trust-bar { gap: 20px; padding: 14px 20px; }
  .trust-item { font-size: 12px; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    transform: scaleY(0) translateY(-8px);
    transform-origin: top center;
    width: 100%; max-width: 100%; height: auto; max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #fff; flex-direction: column; padding: 8px 0; gap: 0;
    z-index: 99; transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12); border-radius: 0;
    opacity: 0; pointer-events: none;
  }
  .nav-links.active { transform: scaleY(1) translateY(0); opacity: 1; pointer-events: all; }
  .nav-links li { margin-bottom: 0; width: 100%; }
  .nav-links a { font-size: 17px; padding: 16px 5%; display: block; border-bottom: 1px solid #f0f0f0; text-align: left; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links a::after { display: none; }
  .btn-nav { display: none; }
  /* Cart always visible on mobile — compact */
  .nav-cart { padding: 8px 12px; font-size: 13px; gap: 5px; white-space: nowrap; }
  .nav-actions { gap: 8px; flex-shrink: 0; }
  .filter-bar { top: 0; padding: 12px 5%; }
  .products-hero { padding: 50px 5% 36px; }
  .products-full, .bundles-section { padding: 40px 5%; }
  .modal-features { grid-template-columns: 1fr; }
  .modal-actions { flex-direction: column; }
  .faq-section { padding: 50px 5%; }
  .why-strip { padding: 40px 5%; }
  .why-strip-inner { gap: 20px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .whatsapp-float img { width: 26px; height: 26px; }
  .back-to-top { bottom: 74px; right: 20px; width: 36px; height: 36px; font-size: 16px; }
  .index-pcard-grid, .products-full-grid { grid-template-columns: 1fr; }
  .co-card { padding: 20px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .section-title { font-size: 28px; }
  .trust-bar { gap: 14px; }
  .trust-item { font-size: 11px; }
  /* Cart text hidden on very small screens — keep icon + badge */
  .nav-cart .cart-text { display: none; }
  .nav-cart { padding: 8px 10px; min-width: 40px; justify-content: center; }
  nav { padding: 10px 4%; }
}

/* ══ PRODUCT DETAIL PAGE ══ */
.pd-hero {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f4ff 100%); padding: 50px 5%;
}
.pd-hero-inner {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
@media (max-width: 860px) { .pd-hero-inner { grid-template-columns: 1fr; gap: 32px; } }
.pd-img-wrap { position: relative; }
.pd-img-main {
  width: 100%; max-width: 480px; height: 400px; object-fit: cover;
  border-radius: 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); display: block;
}
.pd-badge {
  position: absolute; top: 18px; left: 18px; background: var(--green); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 5px 14px; border-radius: 50px;
}
.pd-badge.badge-blue { background: #1E4E9D; }
.pd-badge.badge-amber { background: #f59e0b; }
.pd-info .breadcrumb { font-size: 13px; color: #888; display: flex; gap: 8px; align-items: center; margin-bottom: 16px; }
.pd-info .breadcrumb a { color: var(--green); text-decoration: none; }
.pd-category { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.pd-title { font-family: 'Outfit', sans-serif; font-size: clamp(26px, 4vw, 40px); font-weight: 700; line-height: 1.15; margin-bottom: 14px; }
.pd-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.pd-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; }
.pd-review-count { font-size: 14px; color: #888; }
.pd-desc { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 22px; }
.pd-benefits { list-style: none; padding: 0; margin-bottom: 24px; }
.pd-benefits li { font-size: 14px; color: #263238; padding: 6px 0; display: flex; align-items: baseline; gap: 10px; border-bottom: 1px dashed #e8f5e9; }
.pd-benefits li:last-child { border-bottom: none; }
.pd-benefits li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pd-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.pd-price { font-family: 'Outfit', sans-serif; font-size: 36px; font-weight: 700; color: var(--green); }
.pd-qty-tag { font-size: 13px; color: #888; background: #f0f0f0; padding: 4px 12px; border-radius: 50px; }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pd-actions .btn-buy {
  flex: 1; min-width: 180px; background: linear-gradient(135deg, #43A047, #8BC34A);
  color: #fff; border: none; padding: 15px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Manrope', sans-serif; transition: all .25s; box-shadow: 0 6px 20px rgba(67,160,71,0.3);
}
.pd-actions .btn-buy:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(67,160,71,0.4); }
.pd-actions .btn-add {
  flex: 1; min-width: 180px; background: #fff; color: var(--green);
  border: 2px solid var(--green); padding: 15px 24px; border-radius: 50px;
  font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Manrope', sans-serif; transition: all .25s;
}
.pd-actions .btn-add:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.btn-back-products {
  padding: 15px 22px; border: 2px solid #e0e0e0; border-radius: 50px;
  font-size: 14px; font-weight: 600; color: #555; text-decoration: none;
  transition: all .2s; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px;
}
.btn-back-products:hover { border-color: var(--green); color: var(--green); }

.pd-tabs-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.pd-tabs { display: flex; gap: 0; border-bottom: 2px solid #e8f5e9; margin-bottom: 0; overflow-x: auto; scrollbar-width: none; }
.pd-tabs::-webkit-scrollbar { display: none; }
.pd-tab {
  padding: 16px 28px; font-size: 14px; font-weight: 600; color: #888; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap;
  transition: color .2s, border-color .2s; background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Manrope', sans-serif;
}
.pd-tab:hover { color: var(--green); }
.pd-tab.active { color: var(--green); border-bottom-color: var(--green); }
.pd-panel { display: none; padding: 48px 5%; max-width: 1200px; margin: 0 auto; }
.pd-panel.active { display: block; animation: fadeIn 0.3s ease; }
.pd-tabs-section { background: #fff; border-bottom: 1px solid #e8f5e9; }
.pd-panels-section { background: #fff; }

/* Related */
.related-section { background: #f5f9f0; padding: 60px 5%; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 32px auto 0; }
@media (max-width: 860px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }
.rel-card {
  background: #fff; border-radius: 18px; overflow: hidden; border: 1.5px solid #e0f2e0;
  transition: var(--transition); display: flex; flex-direction: column;
}
.rel-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(67,160,71,0.14); }
.rel-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.rel-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.rel-body h4 { font-family: 'Outfit', sans-serif; font-size: 17px; margin-bottom: 4px; }
.rel-body p { font-size: 13px; color: #888; flex: 1; line-height: 1.5; }
.rel-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-top: 1px solid #e8f5e9; }
.rel-price { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; color: #43A047; }
.btn-rel-buy {
  background: #43A047; color: #fff; border: none; padding: 9px 18px;
  border-radius: 50px; font-size: 13px; font-weight: 600; cursor: pointer;
  text-decoration: none; font-family: 'Manrope', sans-serif; transition: background .2s;
}
.btn-rel-buy:hover { background: #8BC34A; }

/* ══ CART DRAWER ══ */
#cartDrawerOverlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 9000;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#cartDrawer.open #cartDrawerOverlay { opacity: 1; pointer-events: all; }
#cartDrawerPanel {
  position: fixed; top: 0; right: 0; width: 380px; max-width: 100vw; height: 100%;
  background: #fff; z-index: 9001; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
#cartDrawer.open #cartDrawerPanel { transform: translateX(0); }
#cartDrawerHeader {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #e8f5e9; flex-shrink: 0;
}
#cartDrawerTitle { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: #1b2a1b; }
#cartDrawerClose {
  background: none; border: none; font-size: 18px; cursor: pointer; color: #888;
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
#cartDrawerClose:hover { background: #f0faf0; color: #333; }
#cartDrawerItems {
  flex: 1; overflow-y: auto; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.drawer-item {
  display: flex; align-items: center; gap: 14px;
  background: #fafafa; border-radius: 14px; padding: 14px;
  border: 1.5px solid #f0f0f0; transition: border-color .2s;
}
.drawer-item:hover { border-color: #c8e6c9; }
.drawer-item-icon {
  font-size: 30px; width: 52px; height: 52px; min-width: 52px;
  background: linear-gradient(135deg,#e8f5e9,#e3f2fd);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0; text-decoration: none; overflow: hidden;
}
.drawer-item-body { flex: 1; min-width: 0; }
.drawer-item-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.drawer-item-name {
  font-size: 13px; font-weight: 700; color: #1b2a1b;
  text-decoration: none; display: block; margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s;
}
.drawer-item-name:hover { color: var(--green); text-decoration: underline; }
.drawer-item-sub { font-size: 11px; color: #888; margin-bottom: 8px; }
.drawer-item-qty { display: flex; align-items: center; gap: 8px; }
.drawer-qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #e0e0e0;
  background: #fff; font-size: 15px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s; line-height: 1;
}
.drawer-qty-btn:hover { border-color: var(--green); background: #f0faf0; color: var(--green); }
.drawer-qty-num { font-size: 13px; font-weight: 700; min-width: 18px; text-align: center; }
.drawer-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.drawer-item-price { font-size: 14px; font-weight: 700; color: var(--green); }
.drawer-remove-btn {
  background: none; border: none; color: #ccc; cursor: pointer;
  font-size: 16px; line-height: 1; transition: color .2s; padding: 2px;
}
.drawer-remove-btn:hover { color: #e57373; }
#cartDrawerFooter {
  padding: 16px 20px 24px; border-top: 1px solid #e8f5e9; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 10px;
}
#cartDrawerTotals {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 700; color: #1b2a1b; padding: 4px 0 8px;
}
#cartDrawerTotal { color: var(--green); font-size: 20px; }
#cartDrawerCheckout {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: #fff; padding: 14px 20px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  box-shadow: 0 4px 12px rgba(67,160,71,0.3);
  transition: transform .2s, box-shadow .2s;
}
#cartDrawerCheckout:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(67,160,71,0.4); }
#cartDrawerShop {
  display: block; text-align: center; font-size: 13px;
  color: #888; text-decoration: none; transition: color .2s;
}
#cartDrawerShop:hover { color: var(--green); }
#cartDrawerEmpty { padding: 40px 24px; text-align: center; }
@media(max-width:480px) { #cartDrawerPanel { width: 100vw; } }
/* ══ HERO SPLIT LAYOUT ══ */
.hero-split {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: initial;
  padding: 80px 7%;
  min-height: 90vh;
  text-align: left;
}
.hero-split .hero-content {
  max-width: 100%;
  text-align: left;
}
.hero-split .hero-badge,
.hero-split .hero-btns,
.hero-split .trust-row,
.hero-split .stats-row {
  justify-content: flex-start;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
}
.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 32px 80px rgba(46,125,50,0.22);
}
.hero-img-badge {
  position: absolute;
  background: #fff;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  animation: float 4s ease-in-out infinite;
}
.hero-img-badge-1 {
  bottom: 40px;
  left: -30px;
  animation-delay: 0s;
}
.hero-img-badge-2 {
  top: 40px;
  right: -24px;
  animation-delay: 2s;
}
.hero-img-badge .hib-icon {
  font-size: 22px;
  line-height: 1;
}
.hero-img-badge div {
  display: flex;
  flex-direction: column;
}
.hero-img-badge strong {
  font-size: 13px;
  font-weight: 700;
  color: #263238;
  line-height: 1.2;
}
.hero-img-badge small {
  font-size: 10px;
  color: #78909c;
}
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 5%;
    gap: 32px;
  }
  .hero-visual { display: none; }
  .hero-split .hero-badge,
  .hero-split .hero-btns,
  .hero-split .trust-row,
  .hero-split .stats-row {
    justify-content: center;
  }
}

/* ══ REVIEWS SCROLLABLE ══ */
.reviews-scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  gap: 24px !important;
  padding-bottom: 16px !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #c8e6c9 transparent;
  grid-template-columns: unset !important;
}
.reviews-scroll::-webkit-scrollbar {
  height: 6px;
}
.reviews-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.reviews-scroll::-webkit-scrollbar-thumb {
  background: #c8e6c9;
  border-radius: 3px;
}
.reviews-scroll .review-card {
  flex: 0 0 340px !important;
  min-width: 300px !important;
  max-width: 380px !important;
  scroll-snap-align: start;
}


/* ── ENHANCED ANIMATIONS ── */
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeInScale {
  from { opacity:0; transform:scale(.95); }
  to { opacity:1; transform:scale(1); }
}
.animate-on-load{
  animation: fadeInScale .8s ease both;
}
.logo-icon,
.hero img,
.hero-image img{
  animation: floatUp 4s ease-in-out infinite;
}
.card, .bundle-card, .testimonial-card, .product-card, .feature-card{
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover, .bundle-card:hover, .testimonial-card:hover, .product-card:hover, .feature-card:hover{
  transform: translateY(-8px);
}


/* Footer layout fix */
footer{
  margin-top:0 !important;
  width:100% !important;
  position:relative !important;
  left:0 !important;
  right:0 !important;
  transform:none !important;
  overflow:hidden !important;
}
footer::before,
footer::after{
  display:none !important;
}
.faq-section,
.faq,
#faq{
  margin-bottom:0 !important;
  padding-bottom:40px !important;
}


/* Premium infinite carousel enhancements */
#successTrack,
#reviewsTrack,
#expertsTrack,
#teamScroll{
  overflow-x:hidden !important;
  scroll-behavior:smooth;
  scrollbar-width:none;
  -ms-overflow-style:none;
  position:relative;
}

#successTrack::-webkit-scrollbar,
#reviewsTrack::-webkit-scrollbar,
#expertsTrack::-webkit-scrollbar,
#teamScroll::-webkit-scrollbar{
  display:none;
}

/* Edge fade effect */
#successTrack::before,#successTrack::after,
#reviewsTrack::before,#reviewsTrack::after,
#teamScroll::before,#teamScroll::after{
  content:'';
  position:absolute;
  top:0;
  width:60px;
  height:100%;
  z-index:2;
  pointer-events:none;
}

/* ══════════════════════════════════════════════════════════
   BLOB BUY BUTTON EFFECT
   ══════════════════════════════════════════════════════════ */

/* Button host — clip blobs, allow relative stacking */
.has-blob {
  position: relative !important;
  overflow: hidden !important;
}

/* Buttons that were solid green: make outlined so blobs are visible on hover */
.btn-add-cart.has-blob,
.btn-rel-buy.has-blob,
.bund-btn-buy.has-blob,
.btn-buy.has-blob,
.btn-buy-now.has-blob {
  background: transparent !important;
  color: #43A047 !important;
  border: 2px solid #43A047 !important;
  box-shadow: none !important;
  /* disable the original hover background that would cover blobs */
}
.btn-add-cart.has-blob:hover,
.btn-rel-buy.has-blob:hover,
.bund-btn-buy.has-blob:hover,
.btn-buy.has-blob:hover,
.btn-buy-now.has-blob:hover {
  background: transparent !important;
  transform: none !important;
  box-shadow: 0 6px 20px rgba(46,125,50,0.25) !important;
}

/* btn-solid (bundle "Buy Now" cards on homepage) — keep solid, blobs fill over gradient */
.btn-solid.has-blob {
  position: relative !important;
  overflow: hidden !important;
}
.btn-solid.has-blob:hover {
  transform: none !important;
}

/* Gold bundle button — blobs should be gold, not green */
.bund-btn-buy-gold.has-blob {
  background: transparent !important;
  color: #f59e0b !important;
  border: 2px solid #f59e0b !important;
}
.bund-btn-buy-gold.has-blob:hover {
  box-shadow: 0 6px 20px rgba(245,158,11,0.25) !important;
}
.bund-btn-buy-gold.has-blob .blob-buy__blob {
  background: #f59e0b;
}
.bund-btn-buy-gold.has-blob:hover .blob-buy__label {
  color: #fff;
}

/* Label span wrapping the original button content — always on top */
.blob-buy__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  pointer-events: none;
  transition: color 0.4s ease;
}

/* Text colour flips to white once blobs fill the button */
.has-blob:hover .blob-buy__label {
  color: #fff;
}
/* For btn-solid (bundle cards) that are already white text, keep it */
.btn-solid.has-blob:hover .blob-buy__label {
  color: #fff;
}

/* Blob layer — sits between button bg and the label */
.blob-buy__inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

/* Goo filter wrapper */
.blob-buy__blobs {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  filter: url('#goo-buy');
}

/* Each blob starts hidden below, rises on hover */
.blob-buy__blob {
  position: absolute;
  top: 2px;
  width: 25%;
  height: 100%;
  background: #43A047;
  border-radius: 100%;
  /* hidden below button */
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s ease;
  transition-delay: 0s; /* instant exit */
}

.blob-buy__blob:nth-child(1) { left: 0%;  }
.blob-buy__blob:nth-child(2) { left: 25%; }
.blob-buy__blob:nth-child(3) { left: 50%; }
.blob-buy__blob:nth-child(4) { left: 75%; }

/* Rise on hover with stagger (delays only on entry) */
.has-blob:hover .blob-buy__blob:nth-child(1) { transition-delay: 0s;    }
.has-blob:hover .blob-buy__blob:nth-child(2) { transition-delay: 0.08s; }
.has-blob:hover .blob-buy__blob:nth-child(3) { transition-delay: 0.16s; }
.has-blob:hover .blob-buy__blob:nth-child(4) { transition-delay: 0.24s; }

.has-blob:hover .blob-buy__blob {
  transform: translateZ(0) scale(1.7);
}


/* ══════════════════════════════════════════════════════════════
   SVG CART ICON — draw-on-hover animation
   ══════════════════════════════════════════════════════════════ */

.cart-svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Each path starts fully drawn */
.cart-svg-icon .svg-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: stroke-width 0.3s ease;
}

/* On hover of any parent button/link, stroke thickens */
.nav-cart:hover .svg-path,
.btn-add-cart:hover .svg-path,
.btn-details:hover .svg-path,
.bund-btn-cart:hover .svg-path,
.btn-buy:hover .svg-path {
  stroke-width: 2;
  animation: cart-draw 900ms ease-in-out forwards;
}

@keyframes cart-draw {
  0%   { stroke-dashoffset: 200; }
  100% { stroke-dashoffset: 0; }
}

/* Fix vertical alignment inside btn-add-cart flex layout */
.btn-add-cart,
.btn-details,
.bund-btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
