/* ============================================================
   ORELYA SKIN — Main Stylesheet
   ============================================================ */

/* ---- Variables ---- */
:root {
  --cream: #FAF8F4;
  --cream-dark: #F2EDE4;
  --cream-medium: #E8E2D8;
  --green: #2C3E2D;
  --green-light: #4A6741;
  --green-muted: #6B8A5E;
  --gold: #C9A96E;
  --gold-dark: #A8834A;
  --gold-light: #EDD9A3;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --text-light: #9A9A9A;
  --white: #FFFFFF;
  --border: #DDD9D0;
  --shadow: rgba(44, 62, 45, 0.1);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --section-padding: 100px 0;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

/* ---- Typography ---- */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: 12px;
}

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-padding); }
.text-center { text-align: center; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--green); margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border-radius: 50px; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; transition: all 0.3s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(44,62,45,.3); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,169,110,.4); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 20px 52px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* ---- Stars ---- */
.stars { color: var(--gold); letter-spacing: 2px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--green); color: var(--white); text-align: center;
  padding: 11px 48px; font-size: 0.8rem; letter-spacing: 0.05em; position: relative;
}
.announcement-bar a { color: var(--gold-light); font-weight: 600; }
.ann-close {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.5); font-size: 1.3rem; line-height: 1; cursor: pointer;
  background: none; border: none; color: rgba(255,255,255,.6);
}
.ann-close:hover { color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250,248,244,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 20px var(--shadow); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 28px; max-width: var(--max-width); margin: 0 auto;
}
.nav__logo { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 700; color: var(--green); }
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500; color: var(--text); transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .3s;
}
.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.nav__cart {
  display: flex; align-items: center; gap: 8px; padding: 10px 22px;
  background: var(--green); color: var(--white); border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; transition: all .2s;
}
.nav__cart:hover { background: var(--green-light); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; padding: 80px 0; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; right: 0; top: 0; width: 52%; height: 100%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream-medium) 100%);
  border-radius: 60px 0 0 60px; z-index: 0;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: var(--gold-light); border-radius: 50px; font-size: 0.78rem;
  font-weight: 700; color: var(--gold-dark); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero__title { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; color: var(--green); margin-bottom: 24px; }
.hero__title em { font-style: italic; color: var(--gold-dark); }
.hero__subtitle { font-size: 1.08rem; color: var(--text-muted); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero__trust { display: flex; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__social { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 20px; }
.hero__social-text { font-size: 0.83rem; color: var(--text-muted); }
.hero__social-text strong { color: var(--text); }
.hero__visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }

/* ---- Jar CSS Art ---- */
.jar-scene {
  position: relative; width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.jar-scene img {
  filter: drop-shadow(0 24px 48px rgba(44,62,45,.22));
  animation: floatB 6s ease-in-out infinite;
}
.botanical { position: absolute; font-size: 2.4rem; user-select: none; animation: floatB 6s ease-in-out infinite; }
.b1 { top: 10px; left: 14px; animation-delay: 0s; }
.b2 { top: 30px; right: 8px; font-size: 2rem; animation-delay: 1s; }
.b3 { bottom: 90px; left: 0; animation-delay: 2s; }
.b4 { bottom: 70px; right: 18px; font-size: 1.8rem; animation-delay: 3s; }
.b5 { top: 140px; left: -6px; font-size: 1.5rem; animation-delay: 1.5s; }
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-14px) rotate(-6deg); }
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar { background: var(--green); color: var(--white); padding: 22px 0; }
.proof-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-bar__item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; }
.proof-bar__number { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-light); }
.proof-bar__divider { width: 1px; height: 32px; background: rgba(255,255,255,.15); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after { padding: var(--section-padding); background: var(--white); }
.ba-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.ba-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px var(--shadow); }
.ba-card__images { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); }
.ba-card__img { aspect-ratio: 3/4; position: relative; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; }
.ba-card__img--before { background: linear-gradient(160deg, #c49090 0%, #a87070 100%); }
.ba-card__img--after { background: linear-gradient(160deg, #e8d8c8 0%, #d8c8a8 100%); }
.ba-label { background: rgba(255,255,255,.9); padding: 2px 8px; border-radius: 4px; font-size: 0.62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); }
.ba-card__info { padding: 16px; background: var(--cream); }
.ba-card__name { font-weight: 700; font-size: 0.875rem; margin-bottom: 2px; }
.ba-card__details { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.ba-card__quote { font-size: 0.78rem; color: var(--text-muted); font-style: italic; line-height: 1.5; }

/* ============================================================
   PRESS
   ============================================================ */
.press { padding: 60px 0; background: var(--cream-dark); text-align: center; }
.press__label { font-size: 0.72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 32px; }
.press__logos { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; margin-bottom: 32px; }
.press__logo { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--text-muted); opacity: .55; letter-spacing: .04em; transition: all .2s; }
.press__logo:hover { opacity: 1; color: var(--green); }
.press__quote { font-family: var(--font-serif); font-size: 1.2rem; font-style: italic; color: var(--text); max-width: 580px; margin: 0 auto; }
.press__quote-source { font-family: var(--font-sans); font-size: 0.8rem; color: var(--text-muted); font-style: normal; margin-top: 8px; display: block; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { padding: var(--section-padding); background: var(--green); color: var(--white); position: relative; overflow: hidden; }
.problem::before {
  content: ''; position: absolute; top: -40%; right: -8%; width: 560px; height: 560px;
  border-radius: 50%; background: rgba(255,255,255,.03);
}
.problem__content { max-width: 680px; position: relative; z-index: 1; }
.problem .section-label { color: var(--gold-light); }
.problem h2 { font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--white); margin: 16px 0 28px; }
.problem h2 span { color: var(--gold-light); display: block; }
.problem p { font-size: 1.08rem; line-height: 1.8; color: rgba(255,255,255,.8); margin-bottom: 16px; }

/* ============================================================
   DIFFERENTIATOR
   ============================================================ */
.differentiator { padding: var(--section-padding); background: var(--white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.feature-card { padding: 40px 30px; border-radius: var(--radius-lg); background: var(--cream); border: 1px solid var(--border); transition: all .3s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px var(--shadow); border-color: var(--gold); }
.feature-card__icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.feature-card__title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--green); margin-bottom: 12px; }
.feature-card__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients { padding: var(--section-padding); background: var(--cream-dark); }
.ingredient-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ingredient-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  position: relative; overflow: hidden; transition: all .3s; border: 1px solid transparent;
}
.ingredient-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-muted));
}
.ingredient-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px var(--shadow); border-color: var(--border); }
.ingredient-card__emoji { font-size: 2.3rem; margin-bottom: 14px; display: block; }
.ingredient-card__name { font-family: var(--font-serif); font-size: 1.1rem; color: var(--green); margin-bottom: 6px; }
.ingredient-card__badge {
  display: inline-block; padding: 3px 10px; background: var(--gold-light); color: var(--gold-dark);
  font-size: 0.68rem; font-weight: 700; border-radius: 50px; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 10px;
}
.ingredient-card__text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison { padding: var(--section-padding); background: var(--white); }
.comparison-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 10px 40px var(--shadow); }
.comparison-table th { padding: 20px 22px; font-size: 0.85rem; font-weight: 700; text-align: center; }
.comparison-table th:first-child { text-align: left; }
.comparison-table thead { background: var(--cream-dark); }
.comparison-table .col-orelya { background: var(--green); color: var(--white); }
.col-badge { display: inline-block; padding: 3px 10px; background: var(--gold); border-radius: 50px; font-size: 0.65rem; margin-top: 4px; font-weight: 700; }
.comparison-table td { padding: 17px 22px; font-size: 0.875rem; border-bottom: 1px solid var(--border); text-align: center; }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); background: var(--cream); }
.comparison-table .check { color: #3a9a4a; font-size: 1.2rem; font-weight: 700; }
.comparison-table .cross { color: #d94f4f; font-size: 1.1rem; }
.comparison-table .maybe { color: var(--gold-dark); font-size: 0.85rem; }
.comparison-table .col-orelya-td { background: rgba(44,62,45,.04); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   RITUAL
   ============================================================ */
.ritual { padding: var(--section-padding); background: var(--cream-dark); }
.ritual-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.ritual-steps::before {
  content: ''; position: absolute; top: 56px; left: 20%; right: 20%;
  height: 2px; background: var(--border); z-index: 0;
}
.ritual-step { text-align: center; position: relative; z-index: 1; }
.ritual-step__number {
  width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: var(--white);
  font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  box-shadow: 0 8px 20px rgba(44,62,45,.3);
}
.ritual-step__timing {
  display: inline-block; padding: 4px 12px; background: var(--gold-light); color: var(--gold-dark);
  font-size: 0.72rem; font-weight: 700; border-radius: 50px; margin-bottom: 14px;
  letter-spacing: .08em; text-transform: uppercase;
}
.ritual-step__title { font-family: var(--font-serif); font-size: 1.35rem; color: var(--green); margin-bottom: 12px; }
.ritual-step__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   STATS / SCIENCE
   ============================================================ */
.science { padding: var(--section-padding); background: var(--green); color: var(--white); }
.science .section-label { color: var(--gold-light); }
.science .section-header h2 { color: var(--white); }
.science .section-header p { color: rgba(255,255,255,.7); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 36px 20px; border: 1px solid rgba(255,255,255,.08); }
.stat-item__number { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 10px; }
.stat-item__label { font-size: 0.85rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.doctor-block {
  margin-top: 72px; background: rgba(255,255,255,.06); border-radius: var(--radius-lg);
  padding: 48px; display: grid; grid-template-columns: auto 1fr; gap: 40px;
  align-items: center; border: 1px solid rgba(255,255,255,.1);
}
.doctor-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; border: 3px solid rgba(255,255,255,.2); flex-shrink: 0;
}
.doctor-quote { font-family: var(--font-serif); font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,.9); line-height: 1.75; margin-bottom: 14px; }
.doctor-name { font-size: 0.875rem; color: var(--gold-light); font-weight: 600; }
.doctor-role { font-size: 0.78rem; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: var(--section-padding); background: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: 0 4px 20px var(--shadow); border: 1px solid var(--border); transition: transform .3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-card__stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-card__text { font-size: 0.88rem; line-height: 1.75; color: var(--text); margin-bottom: 20px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--cream-medium));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--gold-dark); font-size: 0.9rem; flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: 0.875rem; }
.review-card__meta { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.review-card__verified { display: inline-flex; align-items: center; gap: 4px; font-size: 0.7rem; color: #3a9a4a; font-weight: 600; margin-top: 3px; }

/* ============================================================
   TRUST
   ============================================================ */
.trust { padding: var(--section-padding); background: var(--cream-dark); }
.trust__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.trust__content .section-label { text-align: left; }
.trust__content h2 { font-size: clamp(2rem, 3.5vw, 2.7rem); color: var(--green); margin: 0 0 24px; line-height: 1.2; }
.trust__content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 14px; }
.trust__badges { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.trust__badge {
  display: flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: var(--white); border-radius: var(--radius-sm); font-size: 0.78rem;
  font-weight: 600; color: var(--green); border: 1px solid var(--border);
}
.trust__image {
  border-radius: var(--radius-lg); aspect-ratio: 4/5;
  background: linear-gradient(145deg, #c2d8be 0%, #7aaa6a 60%, #4a7a3a 100%);
  display: flex; align-items: center; justify-content: center; font-size: 7rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-padding); background: var(--white); }
.faq-list { max-width: 760px; margin: 64px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 22px 0; font-size: 0.97rem; font-weight: 600;
  color: var(--text); display: flex; align-items: center; justify-content: space-between;
  gap: 16px; background: none; cursor: pointer; transition: color .2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.3rem; color: var(--green); transition: all .3s; font-weight: 300;
}
.faq-item.active .faq-icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-answer.open { max-height: 500px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 120px 0; background: var(--cream); text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%); opacity: .35;
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--green); margin: 16px 0 22px; }
.final-cta p { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 44px; }
.final-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta__trust { margin-top: 32px; font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.final-cta__trust span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green); color: rgba(255,255,255,.75); padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }
.footer__logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer__logo span { color: var(--gold-light); }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background .2s; }
.footer__social:hover { background: var(--gold); }
.footer__heading { font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__newsletter-label { font-size: 0.78rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.footer__newsletter { display: flex; }
.footer__email { flex: 1; padding: 12px 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-right: none; border-radius: var(--radius-sm) 0 0 var(--radius-sm); color: var(--white); font-size: 0.875rem; font-family: var(--font-sans); outline: none; }
.footer__email::placeholder { color: rgba(255,255,255,.35); }
.footer__email-btn { padding: 12px 18px; background: var(--gold); color: var(--white); border: none; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: background .2s; font-family: var(--font-sans); }
.footer__email-btn:hover { background: var(--gold-dark); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.35); }
.footer__payments { display: flex; gap: 6px; align-items: center; }
.pay-badge { padding: 4px 10px; background: rgba(255,255,255,.1); border-radius: 4px; font-size: 0.68rem; color: rgba(255,255,255,.5); font-weight: 700; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--white); z-index: 2000; padding: 80px 32px 40px;
  box-shadow: -10px 0 40px var(--shadow); transition: right .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 28px;
}
.mobile-menu.open { right: 0; }
.mobile-menu__close { position: absolute; top: 22px; right: 22px; font-size: 1.6rem; cursor: pointer; background: none; border: none; color: var(--text); }
.mobile-menu__links { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu__links a { font-size: 1.15rem; font-family: var(--font-serif); color: var(--green); font-weight: 600; transition: color .2s; }
.mobile-menu__links a:hover { color: var(--gold-dark); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.breadcrumb { padding: 16px 0; font-size: 0.78rem; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 8px; color: var(--border); }

.product-hero { padding: 40px 0 80px; background: var(--white); }
.product-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.product-gallery { position: sticky; top: 100px; }
.product-gallery__main {
  border-radius: var(--radius-lg); background: #fff; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  overflow: hidden; transition: all .3s;
}
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumb {
  aspect-ratio: 1; border-radius: var(--radius-sm); background: #fff;
  cursor: pointer; border: 2px solid transparent; transition: border-color .2s;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.thumb.active { border-color: var(--green); }

.product-info__rating { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.product-info__review-count { font-size: 0.85rem; color: var(--green); text-decoration: underline; cursor: pointer; }
.product-info__title { font-family: var(--font-serif); font-size: 2.1rem; color: var(--green); margin-bottom: 6px; line-height: 1.2; }
.product-info__subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.product-info__benefits { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text); }
.benefit-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; flex-shrink: 0; }

.supply-label { font-size: 0.875rem; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.supply-option {
  display: flex; align-items: center; gap: 14px; padding: 15px 18px;
  border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer;
  margin-bottom: 10px; transition: all .2s; position: relative;
}
.supply-option.selected { border-color: var(--green); background: rgba(44,62,45,.04); }
.supply-option__popular {
  position: absolute; top: -11px; right: 14px; padding: 3px 10px;
  background: var(--gold); color: var(--white); font-size: 0.62rem;
  font-weight: 700; border-radius: 50px; letter-spacing: .08em; text-transform: uppercase;
}
.supply-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .2s; }
.supply-option.selected .supply-radio { border-color: var(--green); }
.supply-radio-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); display: none; }
.supply-option.selected .supply-radio-dot { display: block; }
.supply-info { flex: 1; }
.supply-name { font-weight: 600; font-size: 0.875rem; }
.supply-desc { font-size: 0.73rem; color: var(--text-muted); margin-top: 1px; }
.supply-price { text-align: right; }
.supply-current { font-weight: 700; font-size: 1rem; color: var(--green); }
.supply-original { font-size: 0.73rem; color: var(--text-muted); text-decoration: line-through; }
.supply-save { font-size: 0.68rem; color: #3a9a4a; font-weight: 600; }

.urgency-bar {
  background: #fffbf0; border: 1px solid var(--gold-light); border-radius: var(--radius-sm);
  padding: 11px 14px; display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--gold-dark); font-weight: 600; margin-bottom: 14px;
}
.add-to-bag {
  width: 100%; padding: 19px; font-size: 1rem; margin-bottom: 12px;
  border-radius: var(--radius); background: var(--green); color: var(--white);
  font-weight: 700; letter-spacing: .04em; border: none; cursor: pointer;
  transition: all .3s; font-family: var(--font-sans);
}
.add-to-bag:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(44,62,45,.3); }
.product-trust-row {
  display: flex; gap: 18px; justify-content: center; padding: 14px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px;
  flex-wrap: wrap;
}
.product-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.73rem; color: var(--text-muted); }

.product-tabs { border-bottom: 2px solid var(--border); display: flex; margin-bottom: 36px; }
.product-tab {
  padding: 15px 26px; font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; background: none;
}
.product-tab.active { color: var(--green); border-bottom-color: var(--green); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.ingredient-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 16px; }
.ingredient-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px; background: var(--cream-dark); border-radius: var(--radius-sm); }
.ingredient-item__emoji { font-size: 1.6rem; }
.ingredient-item__name { font-weight: 700; font-size: 0.85rem; color: var(--green); }
.ingredient-item__desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; margin-top: 2px; }
.how-step { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.how-step:last-child { border-bottom: none; }
.how-step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.how-step__title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.how-step__text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.rating-overview { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; margin-bottom: 44px; padding: 36px; background: var(--cream-dark); border-radius: var(--radius); }
.rating-big { text-align: center; }
.rating-big__number { font-family: var(--font-serif); font-size: 4rem; font-weight: 700; color: var(--green); line-height: 1; }
.rating-big__stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; margin: 8px 0; }
.rating-big__count { font-size: 0.78rem; color: var(--text-muted); }
.rating-bars { display: flex; flex-direction: column; gap: 8px; }
.rating-bar { display: flex; align-items: center; gap: 12px; }
.rating-bar__label { font-size: 0.78rem; color: var(--text-muted); width: 28px; text-align: right; flex-shrink: 0; }
.rating-bar__track { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-bar__fill { height: 100%; background: var(--gold); border-radius: 4px; }
.rating-bar__pct { font-size: 0.73rem; color: var(--text-muted); width: 30px; }
.reviews-list { display: flex; flex-direction: column; gap: 24px; }
.review-item { padding: 28px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--border); }
.review-item__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review-item__name { font-weight: 700; font-size: 0.9rem; }
.review-item__date { font-size: 0.75rem; color: var(--text-muted); }
.review-item__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 8px; }
.review-item__title { font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.review-item__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.review-item__helpful { font-size: 0.73rem; color: var(--text-muted); margin-top: 12px; }

.bundles { padding: var(--section-padding); background: var(--cream-dark); }
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bundle-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 26px; border: 2px solid var(--border); text-align: center; transition: all .3s; position: relative; }
.bundle-card.popular { border-color: var(--green); }
.bundle-popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 5px 18px; background: var(--green); color: var(--white); font-size: 0.65rem; font-weight: 700; border-radius: 50px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.bundle-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.bundle-card__icon { font-size: 3rem; margin-bottom: 14px; }
.bundle-card__name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--green); margin-bottom: 8px; }
.bundle-card__items { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.bundle-card__price { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--green); }
.bundle-card__original { font-size: 0.83rem; color: var(--text-muted); text-decoration: line-through; margin: 2px 0; }
.bundle-card__saving { font-size: 0.78rem; font-weight: 700; color: #3a9a4a; margin-bottom: 22px; }

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-header { padding: 60px 0 44px; background: var(--white); border-bottom: 1px solid var(--border); }
.collection-header h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--green); margin-bottom: 12px; }
.collection-header p { font-size: 0.97rem; color: var(--text-muted); max-width: 580px; line-height: 1.7; }
.collection-body { padding: 48px 0 80px; background: var(--cream); }
.collection-inner { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }

.filter-sidebar { background: var(--white); border-radius: var(--radius); padding: 28px 22px; border: 1px solid var(--border); position: sticky; top: 90px; }
.filter-group { margin-bottom: 28px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-group__title { font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; font-size: 0.875rem; color: var(--text-muted); transition: color .2s; }
.filter-option:hover { color: var(--green); }
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; }
.filter-divider { height: 1px; background: var(--border); margin: 20px 0; }
.clear-filters { font-size: 0.78rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; background: none; border: none; padding: 0; margin-top: 20px; display: block; }
.clear-filters:hover { color: var(--green); }

.sort-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sort-bar__count { font-size: 0.875rem; color: var(--text-muted); }
.sort-select { padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.875rem; font-family: var(--font-sans); color: var(--text); background: var(--white); cursor: pointer; outline: none; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: all .3s; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px var(--shadow); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px 5px 8px; border-radius: 8px;
  font-size: 0.67rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,.14);
  line-height: 1;
}
.product-card__badge svg { flex-shrink: 0; }
.badge-bestseller { background: #1a2e1b; color: #fff; }
.badge-new { background: linear-gradient(135deg,#c8860a,#e6a020); color: #fff; }
.badge-value { background: linear-gradient(135deg,#3b2a6e,#5a3fa0); color: #fff; }
.badge-coffret { background: linear-gradient(135deg,#8b3a5a,#c05478); color: #fff; }
.product-card__image {
  aspect-ratio: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.product-card:hover .product-card__image img {
  transform: scale(1.08);
}
.product-card__emoji { font-size: 5rem; transition: transform .45s cubic-bezier(.25,.46,.45,.94); }
.product-card:hover .product-card__emoji { transform: scale(1.08); }
.product-card__body { padding: 18px; }
.product-card__rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.product-card__stars { color: var(--gold); font-size: 0.82rem; }
.product-card__review-count { font-size: 0.73rem; color: var(--text-muted); }
.product-card__name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--green); margin-bottom: 4px; }
.product-card__subtitle { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 10px; }
.product-card__benefits { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.product-card__benefit { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.product-card__benefit::before { content: '✓'; color: var(--green-light); font-weight: 700; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.product-card__price { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--green); }
.product-card__original { font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through; font-family: var(--font-sans); font-weight: 400; margin-left: 4px; }
.product-card__cta { padding: 9px 18px; background: var(--green); color: var(--white); border-radius: 50px; font-size: 0.78rem; font-weight: 600; transition: all .2s; border: none; cursor: pointer; font-family: var(--font-sans); }
.product-card__cta:hover { background: var(--green-light); }

.collection-trust { background: var(--white); border-top: 1px solid var(--border); padding: 24px 0; }
.collection-trust__inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.collection-trust__item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 0 40px; min-height: auto; text-align: center; }
  .hero::before { display: none; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__cta { justify-content: center; }
  .hero__social { justify-content: center; }
  .hero__trust { justify-content: center; }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .ingredient-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-inner { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-hero__grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .bundle-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .trust__grid { grid-template-columns: 1fr; }
  .doctor-block { grid-template-columns: 1fr; text-align: center; }
  .doctor-avatar { margin: 0 auto; }
  .rating-overview { grid-template-columns: 1fr; text-align: center; }
  .ingredient-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__cart span:not(:first-child) { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .ingredient-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .ritual-steps { grid-template-columns: 1fr; }
  .ritual-steps::before { display: none; }
  .comparison-table { font-size: 0.78rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .proof-bar__inner { gap: 20px; }
  .proof-bar__divider { display: none; }
  .press__logos { gap: 24px; }
  .jar-scene { width: 280px; height: 280px; }
}

/* ============================================================
   ICON SYSTEM
   ============================================================ */
.ic { display:inline-flex;align-items:center;justify-content:center;flex-shrink:0; }
.ic svg { width:100%;height:100%; }
.ic-16 { width:16px;height:16px; }
.ic-18 { width:18px;height:18px; }
.ic-20 { width:20px;height:20px; }
.ic-24 { width:24px;height:24px; }
.ic-28 { width:28px;height:28px; }
.ic-32 { width:32px;height:32px; }
.ic-48 { width:48px;height:48px; }

/* ---- Ingredient icon pill ---- */
.ing-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.ing-icon-wrap svg { width: 26px; height: 26px; }
.ing-green  { background: rgba(44,62,45,.08); color: var(--green); }
.ing-gold   { background: rgba(201,169,110,.12); color: var(--gold-dark); }
.ing-blue   { background: rgba(59,130,246,.08); color: #3B82F6; }
.ing-purple { background: rgba(139,92,246,.08); color: #8B5CF6; }
.ing-rose   { background: rgba(236,72,153,.08); color: #EC4899; }
.ing-teal   { background: rgba(20,184,166,.08); color: #14B8A6; }

/* ---- Feature card icon ---- */
.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-wrap svg { width: 24px; height: 24px; }

/* ---- Trust icon row ---- */
.trust-icon-item { display:flex;align-items:center;gap:7px;font-size:.8rem;color:var(--text-muted);font-weight:500; }
.trust-icon-item svg { width:16px;height:16px;flex-shrink:0; }

/* ---- Botanical SVG floaters ---- */
.botanical-svg {
  position: absolute;
  animation: floatB 6s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
  opacity: .55;
}
.botanical-svg svg { display:block; }
.b1 { top: 4px;  left: 8px;  animation-delay: 0s; }
.b2 { top: 20px; right: 2px; animation-delay: 1s; }
.b3 { bottom: 80px; left: -4px; animation-delay: 2s; }
.b4 { bottom: 60px; right: 12px; animation-delay: 3s; }
.b5 { top: 120px; left: -8px; animation-delay: 1.5s; }

/* ---- Social icon buttons ---- */
.footer__social svg { width:18px;height:18px; }

/* ---- Nav cart icon ---- */
.nav__cart svg { width:17px;height:17px; }

/* ============================================================
   PURCHASE ZONE — Subscribe & Save / One-Time
   ============================================================ */
.purchase-zone { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

/* Tab wrapper */
.purchase-tab {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.purchase-tab.active { border-color: var(--green); box-shadow: 0 4px 16px rgba(44,62,45,.12); }

/* Tab header (always visible) */
.purchase-tab__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: var(--card, #fff);
  user-select: none;
}
.purchase-tab__radio {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color .2s;
}
.purchase-tab__radio-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  display: none;
  transition: transform .2s;
}
.purchase-tab.active .purchase-tab__radio { border-color: var(--green); }
.purchase-tab.active .purchase-tab__radio-dot { display: block; }

.purchase-tab__info { flex: 1; min-width: 0; }
.purchase-tab__title { font-size: .85rem; font-weight: 800; color: var(--text); letter-spacing: .02em; line-height: 1.3; }
.purchase-tab__badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  color: white;
  font-size: .65rem;
  font-weight: 800;
  border-radius: 50px;
  margin-top: 5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.purchase-tab__badge.zero { background: var(--border); color: var(--text-muted); }
.purchase-tab__badge.green-badge { background: var(--green); }

.purchase-tab__price { text-align: right; flex-shrink: 0; }
.purchase-tab__price-current { font-size: 1.1rem; font-weight: 800; color: var(--green); line-height: 1.2; }
.purchase-tab__price-original { font-size: .75rem; color: var(--text-muted); text-decoration: line-through; margin-top: 2px; }

/* Subscribe body */
.subscribe-body { padding: 0 16px 16px; border-top: 1px solid var(--border); }
.onetime-body  { padding: 0 16px 16px; border-top: 1px solid var(--border); }
.tab-body-hidden { display: none !important; }

/* Benefits grid */
.sub-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  margin: 14px 0 16px;
  padding: 12px 14px;
  background: #ECFDF5;
  border-radius: var(--r, 10px);
  border: 1px solid #A7F3D0;
}
.sub-benefit {
  font-size: .74rem;
  color: #065F46;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  line-height: 1.3;
}
.sub-benefit-check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #10B981;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sub-benefit-check svg { width: 8px; height: 8px; color: white; }

/* Sub section labels */
.sub-section-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 14px;
}

/* Quantity selector */
.sub-qty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 4px; }
.sub-qty-card {
  border: 2px solid var(--border);
  border-radius: var(--r-sm, 6px);
  padding: 12px 6px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  position: relative;
  background: var(--card, #fff);
}
.sub-qty-card:hover { border-color: var(--border-2, #cbd5e1); }
.sub-qty-card.selected { border-color: var(--green); background: rgba(44,62,45,.04); }
.sub-qty-save {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: .6rem; font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.sub-qty-label { font-size: .78rem; font-weight: 700; color: var(--text); margin-top: 4px; }
.sub-qty-price { font-size: 1rem; font-weight: 800; color: var(--green); margin-top: 3px; }
.sub-qty-per { font-size: .65rem; color: var(--text-muted); margin-top: 1px; }

/* Frequency selector */
.sub-freq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.sub-freq-card {
  border: 2px solid var(--border);
  border-radius: var(--r-sm, 6px);
  padding: 12px 6px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .15s;
  position: relative;
  background: var(--card, #fff);
}
.sub-freq-card:hover { border-color: var(--border-2, #cbd5e1); }
.sub-freq-card.selected { border-color: var(--green); background: rgba(44,62,45,.04); }
.sub-freq-badge {
  position: absolute;
  top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: .6rem; font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}
.sub-freq-label { font-size: .82rem; font-weight: 700; color: var(--text); margin-top: 4px; }
.sub-freq-sublabel { font-size: .68rem; color: var(--text-muted); margin-top: 2px; }

/* One-time options */
.onetime-options { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.onetime-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: var(--r-sm, 6px);
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.onetime-option:hover { border-color: var(--border-2, #cbd5e1); }
.onetime-option.selected { border-color: var(--green); background: rgba(44,62,45,.04); }
.onetime-option__radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s;
}
.onetime-option.selected .onetime-option__radio { border-color: var(--green); }
.onetime-option__radio-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  display: none;
}
.onetime-option.selected .onetime-option__radio-dot { display: block; }
.onetime-option__info { flex: 1; }
.onetime-option__label { font-size: .85rem; font-weight: 600; color: var(--text); }
.onetime-option__desc { font-size: .72rem; color: var(--text-muted); margin-top: 1px; }
.onetime-option__price { text-align: right; flex-shrink: 0; }
.onetime-option__current { font-size: .95rem; font-weight: 800; color: var(--green); }
.onetime-option__original { font-size: .72rem; color: var(--text-muted); text-decoration: line-through; }
.onetime-option__save-badge {
  position: absolute; top: -9px; right: 12px;
  background: var(--green); color: white;
  font-size: .58rem; font-weight: 800;
  padding: 1px 7px; border-radius: 50px;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45);
  z-index: 1100; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; width: 420px; max-width: 100vw;
  height: 100dvh; background: var(--white); z-index: 1101;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,.14);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.cart-drawer__header h3 { font-size: 1rem; font-weight: 800; margin: 0; }
.cart-drawer__close {
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  padding: 6px; border-radius: 8px; line-height: 1;
  transition: background .15s, color .15s;
}
.cart-drawer__close:hover { background: var(--border); color: var(--text); }

.cart-drawer__items { flex: 1; overflow-y: auto; padding: 4px 22px 8px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; padding: 56px 16px; color: var(--text-muted); text-align: center;
}
.cart-empty p { font-size: .9rem; margin: 0; }

.cart-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__name { font-size: .88rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.cart-item__meta { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.cart-item__freq { font-size: .72rem; color: var(--text-muted); margin-top: 1px; }
.cart-item__mode {
  display: inline-block; margin-top: 7px;
  padding: 2px 9px; border-radius: 50px;
  font-size: .63rem; font-weight: 700; letter-spacing: .04em;
}
.cart-item__mode.subscribe { background: rgba(44,62,45,.1); color: var(--green); }
.cart-item__mode.onetime   { background: var(--border); color: var(--text-muted); }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.cart-item__price { font-size: .92rem; font-weight: 800; color: var(--green); white-space: nowrap; }
.cart-item__remove {
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  padding: 3px; line-height: 1; border-radius: 4px; transition: color .15s;
}
.cart-item__remove:hover { color: #c0392b; }

.cart-drawer__footer {
  padding: 14px 22px 22px; border-top: 1px solid var(--border);
  background: var(--cream); flex-shrink: 0;
}
.cart-summary { margin-bottom: 14px; }
.cart-freeship {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .73rem; text-align: center;
  background: rgba(44,62,45,.07); color: var(--green);
  padding: 7px 12px; border-radius: 8px; margin-bottom: 10px;
}
.cart-freeship--ok { background: rgba(44,62,45,.12); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 1rem; font-weight: 800; color: var(--text);
}
.cart-total-row small { font-size: .7rem; font-weight: 400; color: var(--text-muted); margin-left: 2px; }
.cart-sub-note { font-size: .7rem; color: var(--text-muted); text-align: center; margin: 6px 0 0; }
.cart-secure {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: .68rem; color: var(--text-muted); margin-top: 10px;
}

/* Nav cart badge */
.nav__cart { position: relative; }
.cart-badge {
  background: var(--green); color: #fff;
  font-size: .58rem; font-weight: 800; line-height: 1;
  min-width: 16px; height: 16px; padding: 0 3px;
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -5px; right: -7px;
  pointer-events: none;
}

/* Toast notification */
.cart-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: #1a2e1b; color: #fff;
  padding: 11px 22px; border-radius: 50px;
  font-size: .82rem; z-index: 1200;
  opacity: 0; pointer-events: none;
  transition: all .28s ease; white-space: nowrap; max-width: 90vw; text-align: center;
}
.cart-toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cart-toast--error { background: #c0392b; }
.cart-toast--warn  { background: #c07020; }

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
}
