/* =========================================================
   FemiCore Direct-Offer Page — built for branded / buy-intent
   search traffic ("femicore", "buy femicore"). Brand-matched
   visual identity, everything essential above the fold.
   ========================================================= */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../assets/fonts/inter-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('../assets/fonts/playfair-display-variable.woff2') format('woff2');
}

:root {
  --navy: #242c37;
  --navy-2: #333f4e;
  --slate: #5c6e7b;
  --dusty-blue: #b4c5ce;
  --pale-blue: #e6edee;
  --pale-blue-2: #f2f6f7;
  --coral: #f0797b;
  --coral-dark: #e2585b;
  --coral-text: #c23c3f;
  --gold: #c09857;
  --gold-bg: #f1e6cf;
  --gold-text: #6b4f1f;
  --cream: #fbfaf7;
  --white: #ffffff;
  --ink: #2b2b2b;
  --ink-soft: #5c6266;
  --success: #2e7d4f;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(36,44,55,.08);
  --shadow-md: 0 10px 28px rgba(36,44,55,.12);
  --shadow-lg: 0 24px 56px rgba(36,44,55,.18);

  --topbar-h: 38px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); line-height: 1.15; font-weight: 700; }
section[id] { scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 10px); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--navy); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius-sm); z-index: 999; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* ---------- Trust topbar ---------- */
.topbar {
  height: var(--topbar-h);
  background: var(--navy);
  color: #d7e0e6;
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
  gap: 8px; text-align: center; padding: 0 14px;
}
.topbar svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 400; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(36,44,55,.08);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: var(--font-serif); font-weight: 800; font-size: 23px; letter-spacing: .03em; color: var(--navy); }
.logo span { color: var(--coral-dark); }
.header-links { display: flex; align-items: center; gap: 18px; }
.header-links a:not(.btn) { font-size: 14px; font-weight: 600; color: var(--navy-2); display: none; }
@media (min-width: 640px) { .header-links a:not(.btn) { display: inline; } }
.btn-sm { padding: 10px 20px !important; font-size: 14px !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 800; font-size: 17px;
  padding: 18px 32px; border-radius: var(--radius-pill);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: var(--white); box-shadow: 0 14px 30px rgba(226,88,91,.35); }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(226,88,91,.45); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); box-shadow: 0 12px 26px rgba(36,44,55,.28); }
.btn-dark:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Hero (offer fits above the fold) ---------- */
.hero { padding: 34px 0 46px; background: linear-gradient(180deg, var(--cream) 0%, var(--white) 60%); }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }

.eyebrow-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--success); background: #eaf5ee; padding: 6px 12px; border-radius: var(--radius-pill);
}
.eyebrow svg { width: 13px; height: 13px; }

.hero h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 14px; }
.hero h1 em { font-style: normal; color: var(--coral-dark); }
.hero-lead { font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; max-width: 480px; }

.price-callout {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--pale-blue); border-radius: var(--radius-md);
  padding: 16px 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.price-callout .big { font-family: var(--font-serif); font-weight: 800; color: var(--navy); font-size: 30px; }
.price-callout .big span { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.price-callout .was { text-decoration: line-through; color: var(--ink-soft); font-size: 14px; }
.price-callout .save-badge { background: #fdecec; color: var(--coral-text); font-weight: 800; font-size: 12.5px; padding: 6px 12px; border-radius: var(--radius-pill); }

.hero-cta-wrap .btn { min-width: 320px; }
.hero-cta-wrap .btn-sub { display: block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }

.trust-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 22px; }
.trust-row .stars { display: flex; gap: 2px; }
.trust-row .stars svg { width: 15px; height: 15px; color: var(--gold); }
.trust-row .rating-txt { font-size: 13px; font-weight: 700; color: var(--navy-2); }
.trust-row img { height: 34px; width: auto; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--navy-2); }
.trust-item svg { width: 17px; height: 17px; color: var(--success); flex-shrink: 0; }

/* hero visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual .frame {
  position: relative; width: 100%; max-width: 380px; aspect-ratio: 1/1.02;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle, var(--pale-blue) 0%, rgba(230,237,238,0) 68%);
  border-radius: 50%;
}
.hero-visual img { width: 56%; max-width: 260px; filter: drop-shadow(0 26px 34px rgba(36,44,55,.22)); }
.stock-ribbon {
  position: absolute; top: 6%; left: 4%;
  background: var(--navy); color: var(--white); font-size: 12px; font-weight: 800;
  padding: 7px 14px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.best-seller-ribbon {
  position: absolute; bottom: 10%; right: 2%;
  background: var(--white); border: 1px solid var(--pale-blue); box-shadow: var(--shadow-md);
  border-radius: var(--radius-md); padding: 10px 16px;
  font-size: 12.5px; font-weight: 800; color: var(--navy); text-align: center;
}
.best-seller-ribbon .num { display: block; font-family: var(--font-serif); font-size: 20px; color: var(--coral-dark); }

/* ---------- Benefit strip ---------- */
.benefit-strip { padding: 8px 0 40px; }
.benefit-strip ul { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit-strip li {
  display: flex; align-items: center; gap: 10px;
  background: var(--pale-blue-2); border-radius: var(--radius-md);
  padding: 14px 16px; font-size: 13.5px; font-weight: 700; color: var(--navy-2);
}
.benefit-strip li .ico {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--navy-2);
}
.benefit-strip li .ico svg { width: 18px; height: 18px; }

/* ---------- Section shared ---------- */
.section-pad { padding: 60px 0; }
.section-head { max-width: 640px; margin: 0 auto 36px; text-align: center; }
.section-head h2 { font-size: clamp(24px, 3.4vw, 32px); margin-bottom: 10px; }
.section-head p { color: var(--ink-soft); font-size: 16px; }
.bg-cream { background: var(--cream); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--pale-blue); border-radius: var(--radius-lg);
  padding: 28px 24px; display: flex; flex-direction: column; text-align: center; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card.is-featured { border-color: var(--coral); box-shadow: var(--shadow-lg); transform: scale(1.04); z-index: 2; }
.price-card.is-featured:hover { transform: scale(1.04) translateY(-5px); }
.price-ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: var(--white);
  font-weight: 800; font-size: 12px; padding: 7px 16px; border-radius: var(--radius-pill); white-space: nowrap;
}
.price-card h3 { font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); font-family: var(--font-sans); font-weight: 800; margin-bottom: 4px; }
.price-card .package-name { display: block; font-family: var(--font-serif); font-size: 21px; color: var(--navy); margin-top: 6px; }
.price-card .package-supply { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.package-img-box { margin: 16px auto; height: 160px; display: flex; align-items: center; justify-content: center; }
.package-img-box img { max-height: 100%; width: auto; }
.savings-badges { display: flex; justify-content: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.savings-badges span { font-size: 11.5px; font-weight: 800; padding: 5px 10px; border-radius: var(--radius-pill); }
.badge-save { background: #fdecec; color: var(--coral-text); }
.badge-guarantee { background: var(--gold-bg); color: var(--gold-text); }
.per-bottle { margin-bottom: 8px; }
.per-bottle .amount { font-family: var(--font-serif); font-weight: 800; font-size: 38px; color: var(--navy); }
.per-bottle .amount span { font-size: 17px; }
.per-bottle .unit { font-size: 12.5px; color: var(--ink-soft); }
.shipping-line { font-size: 13.5px; font-weight: 700; color: var(--success); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.shipping-line svg { width: 15px; height: 15px; }
.shipping-line.is-paid { color: var(--ink-soft); }
.price-total { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }
.price-total .crossed { text-decoration: line-through; margin-right: 8px; }
.price-total .final { font-weight: 800; color: var(--navy); font-size: 17px; }
.price-card .credit-cards-img { margin: 16px auto 0; height: 22px; width: auto; opacity: .8; }

.pricing-note { text-align: center; margin-top: 30px; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Guarantee band ---------- */
.guarantee-band { display: flex; align-items: center; gap: 26px; background: linear-gradient(135deg,#fffaf1,var(--white)); border: 1px solid var(--gold-bg); border-radius: var(--radius-lg); padding: 34px; }
.guarantee-band img { width: 100px; flex-shrink: 0; }
.guarantee-band h2 { font-size: 24px; margin-bottom: 8px; }
.guarantee-band p { color: var(--ink-soft); font-size: 15.5px; }
@media (max-width: 620px) { .guarantee-band { flex-direction: column; text-align: center; padding: 28px 22px; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--pale-blue); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 4px; text-align: left; }
.faq-question h3 { font-size: 16.5px; font-family: var(--font-sans); font-weight: 700; color: var(--navy); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--pale-blue-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s ease, background-color .25s ease; }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--coral); color: var(--white); transform: rotate(180deg); }
.faq-icon svg { width: 13px; height: 13px; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { padding: 0 4px 22px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #cdd6de; padding: 44px 0 26px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 26px; flex-wrap: wrap; margin-bottom: 24px; }
.footer-logo { font-family: var(--font-serif); font-weight: 800; font-size: 22px; color: var(--white); margin-bottom: 8px; }
.footer-top p { max-width: 420px; font-size: 13.5px; color: #a7b3bd; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 13.5px; font-weight: 600; color: #cdd6de; }
.footer-links a:hover { color: var(--white); }
.affiliate-disclosure { border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 0; margin: 18px 0; font-size: 12px; line-height: 1.7; color: #93a1ab; }
.footer-legal { font-size: 11.5px; line-height: 1.8; color: #9aa7b0; }
.footer-legal p { margin-bottom: 9px; }
.footer-legal a { color: #9aa7b0; text-decoration: underline; }
.footer-bottom { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12px; color: #8895a0; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 380; background: var(--white); box-shadow: 0 -8px 22px rgba(36,44,55,.14); padding: 10px 14px; transform: translateY(100%); transition: transform .3s ease; display: none; }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-row { display: flex; align-items: center; gap: 10px; }
.sticky-cta-row .price { font-family: var(--font-serif); font-weight: 800; color: var(--navy); font-size: 16px; white-space: nowrap; }
.sticky-cta-row .btn { flex: 1; padding: 13px 18px; font-size: 14.5px; }

/* ---------- Legal pages ---------- */
.legal-page { padding: 56px 0 90px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; }
.legal-page .updated { color: var(--ink-soft); font-size: 14px; margin-bottom: 34px; }
.legal-page h2 { font-size: 19px; margin: 28px 0 10px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 12px; }
.legal-page ul { padding-left: 22px; list-style: disc; margin-bottom: 16px; }
.legal-page a.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy-2); margin-bottom: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-visual { order: -1; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .price-callout { justify-content: center; }
  .hero-cta-wrap .btn { min-width: 0; width: 100%; }
  .trust-row { justify-content: center; }
  .benefit-strip ul { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.is-featured { transform: none; order: -1; }
  .price-card.is-featured:hover { transform: translateY(-5px); }
  .footer-top { flex-direction: column; }
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
}
@media (max-width: 480px) {
  .benefit-strip ul { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 46px 0; }
}
