/* ═══════════════════════════════════════════════
   7Days Natural — Shared Brand Stylesheet
   Covers: advertorial.html, bull-power-final.html
   Drop a <link rel="stylesheet" href="styles.css">
   in any page and every section class is ready.
   Each page sets --serif / --sans in its own <style>.
   ═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BRAND PALETTE ── */
:root {
  --green:       #1E4D2B;
  --green-light: #2A6B3C;
  --green-dark:  #122D19;
  --green-mist:  #EEF4EE;
  --gold:        #B8892A;
  --gold-light:  #D4A84B;
  --parchment:   #FBF6EC;
  --cream:       #F3ECD8;
  --cream-dark:  #E8DEC4;
  --ink:         #0F1A12;
  --ink-soft:    #2C3D2F;
  --muted:       #6B7C6E;
  /* --serif and --sans are set per-page */
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION UTILITIES ── */
.section-inner { padding: 64px 24px; max-width: 700px; margin: 0 auto; }
.ingredients-section .section-inner { padding: 48px 24px; }
.timeline-section   .section-inner { padding: 72px 24px; }
.testimonials-section .section-inner { padding: 80px 24px; }
.faq-section .section-inner { padding: 56px 24px 72px; }
.section-label {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px; font-weight: 500;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 40px); font-weight: 600;
  line-height: 1.1; margin-bottom: 14px; color: var(--ink);
}
.section-sub {
  font-family: var(--sans);
  font-size: 15px; line-height: 1.65;
  font-weight: 300; color: var(--muted);
  max-width: 62ch;
}

/* ── BUTTONS ── */
.btn-primary {
  display: block;
  background: var(--green); color: var(--parchment);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; border: none; cursor: pointer;
  text-decoration: none; text-align: center; width: 100%;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
  margin-bottom: 10px;
}
.btn-primary:hover  { opacity: 0.88; }
.btn-primary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-primary:active { transform: scale(0.98); }

.btn-parchment {
  display: block;
  background: var(--parchment); color: var(--green);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 17px 32px; border: none; cursor: pointer;
  text-decoration: none; width: 100%; text-align: center;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
}
.btn-parchment:hover  { opacity: 0.9; }
.btn-parchment:focus-visible { outline: 2px solid var(--parchment); outline-offset: 3px; }
.btn-parchment:active { transform: scale(0.98); }

.btn-gold {
  display: block;
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 15px 28px; border: none; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
  max-width: 320px; margin: 0 auto;
}
.btn-gold:hover  { opacity: 0.88; }
.btn-gold:focus-visible { outline: 2px solid var(--parchment); outline-offset: 3px; }
.btn-gold:active { transform: scale(0.98); }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: none; border: 1px solid rgba(30,77,43,0.3); color: var(--green);
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 28px; cursor: pointer;
  text-decoration: none; text-align: center; width: 100%;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
}
.btn-whatsapp:hover  { opacity: 0.75; }
.btn-whatsapp:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-whatsapp:active { transform: scale(0.98); }

/* ── STICKY BAR ── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--green-dark);
  border-top: 2px solid var(--gold);
  padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text { flex: 1; }
.sticky-bar-label {
  font-family: var(--sans);
  font-size: 10px; color: rgba(251,246,236,0.5);
  letter-spacing: 0.06em; text-transform: uppercase;
  display: block; margin-bottom: 2px;
}
.sticky-bar-price {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  color: var(--parchment); line-height: 1;
}
.sticky-bar-original {
  font-size: 13px; font-weight: 300; opacity: 0.45;
  text-decoration: line-through; font-family: var(--sans);
}
.sticky-bar-btn {
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 12px 18px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
}
.sticky-bar-btn:hover  { opacity: 0.88; }
.sticky-bar-btn:focus-visible { outline: 2px solid var(--parchment); outline-offset: 3px; }
.sticky-bar-btn:active { transform: scale(0.97); }

/* ── INLINE CTA ── */
.inline-cta {
  background: var(--green);
  padding: 36px 24px; margin: 0;
  text-align: center;
}
.inline-cta-headline {
  font-family: var(--serif);
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 600; color: var(--parchment);
  line-height: 1.3; margin-bottom: 6px;
}
.inline-cta-sub {
  font-family: var(--sans);
  font-size: 13px; color: rgba(251,246,236,0.6);
  font-weight: 400; line-height: 1.5;
  margin-bottom: 20px;
}
.cta-trust-row {
  margin-top: 12px;
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11px;
  color: rgba(251,246,236,0.45); font-weight: 400;
}
.inline-cta .inline-cta-trust {
  font-family: var(--sans);
  font-size: 11px; color: rgba(251,246,236,0.55);
  font-weight: 400; margin-top: 10px; margin-bottom: 0;
  letter-spacing: 0.03em;
}

/* ── CTA BLOCK (high-prominence, post-section CTAs) ── */
.cta-block {
  background: var(--green-dark);
  border-top: 3px solid var(--gold);
  padding: 44px 24px;
  text-align: center;
}
.cta-block-eyebrow {
  font-family: var(--sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.cta-block-headline {
  font-family: var(--serif);
  font-size: clamp(22px, 6.5vw, 32px);
  font-weight: 600; color: var(--parchment);
  line-height: 1.2; margin-bottom: 12px;
  max-width: 36ch; margin-left: auto; margin-right: auto;
}
.cta-block-sub {
  font-family: var(--sans);
  font-size: 14px; font-weight: 400;
  color: rgba(251,246,236,0.5); line-height: 1.6;
  margin-bottom: 20px;
}
.cta-block-price {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px; line-height: 1;
}
.cta-block-price span {
  font-family: var(--sans);
  font-size: 13px; font-weight: 400;
  color: rgba(251,246,236,0.42);
}
.cta-block-btn {
  display: block;
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 19px 32px; border: none; cursor: pointer;
  text-decoration: none; text-align: center;
  max-width: 400px; margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(184,137,42,0.35), 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
}
.cta-block-btn:hover  { opacity: 0.92; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(184,137,42,0.52), 0 2px 8px rgba(0,0,0,0.28); }
.cta-block-btn:active { transform: scale(0.98); }
.cta-block-btn:focus-visible { outline: 2px solid var(--parchment); outline-offset: 3px; }
.cta-block-trust {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 11px;
  color: rgba(251,246,236,0.52); font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── CTA STRIP (bull-power style) ── */
.cta-strip {
  background: var(--green-mist);
  padding: 48px 24px; text-align: center;
  border-top: 1px solid rgba(30,77,43,0.1);
  border-bottom: 1px solid rgba(30,77,43,0.1);
}
.cta-strip p {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  margin-bottom: 24px; color: var(--ink); line-height: 1.25;
}
.cta-strip p em { font-style: italic; color: var(--green); }
.cta-trust, .hero-trust-micro {
  margin-top: 12px;
  display: flex; justify-content: center; align-items: center;
  gap: 14px; flex-wrap: wrap;
  font-family: var(--sans); font-size: 12px;
  color: var(--muted); font-weight: 400; letter-spacing: 0.03em;
}
.hero-trust-micro { margin-top: 10px; }
.cta-trust span, .hero-trust-micro span { display: flex; align-items: center; gap: 4px; }
.cta-trust svg, .hero-trust-micro svg { width: 12px; height: 12px; flex-shrink: 0; opacity: 0.75; }

/* ── FAQs ── */
.faq-section { background: var(--parchment); }
.faq-list { margin-top: 40px; border-top: 1px solid rgba(30,77,43,0.12); }
.faq-item { border-bottom: 1px solid rgba(30,77,43,0.12); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; outline: none;
  padding: 28px 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; gap: 16px; text-align: left;
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  color: var(--ink); transition: color 0.2s; line-height: 1.3;
}
.faq-q:hover { color: var(--green); }
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; color: var(--green); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  position: relative; border: 1px solid rgba(30,77,43,0.25); border-radius: 50%;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--green);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: opacity 0.2s, transform 0.2s;
}
.faq-icon::before { width: 8px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 8px; }
.faq-item.open .faq-icon::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.16,1,0.3,1);
}
.faq-a-inner {
  overflow: hidden; min-height: 0;
  font-family: var(--sans);
  font-size: 14px; font-weight: 300; line-height: 1.75;
  color: var(--muted); padding-bottom: 0;
  transition: padding-bottom 0.45s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a-inner { padding-bottom: 20px; }

/* ── TESTIMONIALS (FB COMMENT STYLE) ── */
.testimonials-section { background: var(--parchment); }
.testimonials-section .section-sub { color: var(--muted); }
.testi-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.fb-post-wrap {
  background: #fff;
  border: 1px solid #dadde1; border-radius: 8px; overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  padding: 12px 14px 10px;
}
.fb-comment { display: flex; gap: 8px; align-items: flex-start; }
.fb-comment-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; display: block;
}
.fb-comment-avatar svg { width: 38px; height: 38px; display: block; }
.fb-comment-content { flex: 1; min-width: 0; }
.fb-comment-bubble {
  background: #f0f2f5; border-radius: 18px;
  padding: 10px 14px; display: block;
}
.fb-comment-name {
  font-size: 13px; font-weight: 700; color: #050505;
  font-family: var(--sans); margin-bottom: 3px;
}
.fb-comment-text {
  font-size: 14px; color: #1c1e21;
  font-family: var(--sans); line-height: 1.7;
}
.fb-comment-actions {
  padding: 4px 0 2px 10px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 600; color: #65676b;
  font-family: var(--sans);
}
.fb-actions-left { display: flex; gap: 12px; align-items: center; }
.fb-comment-time { font-weight: 400; }
.fb-reactions-count {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: #65676b; font-weight: 400;
}
.fb-reaction-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: #1877F2;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; line-height: 1;
}
.fb-replies {
  padding: 1px 0 0 10px;
  font-size: 12px; font-weight: 600; color: #65676b;
  font-family: var(--sans);
}
.fb-source {
  margin-top: 10px; padding-top: 9px;
  border-top: 1px solid #e4e6eb;
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; color: #65676b; font-family: var(--sans);
  letter-spacing: 0.02em;
}
.fb-source-icon {
  width: 14px; height: 14px; border-radius: 3px;
  background: #1877F2;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 9px; font-weight: 900; font-family: var(--sans);
  flex-shrink: 0;
}

/* ── GUARANTEE SECTION (standalone, bull-power style) ── */
.guarantee-section {
  background: var(--green-dark);
  padding: 72px 24px; text-align: center;
}
.guarantee-section .guarantee-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, #B8892A 0%, #D4A84B 100%);
  box-shadow: 0 0 0 10px rgba(184,137,42,0.12), 0 0 0 20px rgba(184,137,42,0.05);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.guarantee-section .guarantee-icon svg { width: 38px; height: 38px; }
.guarantee-section .guarantee-title {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  color: var(--parchment); margin-bottom: 12px; line-height: 1.2;
}
.guarantee-body {
  font-family: var(--sans);
  font-size: 15px; font-weight: 300; line-height: 1.65;
  color: rgba(251,246,236,0.78); max-width: 320px; margin: 0 auto;
}
.guarantee-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 24px;
}
.guarantee-pill {
  border: 1px solid rgba(184,137,42,0.3); color: var(--gold-light);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; font-weight: 500;
}

/* ── GUARANTEE BADGE (inline, advertorial style) ── */
.guarantee-badge {
  background: var(--green-dark);
  border: 2px solid var(--gold); border-radius: 4px;
  padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 4px;
}
.guarantee-badge .guarantee-icon {
  font-size: 40px; flex-shrink: 0; line-height: 1; margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(184,137,42,0.5));
}
.guarantee-badge .guarantee-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 700;
  color: var(--gold-light); margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.guarantee-text {
  font-family: var(--sans);
  font-size: 14px; font-weight: 400;
  line-height: 1.7; color: rgba(251,246,236,0.85);
}

/* ── HARD CTA SECTION ── */
.hard-cta-section {
  background: var(--green); padding: 72px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.hard-cta-section::before {
  content: 'BULL POWER';
  position: absolute; font-family: var(--serif);
  font-size: 80px; font-weight: 600; color: rgba(18,45,25,0.12);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.05em;
}
.hard-cta-section .section-inner { padding: 0; position: relative; z-index: 1; }
.urgency-badge {
  display: inline-block;
  background: rgba(18,45,25,0.5); color: var(--parchment);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 16px; margin-bottom: 24px; font-weight: 500;
}
.hard-cta-title {
  font-family: var(--serif); font-size: clamp(34px,10vw,52px); font-weight: 600;
  color: var(--parchment); line-height: 1.05; margin-bottom: 14px;
}
.hard-cta-sub {
  font-family: var(--sans);
  font-size: 15px; color: rgba(251,246,236,0.65);
  font-weight: 300; margin-bottom: 36px; line-height: 1.75;
  max-width: 52ch; margin-left: auto; margin-right: auto;
}
.hard-cta-assurance { margin-top: 16px; font-size: 12px; color: rgba(251,246,236,0.4); }

/* ── TIMELINE (bull-power vertical track) ── */
.timeline-section { background: var(--green-dark); }
.timeline-section .section-title { color: var(--parchment); letter-spacing: 0; }
.timeline-section .section-label { color: var(--gold-light); text-transform: none; }
.timeline-section .section-sub   { color: rgba(251,246,236,0.5); }
.timeline-track { margin-top: 48px; }
.timeline-points { display: flex; flex-direction: column; position: relative; }
.timeline-points::before {
  content: ''; position: absolute; top: 6px; bottom: 6px; left: 5px;
  width: 1px; background: rgba(184,137,42,0.25);
}
.tpoint { display: flex; gap: 20px; align-items: flex-start; padding-bottom: 36px; position: relative; }
.tpoint:last-child { padding-bottom: 0; }
.tpoint-dot-wrap { flex-shrink: 0; padding-top: 4px; }
.tpoint-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(184,137,42,0.35);
  background: var(--green-dark); position: relative; z-index: 1;
}
.tpoint-dot.filled { background: var(--gold); border-color: var(--gold); }
.tpoint-content { flex: 1; }
.tpoint-week {
  font-family: var(--sans); font-size: 13px;
  color: var(--gold-light); font-weight: 600; margin-bottom: 6px;
}
.tpoint-desc {
  font-family: var(--sans); font-size: 15px; line-height: 1.75;
  color: rgba(251,246,236,0.88); font-weight: 400;
}

/* ── INGREDIENTS SECTION ── */
.ingredients-section {
  background: var(--cream-dark);
  border-top: 1px solid rgba(30,77,43,0.12);
  border-bottom: 1px solid rgba(30,77,43,0.12);
}
.capsule-visual { margin: 40px 0 48px; display: flex; flex-direction: column; gap: 2px; }
.cap-side { padding: 24px 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.cap-left {
  background: rgba(30,77,43,0.07); border: 1px solid rgba(30,77,43,0.2); border-bottom: none;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%); padding-bottom: 36px;
}
.cap-right {
  background: rgba(184,137,42,0.06); border: 1px solid rgba(184,137,42,0.2); border-top: none;
  clip-path: polygon(50% 0, 100% 20%, 100% 100%, 0 100%, 0 20%); padding-top: 36px;
}
.cap-name { font-family: var(--serif); font-size: 22px; font-weight: 600; }
.cap-left .cap-name  { color: var(--green); }
.cap-right .cap-name { color: var(--gold); }
.cap-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border: 1px solid; font-weight: 500; }
.cap-left .cap-tag  { border-color: rgba(30,77,43,0.3);   color: var(--green-light); }
.cap-right .cap-tag { border-color: rgba(184,137,42,0.35); color: var(--gold); }
.ingredients-grid { display: flex; flex-direction: column; gap: 2px; }
.ing-card { padding: 28px 24px; }
.ing-card:nth-child(1) { background: rgba(30,77,43,0.05); border: 1px solid rgba(30,77,43,0.12); border-bottom: none; }
.ing-card:nth-child(2) { background: rgba(184,137,42,0.04); border: 1px solid rgba(184,137,42,0.15); }
.ing-card-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.ing-card:nth-child(1) .ing-card-label { color: var(--green); }
.ing-card:nth-child(2) .ing-card-label { color: var(--gold); }
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; font-weight: 300; color: var(--ink-soft); }
.benefit-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; margin-top: 9px; flex-shrink: 0; }
.ing-card:nth-child(1) .benefit-list li::before { background: var(--green); }
.ing-card:nth-child(2) .benefit-list li::before { background: var(--gold); }

/* ── DIFFERENTIATION TABLE ── */
.diff-section { background: var(--cream-dark); }
.diff-table-wrap { margin-top: 40px; border-radius: 6px; overflow: hidden; border: 1px solid rgba(30,77,43,0.15); }
.diff-table-new { width: 100%; border-collapse: collapse; }
.diff-table-new thead th {
  background: var(--green); color: var(--parchment);
  padding: 12px 16px; text-align: left;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.diff-table-new td {
  padding: 14px 16px; vertical-align: top;
  font-family: var(--sans); border-bottom: 1px solid rgba(30,77,43,0.08);
}
.diff-table-new tr:last-child td { border-bottom: none; }
.diff-table-new tr:nth-child(odd) td  { background: var(--parchment); }
.diff-table-new tr:nth-child(even) td { background: var(--green-mist); }
.diff-col-product { width: 36%; font-weight: 600; font-size: 14px; color: var(--ink); line-height: 1.4; }
.diff-col-why { font-size: 13px; font-weight: 300; color: var(--ink-soft); line-height: 1.65; }
.diff-summary {
  margin-top: 28px; font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--ink-soft); line-height: 1.65;
  border-top: 1px solid rgba(30,77,43,0.1); padding-top: 20px;
}

/* ── HOW IT WORKS (zigzag) ── */
.mechanism-section { background: var(--parchment); }
.mechanism-section .section-inner { padding: 40px 24px 48px; }
.mechanism-heading {
  text-align: center; font-family: var(--serif);
  font-size: clamp(26px, 7vw, 38px); font-weight: 600; color: var(--ink);
  line-height: 1.15; margin-bottom: 16px;
}
.mechanism-sub {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0 0 52px;
}
.zigzag { position: relative; padding: 4px 0; }
.zigzag::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 6%, var(--gold) 94%, transparent 100%);
  transform: translateX(-50%); z-index: 0;
}
.zrow { display: flex; align-items: flex-start; position: relative; z-index: 1; margin-bottom: 20px; }
.zrow:last-child { margin-bottom: 0; }
.zcard {
  width: calc(50% - 34px); flex-shrink: 0; padding: 18px 14px; color: white;
  position: relative; box-shadow: 0 6px 24px rgba(0,0,0,0.28), 0 1px 4px rgba(0,0,0,0.18);
}
.zrow--left .zcard::after, .zrow--right .zcard::after {
  content: ''; position: absolute; top: 34px; height: 2px; background: var(--gold); opacity: 0.75;
}
.zrow--left  .zcard::after { right: -34px; width: 34px; }
.zrow--right .zcard::after { left:  -34px; width: 34px; }
.zdot-col { width: 68px; flex-shrink: 0; display: flex; justify-content: center; align-items: flex-start; padding-top: 16px; position: relative; z-index: 2; }
.zdot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 13px; font-weight: 700; color: #1A1200;
  box-shadow: 0 0 0 3px var(--parchment), 0 0 0 5px var(--gold); flex-shrink: 0;
}
.zempty { width: calc(50% - 34px); flex-shrink: 0; }
.zcard-icon { position: absolute; top: 10px; right: 10px; opacity: 0.8; pointer-events: none; }
.zcard-label { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 5px; }
.zcard-title { font-family: var(--serif); font-size: clamp(15px,4vw,20px); font-weight: 600; line-height: 1.2; color: white; margin-bottom: 8px; padding-right: 30px; }
.zcard-body { font-family: var(--sans); font-size: 12px; line-height: 1.75; font-weight: 300; color: rgba(255,255,255,0.78); }
@media (min-width: 480px) { .zcard { padding: 24px 20px; } .zcard-title { font-size: 20px; } .zcard-body { font-size: 13px; } }

/* ── ORDER / PRODUCT CARD ── */
.order-section {
  background: var(--cream-dark);
  border-top: 1px solid rgba(30,77,43,0.12);
  border-bottom: 1px solid rgba(30,77,43,0.12);
  padding: 40px 0 48px;
}
.product-card {
  background: var(--parchment); border: 1px solid rgba(30,77,43,0.15);
  padding: 28px 24px; margin-bottom: 16px;
}
.product-card-name { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--green); margin-bottom: 2px; line-height: 1.1; }
.product-card-brand { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; display: block; }
.price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.price-offer { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--green); line-height: 1; }
.price-original { font-family: var(--sans); font-size: 16px; color: var(--muted); font-weight: 400; text-decoration: line-through; }
.price-save { font-family: var(--sans); font-size: 11px; color: var(--gold); font-weight: 600; background: rgba(184,137,42,0.1); padding: 2px 8px; }
.perks-list { list-style: none; margin-bottom: 22px; }
.perks-list li { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 14px; font-weight: 400; color: var(--ink-soft); line-height: 1.5; padding: 9px 0; border-bottom: 1px solid rgba(30,77,43,0.07); }
.perks-list li:last-child { border-bottom: none; padding-bottom: 0; }
.perk-check { color: var(--green); font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark); padding: 28px 24px;
  border-top: 1px solid rgba(251,246,236,0.08);
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.footer-logo { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--gold-light); letter-spacing: 0.04em; text-transform: uppercase; }
footer p { font-size: 12px; color: rgba(251,246,236,0.25); }

/* ── TRUST BADGES ── */
.hero-trust-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); font-weight: 400; }
.trust-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ── ADVERTORIAL: ARTICLE LAYOUT ── */
.progress-bar {
  position: fixed; top: 0; left: 0; z-index: 300; height: 3px;
  background: var(--gold); width: 0%; transition: width 0.1s linear; pointer-events: none;
}
.pub-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(251,246,236,0.97); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(30,77,43,0.12);
  padding: 11px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pub-name { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--green); text-decoration: none; flex-shrink: 0; letter-spacing: -0.01em; }
.pub-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.pub-sponsored { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); background: rgba(30,77,43,0.07); padding: 3px 8px; border: 1px solid rgba(30,77,43,0.1); }
.art-wrap { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.art-header { background: var(--parchment); padding: 36px 0 0; }
.art-meta-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.art-category { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.art-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.art-meta-small { font-family: var(--sans); font-size: 12px; color: var(--muted); font-weight: 400; }
.art-headline { font-family: var(--serif); font-size: clamp(26px,7.5vw,44px); font-weight: 600; line-height: 1.18; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.01em; }
.art-subheadline { font-family: var(--serif); font-size: clamp(18px,5vw,24px); font-weight: 400; font-style: italic; line-height: 1.55; color: var(--ink-soft); margin-bottom: 24px; }
.art-byline { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(30,77,43,0.1); border-bottom: 1px solid rgba(30,77,43,0.1); }
.byline-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(30,77,43,0.15); }
.byline-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.byline-info { flex: 1; }
.byline-name { display: block; font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.byline-sub { font-family: var(--sans); font-size: 12px; color: var(--muted); font-weight: 400; }
.hero-img-wrap { background: var(--parchment); padding: 24px 0 0; }
.hero-img-wrap img { width: 100%; height: auto; display: block; max-height: 440px; object-fit: cover; object-position: center top; }
.img-caption { font-family: var(--sans); font-size: 12px; color: var(--muted); font-style: italic; font-weight: 400; padding: 10px 20px; background: var(--cream); display: block; }
.art-body { background: var(--parchment); padding: 32px 0 40px; }
.art-body p { font-family: var(--sans); font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--ink-soft); margin-bottom: 14px; }
.art-body p:last-child { margin-bottom: 0; }
.art-body strong { color: var(--ink); font-weight: 600; }
.inline-img-wrap { margin: 28px -20px; }
.inline-img-wrap img { width: 100%; height: auto; display: block; }
.pull-quote { margin: 32px 0; padding: 22px 0; border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); text-align: center; }
.pull-quote p { font-family: var(--serif); font-size: clamp(17px,5vw,22px); font-weight: 600; font-style: italic; line-height: 1.4; color: var(--green); margin-bottom: 0 !important; }
.art-sep { display: flex; align-items: center; gap: 10px; margin: 36px 0; }
.art-sep-line { flex: 1; height: 1px; background: rgba(184,137,42,0.3); }
.art-sep-dot  { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.doctor-callout { background: rgba(184,137,42,0.06); border: 1px solid rgba(184,137,42,0.28); padding: 24px; margin: 28px 0; }
.callout-label { font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.callout-quote { font-family: var(--serif); font-size: clamp(17px,5vw,21px); font-weight: 600; font-style: italic; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.callout-attribution { font-family: var(--sans); font-size: 12px; color: var(--muted); font-weight: 400; }
.fail-box { background: var(--cream-dark); border: 1px solid rgba(30,77,43,0.12); padding: 24px; margin: 28px 0; }
.fail-box-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 16px; }
.fail-list { list-style: none; }
.fail-list li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--sans); font-size: 14px; font-weight: 400; line-height: 1.65; color: var(--ink-soft); padding: 10px 0; border-bottom: 1px solid rgba(30,77,43,0.08); }
.fail-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fail-x { color: #A0392B; font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 3px; }
.mechanism-box { background: var(--green-dark); padding: 28px 24px; margin: 28px 0; }
.mechanism-box .mechanism-title { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--parchment); text-align: center; margin-bottom: 24px; }
.mechanism-ingredient { background: var(--parchment); padding: 20px 16px; text-align: center; margin-bottom: 8px; }
.mech-ing-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--green); line-height: 1.2; margin-bottom: 8px; }
.mech-ing-action { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.5; }
.mech-plus { text-align: center; font-size: 22px; color: var(--gold-light); font-weight: 300; margin: 4px 0 12px; font-family: var(--sans); }
.mech-result { background: var(--gold); padding: 16px; text-align: center; margin-top: 4px; }
.mech-result p { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.3; margin-bottom: 0 !important; }
.product-img-block { background: var(--parchment); border: 1px solid rgba(30,77,43,0.1); padding: 32px 20px; margin: 28px 0; text-align: center; }
.product-img-block img { max-width: 240px; width: 100%; height: auto; display: inline-block; }
.timeline-block { background: var(--green-dark); padding: 28px 24px; margin: 0; }
.timeline-block-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--parchment); margin-bottom: 28px; text-align: center; line-height: 1.2; }
.t-items { position: relative; }
.t-items::before { content: ''; position: absolute; left: 9px; top: 10px; bottom: 10px; width: 1px; background: rgba(184,137,42,0.25); }
.t-item { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.t-item:last-child { padding-bottom: 0; }
.t-dot-col { flex-shrink: 0; padding-top: 4px; }
.t-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); position: relative; z-index: 1; }
.t-content { flex: 1; }
.t-week { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px; }
.t-desc { font-family: var(--sans); font-size: 15px; font-weight: 400; line-height: 1.75; color: rgba(251,246,236,0.85); }
.author-close { background: var(--parchment); padding: 36px 0 48px; }
.author-close-card { background: rgba(30,77,43,0.03); border: 1px solid rgba(30,77,43,0.1); padding: 24px; }
.author-close-byline { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.author-close-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid rgba(30,77,43,0.12); }
.author-close-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.author-close-name { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--ink); }
.author-close-text { font-family: var(--serif); font-size: 16px; font-style: italic; line-height: 1.75; color: var(--ink-soft); }

/* ── BULL-POWER: NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 11px 20px; background: rgba(251,246,236,0.96);
  backdrop-filter: blur(8px); border-bottom: 1px solid rgba(30,77,43,0.15);
}
.nav-social-proof { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--ink-soft); }
.nav-stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; }
.nav-divider { color: rgba(30,77,43,0.25); }

/* ── BULL-POWER: HERO ── */
.hero { background: var(--parchment); padding: 64px 24px 0; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 30%, rgba(30,77,43,0.05) 0%, transparent 70%); pointer-events: none; }
.hero-badge { display: inline-block; background: none; color: var(--gold); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; padding: 0; margin-bottom: 18px; font-weight: 600; font-family: var(--sans); }
.hero h1 { font-family: var(--serif); font-size: clamp(30px,9vw,44px); font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--green); }
.hero-sub { font-family: var(--sans); font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; font-weight: 400; }
.hero-trust { display: block; margin-top: 14px; font-size: 12px; color: var(--muted); letter-spacing: 0.02em; text-align: center; }

/* ── BULL-POWER: ORDER MODAL ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(10,20,12,0.82); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s cubic-bezier(0.16,1,0.3,1);
}
@media (min-width: 520px) { .modal-backdrop { align-items: center; } }
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-sheet {
  background: var(--parchment); width: 100%; max-width: 480px;
  border-radius: 16px 16px 0 0; border-top: 2.5px solid var(--green);
  transform: translateY(36px); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.28s;
  max-height: 94vh; overflow: hidden;
}
@media (min-width: 520px) { .modal-sheet { border-radius: 6px; border: 1.5px solid rgba(30,77,43,0.14); border-top: 2.5px solid var(--green); max-height: 90vh; margin: 0 16px; } }
.modal-backdrop.open .modal-sheet { transform: translateY(0); opacity: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
@media (prefers-reduced-motion: reduce) { .modal-backdrop, .modal-sheet { transition: none; } }
.modal-inner { padding: 0 22px 40px; }
.modal-drag { width: 36px; height: 4px; border-radius: 2px; background: rgba(30,77,43,0.13); margin: 12px auto 0; }
@media (min-width: 520px) { .modal-drag { display: none; } }
.modal-header-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.modal-eyebrow-sm { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); margin-bottom: 5px; }
.modal-heading { font-family: var(--serif); font-size: clamp(22px,6vw,27px); font-weight: 600; color: var(--ink); line-height: 1.1; }
.modal-close { background: none; border: none; cursor: pointer; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; margin-top: -2px; margin-right: -4px; transition: background 0.15s, color 0.15s, transform 0.15s; }
.modal-close:hover { background: rgba(30,77,43,0.08); color: var(--ink); }
.modal-close:active { transform: scale(0.9); background: rgba(30,77,43,0.13); }
.modal-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.modal-close svg { width: 14px; height: 14px; }
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pkg-card { position: relative; padding: 15px 12px 17px; border: 2px solid rgba(30,77,43,0.13); background: var(--cream); cursor: pointer; transition: border-color 0.18s, background 0.18s, box-shadow 0.18s; -webkit-tap-highlight-color: transparent; outline: none; }
.pkg-card:hover:not(.pkg-selected) { border-color: rgba(30,77,43,0.28); }
.pkg-card:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.pkg-card.pkg-selected { border: 2.5px solid var(--green); background: rgba(30,77,43,0.055); box-shadow: 0 0 0 4px rgba(30,77,43,0.09); }
.pkg-check { position: absolute; top: 11px; right: 11px; width: 22px; height: 22px; border-radius: 50%; border: 2px solid rgba(30,77,43,0.2); background: var(--parchment); display: flex; align-items: center; justify-content: center; transition: border-color 0.18s, background 0.18s; pointer-events: none; }
.pkg-card.pkg-selected .pkg-check { border-color: var(--green); background: var(--green); }
.pkg-check svg { width: 12px; height: 12px; stroke: var(--parchment); opacity: 0; transform: scale(0.4); transition: opacity 0.16s, transform 0.22s cubic-bezier(0.16,1,0.3,1); }
.pkg-card.pkg-selected .pkg-check svg { opacity: 1; transform: scale(1); }
.pkg-pop-label { font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); margin-bottom: 9px; min-height: 13px; line-height: 1; }
.pkg-qty { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: 2px; }
.pkg-dur { font-size: 11px; color: var(--muted); font-weight: 400; margin-bottom: 12px; }
.pkg-price { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--green); line-height: 1; }
.pkg-per { font-size: 11px; color: var(--muted); font-weight: 400; margin-top: 3px; line-height: 1.4; }
.pkg-save { display: inline-block; margin-top: 9px; font-size: 10px; font-weight: 600; font-family: var(--sans); color: var(--green); background: rgba(30,77,43,0.08); padding: 3px 8px; letter-spacing: 0.02em; }
.order-summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; background: rgba(30,77,43,0.07); border: 1.5px solid rgba(30,77,43,0.18); border-left: 4px solid var(--green); margin-bottom: 20px; }
.sum-left { flex: 1; }
.sum-label { font-size: 10px; color: var(--muted); font-weight: 500; font-family: var(--sans); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 3px; }
.sum-price { font-family: var(--serif); font-size: 36px; font-weight: 600; color: var(--green); line-height: 1; }
.sum-cod { font-size: 10px; color: var(--muted); font-family: var(--sans); font-weight: 400; margin-top: 4px; }
.sum-right { text-align: right; flex-shrink: 0; }
.sum-cod-badge { display: inline-block; background: var(--green); color: var(--parchment); font-size: 9px; font-weight: 600; font-family: var(--sans); letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; }
.sum-deliver { font-size: 10px; color: var(--muted); font-family: var(--sans); margin-top: 5px; }
@keyframes price-flash { 0% { opacity:1; transform:translateY(0); } 25% { opacity:0; transform:translateY(-5px); } 26% { opacity:0; transform:translateY(5px); } 100% { opacity:1; transform:translateY(0); } }
.sum-price.flashing { animation: price-flash 0.32s cubic-bezier(0.16,1,0.3,1); }
.pkg-total-line { font-size: 11px; color: var(--green); font-family: var(--sans); font-weight: 600; margin-top: 7px; padding-top: 6px; border-top: 1px solid rgba(30,77,43,0.14); }
.modal-rule { height: 1px; background: rgba(30,77,43,0.09); margin: 0 0 18px; }
.order-field { margin-bottom: 14px; }
.order-field label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-family: var(--sans); margin-bottom: 6px; }
.order-field input { display: block; width: 100%; padding: 12px 13px; border: 1.5px solid rgba(30,77,43,0.18); background: rgba(255,255,255,0.6); font-family: var(--sans); font-size: 15px; color: var(--ink); font-weight: 300; outline: none; -webkit-appearance: none; appearance: none; border-radius: 0; transition: border-color 0.16s, background 0.16s; }
.order-field input::placeholder { color: rgba(107,124,110,0.45); }
.order-field input:focus { border-color: var(--green); background: rgba(255,255,255,0.95); }
.order-field.has-error input { border-color: #a33; }
.field-err { display: none; font-size: 11px; color: #a33; margin-top: 4px; font-family: var(--sans); }
.order-field.has-error .field-err { display: block; }
.modal-cta { display: block; width: 100%; background: var(--green); color: var(--parchment); font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 15px 32px; border: none; cursor: pointer; text-align: center; margin-top: 18px; transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), opacity 0.2s; }
.modal-cta:hover { opacity: 0.87; }
.modal-cta:active { transform: scale(0.98); }
.modal-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.modal-trust { margin-top: 14px; display: flex; justify-content: center; align-items: center; gap: 11px; flex-wrap: wrap; font-size: 11px; color: var(--muted); font-weight: 400; font-family: var(--sans); }
.modal-trust span { display: flex; align-items: center; gap: 4px; }
.modal-trust svg { width: 11px; height: 11px; opacity: 0.65; flex-shrink: 0; }
.modal-stock-hero {
  background: #7B2D00;
  color: #FFD9B0;
  padding: 20px 22px 16px;
  margin: 0 -22px 20px;
  text-align: center;
}
.modal-stock-label {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #FFBD80; margin-bottom: 6px;
}
.modal-stock-number {
  font-family: var(--serif); font-size: 60px; font-weight: 600;
  line-height: 1; color: #FFF8F0; letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.modal-stock-sub {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  color: #FFD9B0; margin-bottom: 14px;
}
.modal-stock-meter {
  height: 5px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden;
}
.modal-stock-fill {
  height: 100%; background: #FF6B35; border-radius: 3px;
  transition: width 0.4s ease;
}
.modal-stock-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #FF6B35; flex-shrink: 0;
  animation: stock-pulse 1.5s ease-in-out infinite;
}
@keyframes stock-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.modal-guarantee-banner { display: flex; align-items: center; gap: 8px; background: rgba(30,77,43,0.07); border-bottom: 1px solid rgba(30,77,43,0.1); padding: 10px 22px; font-size: 12px; font-weight: 500; color: var(--green); font-family: var(--sans); letter-spacing: 0.02em; margin: 0 -22px 18px; }
.modal-guarantee-banner svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--green); }
.modal-product-img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(30,77,43,0.12); }
.field-hint { font-size: 10px; color: var(--muted); font-weight: 400; font-family: var(--sans); margin-bottom: 6px; }
.pkg-was { margin-bottom: 1px; }
.pkg-was del { font-size: 14px; color: rgba(107,124,110,0.85); font-weight: 500; font-family: var(--sans); text-decoration: line-through; text-decoration-color: #c0392b; text-decoration-thickness: 2px; }
.order-success { display: none; text-align: center; padding: 40px 24px 32px; }
.order-success.visible { display: block; }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(30,77,43,0.1); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon svg { width: 26px; height: 26px; stroke: var(--green); }
.success-title { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); line-height: 1.2; margin-bottom: 10px; }
.success-sub { font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.success-close { display: inline-block; padding: 12px 32px; border: 1.5px solid rgba(30,77,43,0.25); font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); cursor: pointer; background: none; }
.success-close:hover { background: rgba(30,77,43,0.05); }

/* ── FAQ ANSWER INNER CONTENT ── */
.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--ink-soft); font-weight: 600; }

.faq-ans-list {
  list-style: none; margin: 8px 0 4px;
  display: flex; flex-direction: column; gap: 0;
}
.faq-ans-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.7; color: var(--muted);
  padding: 8px 0; border-bottom: 1px solid rgba(30,77,43,0.07);
}
.faq-ans-list li:last-child { border-bottom: none; padding-bottom: 0; }
.faq-ans-list li::before {
  content: '—'; color: var(--gold); font-weight: 500;
  flex-shrink: 0; line-height: 1.7; font-size: 14px;
}
.faq-ans-list li.li-bad::before  { content: '✕'; color: #A0392B; font-size: 12px; margin-top: 3px; }
.faq-ans-list li.li-good::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 12px; margin-top: 3px; }

.faq-timeline {
  border-left: 2px solid rgba(184,137,42,0.22);
  padding-left: 16px; margin: 10px 0 14px;
  display: flex; flex-direction: column; gap: 14px;
}
.faq-t-label {
  display: block; font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.faq-t-text {
  font-family: var(--sans); font-size: 14px;
  font-weight: 300; line-height: 1.7; color: var(--muted);
}
.faq-note {
  font-family: var(--sans); font-size: 13px; color: var(--ink-soft);
  line-height: 1.65; border-top: 1px solid rgba(30,77,43,0.1);
  padding-top: 10px; margin-top: 2px; font-style: italic; font-weight: 400;
}

.faq-dosage-row { display: flex; gap: 10px; margin: 6px 0; }
.faq-dosage-pill {
  flex: 1; background: rgba(30,77,43,0.05);
  border: 1px solid rgba(30,77,43,0.12);
  padding: 14px 12px; text-align: center;
}
.faq-dosage-time {
  display: block; font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.faq-dosage-detail {
  font-family: var(--sans); font-size: 13px;
  font-weight: 400; color: var(--ink-soft); line-height: 1.6;
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1; transform: none; transition: none;
  }
  .sticky-bar { transition: none; }
  .modal-stock-dot { animation: none; opacity: 0.8; }
  .faq-a { transition: none; }
  .faq-a-inner { transition: none; }
}

/* ── RESPONSIVE ── */
@media (min-width: 520px) {
  .inline-img-wrap { margin: 32px -20px; }
}
@media (min-width: 700px) {
  .art-wrap { padding: 0 40px; }
  .inline-img-wrap { margin: 36px -40px; }
  .img-caption { padding-left: 40px; padding-right: 40px; }
}
