/*
Theme Name: Lightstack; Ohemaa Wordpress Theme
Theme URI: https://lightstacktechnologies.com/
Author: Lightstack Technologies
Author URI: https://lightstacktechnologies.com/
Description: Custom-coded WordPress theme for Ohemaa Fertile Home — natural fertility & womb wellness. Hand-built (no page builder), WooCommerce-ready, with a Conditions custom post type, WhatsApp ordering, and a sophisticated editorial design system. Headings use Aboreto; body uses Outfit; numerals use Oswald.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lightstack-ohemaa
Tags: custom-theme, woocommerce, fertility, wellness, business
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --forest:   #08251A;
  --pink:     #FB8BA7;
  --pink-deep:#E8538A;
  --pink-soft:#FDEFF3;
  --pink-mid: #F9C9D8;
  --sage:     #5F6F42;
  --sage-soft:#8FAE5D;
  --lime:     #DFE2B7;
  --white:    #FFFFFF;
  --off-white:#F5F4F0;
  --lt-green: #EEF2E4;
  --near-wh:  #FAFAF8;
  --gold:     #C9A96E;
  --cream:    #FAF6EE;
  --accent-dark: #123A28;
  --text:     #1A1A1A;
  --text-mid: #444;
  --text-lt:  #777;
  --border:   #E4E4E0;

  --display: 'Oswald', sans-serif;
  --body:    'Outfit', sans-serif;
  --brand:   'Aboreto', serif;
  --script:  'Caveat', cursive;

  --max: 1200px;
  --pad: 0 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--text); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--sage); }

/* ─── UTILITIES ─── */
.container { max-width: var(--max); margin: 0 auto; padding: var(--pad); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; display: block; }

h2.display {
  font-family: var(--brand); font-size: clamp(2.2rem, 3.6vw, 3.3rem);
  font-weight: 400; line-height: 1.14; letter-spacing: 0.03em;
  color: var(--forest);
}
h2.display em { font-style: normal; color: var(--sage); }
h2.display .pink { color: var(--pink); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 3px; cursor: pointer;
  transition: all 0.25s; border: none;
}
.btn-dark   { background: var(--forest); color: var(--white); }
.btn-dark:hover { background: #0f3d28; }
.btn-pink   { background: var(--pink);   color: var(--forest); }
.btn-pink:hover { background: #ff9db8; }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-outline-wh { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline-wh:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-wa { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #1dba58; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── NAV ─── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(250,246,238,0.85); backdrop-filter: blur(8px);
  transition: all 0.4s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 12px 48px;
  box-shadow: 0 1px 28px rgba(8,37,26,0.08);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 46px; width: auto; display: block; }
.nav-logo-text { font-family: var(--brand); font-size: 1.05rem; letter-spacing: 0.12em; color: var(--forest); line-height: 1.1; }
.nav-logo-text small { display: block; font-family: var(--body); font-size: 0.52rem; font-weight: 400; letter-spacing: 0.28em; color: var(--sage); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; margin: 0; }
.nav-links a { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.12em; color: rgba(8,37,26,0.7); text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links li.current-menu-item > a { color: var(--sage); }
.nav-links .nav-cta a, .nav-links a.nav-cta {
  background: var(--pink); color: var(--forest);
  padding: 9px 22px; border-radius: 3px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  transition: all 0.25s;
}
.nav-links .nav-cta a:hover, .nav-links a.nav-cta:hover { background: var(--forest); color: var(--white); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--forest); transition: all 0.3s; }
.mobile-menu { display: none; }
.mobile-menu-close { display: none; }
.mobile-menu-overlay { display: none; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--cream);
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.8s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg,
    rgba(250,246,238,0.97) 0%,
    rgba(250,246,238,0.93) 36%,
    rgba(250,246,238,0.7) 56%,
    rgba(250,246,238,0.25) 100%);
}
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max); margin: 0 auto; padding: var(--pad);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero-left { padding: 130px 0 70px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 26px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--sage); }
.hero-headline {
  font-family: var(--brand); font-size: clamp(2.1rem, 3.5vw, 3.4rem);
  font-weight: 400; line-height: 1.18;
  color: var(--forest); letter-spacing: 0.03em; margin-bottom: 26px; max-width: 600px;
}
.hero-headline .hl-pink { color: var(--pink); }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); max-width: 470px; margin-bottom: 42px;
}
.hero-sub .hl-pink { color: var(--pink); font-weight: 500; font-style: italic; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-credibility {
  margin-top: 56px; padding-top: 34px;
  border-top: 1px solid rgba(8,37,26,0.12);
  display: flex; gap: 44px;
}
.hero-cred-num { font-family: var(--display); font-size: 1.9rem; font-weight: 700; color: var(--forest); line-height: 1; }
.hero-cred-num span { color: var(--pink); }
.hero-cred-label { font-size: 0.72rem; font-weight: 400; color: var(--text-lt); letter-spacing: 0.08em; margin-top: 4px; }

.hero-right { position: relative; padding: 110px 0 60px; }
.hero-figure { position: relative; animation: heroRise 1.1s cubic-bezier(0.22,1,0.36,1) both; }
.hero-figure-img {
  position: relative; z-index: 2;
  aspect-ratio: 4/5; overflow: hidden; border-radius: 4px;
  box-shadow: 0 36px 80px rgba(8,37,26,0.28);
}
.hero-figure-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-figure-ring {
  position: absolute; top: 26px; right: -26px; bottom: 26px; left: -26px;
  border: 1px solid rgba(95,111,66,0.35); border-radius: 6px; z-index: 1;
}
.hero-figure-badge {
  position: absolute; bottom: -22px; left: -22px; z-index: 3;
  background: var(--gold); color: var(--forest);
  padding: 16px 20px; border-radius: 4px;
  box-shadow: 0 16px 40px rgba(201,169,110,0.45);
  animation: float 4.5s ease-in-out infinite;
}
.hero-figure-badge strong { display: block; font-family: var(--display); font-size: 1.5rem; font-weight: 700; line-height: 1; }
.hero-figure-badge span { font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-figure-leaf {
  position: absolute; top: -34px; right: -10px; z-index: 3;
  opacity: 0.9; animation: float 5.5s 0.6s ease-in-out infinite;
}
@keyframes heroRise { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ─── TRUST STRIP ─── */
.trust-strip { background: var(--lime); padding: 16px 0; overflow: hidden; }
.trust-marquee { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.trust-inner { display: flex; flex-shrink: 0; align-items: center; }
.trust-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 40px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest);
}
.trust-item .sep { width: 4px; height: 4px; background: var(--sage); border-radius: 50%; flex-shrink: 0; }

/* ─── WHO THIS IS FOR ─── */
.intro-section { background: var(--white); padding: 96px 0; }
.intro-top {
  max-width: var(--max); margin: 0 auto; padding: var(--pad);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: end;
  margin-bottom: 64px;
}
.intro-left h2.display { max-width: 380px; }
.intro-right p {
  font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--text-mid);
  max-width: 520px; margin-bottom: 28px;
}
.intro-right a.text-link { font-size: 0.82rem; font-weight: 600; color: var(--sage); letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 1px solid var(--sage); padding-bottom: 2px; transition: gap 0.2s; display: inline-flex; align-items: center; gap: 6px; }
.intro-right a.text-link:hover { gap: 10px; }

.pain-grid {
  max-width: var(--max); margin: 0 auto; padding: var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pain-card {
  background: var(--white); padding: 48px 36px 40px;
  min-height: 440px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.35s, box-shadow 0.4s;
}
.pain-card.reveal:nth-child(2) { transition-delay: 0.13s, 0.13s, 0s, 0s; }
.pain-card.reveal:nth-child(3) { transition-delay: 0.26s, 0.26s, 0s, 0s; }
.pain-card.visible:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(8,37,26,0.1); }
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--pink));
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease;
}
.pain-card:hover { background: var(--near-wh); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--lt-green); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: all 0.4s;
}
.pain-card:hover .pain-icon-wrap { background: var(--sage); transform: rotate(-6deg) scale(1.05); }
.pain-icon { width: 34px; height: 34px; transition: all 0.4s; }
.pain-desc-wrap { margin-top: auto; }
.pain-title {
  font-family: var(--brand); font-size: 1.02rem; font-weight: 400;
  letter-spacing: 0.04em; color: var(--forest);
  margin-bottom: 12px; line-height: 1.3;
}
.pain-desc { font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: var(--text-mid); }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--lt-green); padding: 72px 0; }
.stats-inner {
  max-width: var(--max); margin: 0 auto; padding: var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(95,111,66,0.15);
  border: 1px solid rgba(95,111,66,0.15);
}
.stat-item { background: var(--lt-green); padding: 40px 36px; transition: background 0.3s; }
.stat-item:hover { background: #e5ebda; }
.stat-num {
  font-family: var(--display); font-size: 3.4rem; font-weight: 700;
  color: var(--forest); line-height: 1; margin-bottom: 8px;
}
.stat-num sup { font-size: 1.6rem; vertical-align: super; color: var(--sage); }
.stat-label { font-size: 0.8rem; font-weight: 300; color: var(--text-mid); letter-spacing: 0.06em; line-height: 1.5; }

/* ─── MEET OHEMAA ─── */
.meet-section { background: var(--white); padding: 96px 0; }
.meet-inner {
  max-width: var(--max); margin: 0 auto; padding: var(--pad);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: center;
}
.meet-img { position: relative; }
.meet-img-frame { aspect-ratio: 3/4; overflow: hidden; }
.meet-img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.meet-img-tag {
  position: absolute; bottom: -12px; right: -12px;
  background: var(--forest); color: var(--lime);
  padding: 20px 24px; font-size: 0.7rem;
  letter-spacing: 0.1em; line-height: 1.7; text-transform: uppercase;
  max-width: 150px; text-align: center;
}
.meet-img-tag strong { display: block; font-family: var(--display); font-size: 1.5rem; color: var(--pink); margin-bottom: 2px; line-height: 1; }
.meet-text .eyebrow { color: var(--sage); }
.meet-text h2.display { margin-bottom: 28px; }
.meet-body { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-bottom: 20px; }
.meet-emphasis { font-size: 1.12rem; font-style: italic; font-weight: 400; color: var(--sage); line-height: 1.5; margin: 26px 0; padding-left: 18px; border-left: 2px solid var(--gold); }
.meet-pull {
  border-left: 2px solid var(--pink); padding: 16px 24px;
  background: rgba(251,139,167,0.05); margin: 28px 0 32px;
  font-size: 0.92rem; font-style: italic; line-height: 1.75; color: var(--forest);
}
.meet-sig { font-family: var(--brand); font-size: 1rem; color: var(--sage); letter-spacing: 0.08em; }
.meet-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── CONDITIONS BAND ─── */
.conditions-band { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--sage) 220%); overflow: hidden; }
.conditions-band-header { padding: 72px 48px 48px; max-width: var(--max); margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.conditions-band-header h2.display { color: var(--white); }
.conditions-band-header h2.display em { color: var(--lime); }
.conditions-band-header p { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.5); max-width: 380px; line-height: 1.75; }
.conditions-scroll-wrap { overflow: hidden; padding: 8px 0 56px; }
.conditions-scroll { display: flex; animation: marquee 24s linear infinite; }
.conditions-scroll-inner { display: flex; flex-shrink: 0; align-items: center; gap: 0; }
.cond-pill {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 8px;
  padding: 10px 22px; border: 1px solid rgba(223,226,183,0.18);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(223,226,183,0.7); white-space: nowrap; transition: all 0.25s;
}
.cond-pill:hover { border-color: var(--lime); color: var(--lime); }
.cond-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

/* ─── HOW IT WORKS ─── */
.process-section { background: var(--off-white); padding: 96px 0; }
.process-inner { max-width: var(--max); margin: 0 auto; padding: var(--pad); }
.process-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 64px; flex-wrap: wrap; }
.process-top p { font-size: 0.95rem; font-weight: 300; color: var(--text-mid); max-width: 400px; line-height: 1.8; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.process-card { background: var(--off-white); padding: 40px 32px 44px; min-height: 320px; position: relative; overflow: hidden; transition: background 0.35s; }
.process-card::after { content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--sage); transform: scaleX(0); transform-origin: left; transition: transform 0.45s ease; }
.process-card:hover { background: #eeece7; }
.process-card:hover::after { transform: scaleX(1); }
.process-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.process-num { font-family: var(--display); font-size: 3rem; font-weight: 700; color: rgba(8,37,26,0.1); line-height: 1; transition: color 0.4s; }
.process-card:hover .process-num { color: rgba(95,111,66,0.35); }
.process-icon { width: 30px; height: 30px; transition: transform 0.4s; }
.process-card:hover .process-icon { transform: translateY(-3px) scale(1.08); }
.process-title { font-family: var(--brand); font-size: 1.05rem; font-weight: 400; letter-spacing: 0.04em; color: var(--forest); margin-bottom: 12px; line-height: 1.3; }
.process-desc { font-size: 0.83rem; font-weight: 300; line-height: 1.75; color: var(--text-mid); }

/* ─── TESTIMONIALS ─── */
.testi-section { background: var(--white); padding: 96px 0; }
.testi-inner { max-width: var(--max); margin: 0 auto; padding: var(--pad); }
.testi-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; }
.testi-nav { display: flex; gap: 8px; }
.testi-nav-btn {
  width: 44px; height: 44px; background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  border-radius: 3px; color: var(--forest); transition: all 0.25s;
}
.testi-nav-btn:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }
.testi-carousel { overflow: hidden; }
.testi-track { display: flex; transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testi-slide { min-width: 100%; }
.testi-card {
  background: var(--lt-green); padding: 56px 64px; position: relative;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: start;
}
.testi-quote-glyph { font-family: Georgia, serif; font-size: 6rem; line-height: 0.6; color: rgba(95,111,66,0.2); margin-bottom: 24px; display: block; }
.testi-text { font-size: 1.15rem; font-weight: 300; line-height: 1.85; color: var(--forest); font-style: italic; margin-bottom: 36px; max-width: 680px; }
.testi-author-row { display: flex; align-items: center; gap: 14px; }
.testi-initials { width: 44px; height: 44px; background: var(--sage); color: var(--lime); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 0.85rem; font-weight: 600; flex-shrink: 0; }
.testi-name { font-size: 0.9rem; font-weight: 600; color: var(--forest); }
.testi-location { font-size: 0.75rem; color: var(--text-lt); letter-spacing: 0.04em; margin-top: 2px; }
.testi-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.testi-stars { font-size: 0.9rem; color: var(--gold); letter-spacing: 2px; }
.testi-badge { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 7px 14px; background: var(--sage); color: var(--white); }
.testi-dots { display: flex; gap: 6px; align-items: center; margin-top: 24px; }
.testi-dot { width: 6px; height: 6px; background: var(--border); border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.testi-dot.active { background: var(--sage); width: 20px; border-radius: 2px; }

/* ─── PRODUCTS ─── */
.shop-section { background: var(--lt-green); padding: 96px 0; }
.shop-inner { max-width: var(--max); margin: 0 auto; padding: var(--pad); }
.shop-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 24px; flex-wrap: wrap; }
.see-all { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); border-bottom: 1px solid var(--forest); padding-bottom: 2px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.see-all:hover { gap: 10px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--white); overflow: hidden; border: 1px solid rgba(8,37,26,0.06); transition: box-shadow 0.4s, transform 0.4s; }
.product-card:hover { box-shadow: 0 24px 56px rgba(8,37,26,0.14); transform: translateY(-6px); }
.product-img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,37,26,0.28) 100%);
  opacity: 0.7; transition: opacity 0.4s;
}
.product-card:hover .product-img::after { opacity: 1; }
.product-tag-pill { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 13px; background: var(--forest); color: var(--lime); transition: transform 0.4s; }
.product-card:hover .product-tag-pill { transform: translateY(-2px); }
.product-tag-pill.best { background: var(--pink); color: var(--forest); }
.product-body { padding: 28px 24px; }
.product-name { font-family: var(--brand); font-size: 1.05rem; font-weight: 400; letter-spacing: 0.04em; color: var(--forest); margin-bottom: 10px; line-height: 1.3; }
.product-name a { color: inherit; }
.product-desc { font-size: 0.82rem; font-weight: 300; line-height: 1.65; color: var(--text-mid); margin-bottom: 24px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.product-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--forest); color: var(--lime);
  padding: 9px 18px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; transition: background 0.25s;
}
.product-btn:hover { background: var(--sage); }

/* ─── BOOK ─── */
.book-section { background: var(--white); padding: 96px 0; border-top: 1px solid var(--border); }
.book-inner { max-width: var(--max); margin: 0 auto; padding: var(--pad); display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.book-cover-area { position: relative; }
.book-cover-img { width: 100%; max-width: 300px; margin: 0 auto; display: block; aspect-ratio: 0.66; object-fit: cover; border-radius: 4px; box-shadow: -6px 8px 40px rgba(0,0,0,0.35), 6px 0 0 rgba(255,255,255,0.06); animation: float 6s ease-in-out infinite; }
.book-visual {
  width: 100%; max-width: 300px; margin: 0 auto;
  aspect-ratio: 0.68;
  background: linear-gradient(150deg, var(--forest) 0%, var(--sage) 55%, var(--pink) 100%);
  box-shadow: -6px 8px 40px rgba(0,0,0,0.35), 6px 0 0 rgba(255,255,255,0.06);
  display: flex; align-items: flex-end; justify-content: center; padding: 28px;
  text-align: center;
}
.book-visual-title { font-family: var(--brand); font-size: 1.4rem; font-weight: 400; letter-spacing: 0.08em; color: var(--white); line-height: 1.25; margin-bottom: 8px; }
.book-visual-author { font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.book-text .eyebrow { color: var(--sage); }
.book-text h2.display { margin-bottom: 24px; }
.book-desc { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-bottom: 16px; }
.book-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── BLOG ─── */
.blog-section { background: var(--off-white); padding: 96px 0; }
.blog-inner { max-width: var(--max); margin: 0 auto; padding: var(--pad); }
.blog-top { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 24px; flex-wrap: wrap; }
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.blog-card { background: var(--white); overflow: hidden; border: 1px solid var(--border); transition: all 0.35s; }
.blog-card:hover { box-shadow: 0 12px 40px rgba(8,37,26,0.08); transform: translateY(-3px); }
.blog-img { height: 200px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat { position: absolute; bottom: 12px; left: 14px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--sage); color: var(--white); padding: 4px 12px; }
.blog-body { padding: 24px; }
.blog-date { font-size: 0.68rem; letter-spacing: 0.1em; color: var(--text-lt); text-transform: uppercase; margin-bottom: 10px; }
.blog-title { font-family: var(--brand); font-size: 1.02rem; font-weight: 400; letter-spacing: 0.03em; color: var(--forest); line-height: 1.4; margin-bottom: 12px; }
.blog-title a { color: inherit; }
.blog-excerpt { font-size: 0.8rem; font-weight: 300; line-height: 1.65; color: var(--text-mid); margin-bottom: 20px; }
.blog-read { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.blog-read:hover { gap: 9px; }

/* ─── APP / NOTIFY ─── */
.notify-section { background: var(--lt-green); padding: 72px 0; }
.notify-inner { max-width: 600px; margin: 0 auto; padding: var(--pad); text-align: center; }
.notify-inner .eyebrow { justify-content: center; }
.notify-inner h2.display { margin-bottom: 16px; }
.notify-inner p { font-size: 0.95rem; font-weight: 300; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; }
.notify-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.notify-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.notify-input { flex: 1; padding: 13px 20px; border: 1.5px solid var(--border); border-right: none; font-family: var(--body); font-size: 0.85rem; background: var(--white); outline: none; transition: border-color 0.25s; border-radius: 3px 0 0 3px; }
.notify-input:focus { border-color: var(--sage); }
.notify-input::placeholder { color: var(--text-lt); }
.notify-btn { background: var(--forest); color: var(--white); border: none; padding: 13px 24px; font-family: var(--body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.25s; border-radius: 0 3px 3px 0; flex-shrink: 0; }
.notify-btn:hover { background: var(--sage); }
@media (max-width: 480px) { .notify-form { flex-direction: column; } .notify-input { border-right: 1.5px solid var(--border); border-radius: 3px; margin-bottom: 10px; } .notify-btn { border-radius: 3px; } }

/* ─── FAQ ─── */
.faq-section { background: var(--white); padding: 96px 0; }
.faq-inner { max-width: 760px; margin: 0 auto; padding: var(--pad); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .eyebrow { justify-content: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; cursor: pointer; user-select: none; }
.faq-q-text { font-size: 0.95rem; font-weight: 500; color: var(--forest); transition: color 0.2s; }
.faq-q:hover .faq-q-text { color: var(--sage); }
.faq-icon { width: 26px; height: 26px; background: var(--forest); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 300; flex-shrink: 0; transition: all 0.3s; border-radius: 2px; line-height: 1; }
.faq-item.open .faq-icon { background: var(--sage); transform: rotate(45deg); }
.faq-a { font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: var(--text-mid); max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 320px; padding-bottom: 22px; }

/* ─── CTA BAND ─── */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #0c2c1e 100%); padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.08; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: var(--pad); text-align: center; }
.cta-inner .eyebrow { justify-content: center; color: var(--lime); }
.cta-inner .eyebrow::before { background: var(--lime); }
.cta-inner h2.display { color: var(--white); font-size: clamp(2.4rem, 4.5vw, 4rem); margin-bottom: 20px; }
.cta-inner h2.display .pink { color: var(--pink); }
.cta-inner p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 44px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── GENERIC PAGE / ARTICLE ─── */
.page-shell { padding: 150px 0 96px; }
.page-shell .container { max-width: 820px; }
.entry-header { margin-bottom: 40px; }
.entry-header .entry-title { font-family: var(--brand); font-size: clamp(2rem,3.4vw,3rem); font-weight: 400; letter-spacing: 0.03em; color: var(--forest); line-height: 1.18; }
.entry-meta { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-lt); margin-top: 14px; }
.entry-featured { margin: 0 0 40px; border-radius: 4px; overflow: hidden; }
.entry-content { font-size: 1rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); }
.entry-content h2 { font-family: var(--brand); font-weight: 400; color: var(--forest); letter-spacing: 0.02em; font-size: 1.7rem; margin: 40px 0 16px; }
.entry-content h3 { font-family: var(--brand); font-weight: 400; color: var(--forest); font-size: 1.3rem; margin: 32px 0 14px; }
.entry-content p { margin-bottom: 20px; }
.entry-content a { color: var(--sage); border-bottom: 1px solid var(--sage); }
.entry-content ul, .entry-content ol { margin: 0 0 22px 22px; }
.entry-content li { margin-bottom: 10px; }
.entry-content blockquote { border-left: 2px solid var(--pink); background: rgba(251,139,167,0.05); padding: 18px 24px; margin: 28px 0; font-style: italic; color: var(--forest); }
.entry-content img { border-radius: 4px; margin: 24px 0; }

/* Archive grid (blog) */
.archive-shell { padding: 150px 0 96px; background: var(--off-white); }
.archive-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.archive-head h1 { font-family: var(--brand); font-size: clamp(2.2rem,3.6vw,3.2rem); font-weight: 400; color: var(--forest); letter-spacing: 0.03em; }
.archive-head p { font-size: 0.95rem; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin-top: 14px; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--border); background: var(--white); color: var(--forest); font-size: 0.82rem; font-weight: 500; border-radius: 3px; transition: all 0.2s; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--forest); color: var(--white); border-color: var(--forest); }

/* ─── CONDITION (CPT) ─── */
.cond-detail-hero { padding: 150px 0 70px; background: linear-gradient(120deg, var(--lt-green), var(--cream)); }
.cond-detail-inner { max-width: var(--max); margin: 0 auto; padding: var(--pad); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center; }
.cond-detail-title { font-family: var(--brand); font-size: clamp(2.2rem,3.8vw,3.4rem); font-weight: 400; color: var(--forest); letter-spacing: 0.03em; line-height: 1.15; margin: 14px 0 20px; }
.cond-detail-intro { font-size: 1.02rem; font-weight: 300; line-height: 1.85; color: var(--text-mid); margin-bottom: 30px; }
.cond-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cond-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cond-detail-figure { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; box-shadow: 0 30px 70px rgba(8,37,26,0.22); }
.cond-detail-figure img { width: 100%; height: 100%; object-fit: cover; }
.cond-body { padding: 80px 0; background: var(--white); }
.cond-body-inner { max-width: 820px; margin: 0 auto; padding: var(--pad); }
.cond-block { margin-bottom: 48px; }
.cond-block h2 { font-family: var(--brand); font-weight: 400; color: var(--forest); font-size: 1.7rem; letter-spacing: 0.02em; margin-bottom: 18px; }
.cond-block p { font-size: 0.98rem; font-weight: 300; line-height: 1.9; color: var(--text-mid); margin-bottom: 16px; }
.cond-symptoms { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.cond-symptoms li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; font-weight: 300; color: var(--text-mid); }
.cond-symptoms li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--pink); margin-top: 8px; flex-shrink: 0; }

/* ─── WOOCOMMERCE TWEAKS ─── */
.woo-shell { padding: 150px 0 96px; }
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit,
.woocommerce-page .button {
  background: var(--forest) !important; color: var(--lime) !important;
  border-radius: 2px !important; text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; font-family: var(--body);
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--sage) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--brand); color: var(--forest); }
.btn-whatsapp-order { background: #25D366 !important; color: #fff !important; }
.btn-whatsapp-order:hover { background: #1dba58 !important; }

/* ─── KEYFRAMES ─── */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── FOOTER ─── */
.site-footer { background: #020e09; padding: 64px 0 36px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: var(--pad); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: 16px; }
.footer-logo { font-family: var(--brand); font-size: 1.1rem; letter-spacing: 0.12em; color: var(--white); margin-bottom: 4px; }
.footer-logo-sub { font-size: 0.62rem; letter-spacing: 0.25em; color: var(--lime); text-transform: uppercase; margin-bottom: 18px; }
.footer-tagline { font-size: 0.82rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.85); max-width: 230px; }
.footer-col h4 { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.8rem; font-weight: 300; color: rgba(255,255,255,0.92); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--lime); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.72rem; font-weight: 300; color: rgba(255,255,255,0.8); }
.footer-socials { display: flex; gap: 10px; }
.soc-icon { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.45); display: flex; align-items: center; justify-content: center; color: #ffffff; transition: all 0.25s; border-radius: 2px; }
.soc-icon:hover { border-color: var(--lime); color: var(--lime); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { padding: 150px 0 20px; }
  .hero-right { padding: 0 0 70px; max-width: 440px; }
  .hero-scrim { background: linear-gradient(180deg, rgba(250,246,238,0.96) 0%, rgba(250,246,238,0.86) 55%, rgba(250,246,238,0.92) 100%); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .archive-grid { grid-template-columns: 1fr 1fr; }
  .cond-detail-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .site-nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  :root { --pad: 0 24px; }
  .hero-left { padding: 140px 0 16px; }
  .hero-headline { font-size: clamp(1.9rem, 6.5vw, 2.6rem); }
  .hero-credibility { gap: 28px; }
  .intro-top { grid-template-columns: 1fr; gap: 32px; }
  .pain-grid { grid-template-columns: 1fr; }
  .meet-inner { grid-template-columns: 1fr; gap: 48px; }
  .meet-img-frame { max-width: 400px; }
  .testi-card { grid-template-columns: 1fr; gap: 24px; padding: 40px 28px; }
  .testi-right { align-items: flex-start; flex-direction: row; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .book-inner { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid, .archive-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cond-symptoms { grid-template-columns: 1fr; }
  /* Mobile menu */
  .mobile-menu.open { display: block; position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 330px; background: var(--cream); z-index: 250; padding: 88px 32px 40px; box-shadow: -10px 0 40px rgba(8,37,26,0.18); overflow-y: auto; }
  .mobile-menu ul { list-style: none; }
  .mobile-menu ul li { margin-bottom: 8px; border-bottom: 1px solid var(--border); }
  .mobile-menu ul a { display: block; padding: 14px 0; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); }
  .mobile-menu.open .mobile-menu-close { display: flex; position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border); border-radius: 50%; font-size: 1.6rem; line-height: 1; color: var(--forest); cursor: pointer; }
  .mobile-menu-overlay.open { display: block; position: fixed; inset: 0; background: rgba(8,37,26,0.45); z-index: 240; backdrop-filter: blur(2px); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .testi-text { font-size: 1rem; }
}
