/* ==========================================================================
   Familium RO Landing Page — babicka.css
   Scoped exclusively to body.cms-id-10 (RO CMS page 10, /content/10-bunica)
   Adapted from the HU build (mobilefirst). Differences:
     - body.cms-id-10 → body.cms-id-10 (all selectors)
     - target theme is mobilefirst directly (HU has no child theme)
     - mobilefirst doesn't use the #cms .cms_content high-specificity pattern,
       so the dual-selector approach from CZ is dropped here
     - mobilefirst custom.css layout escape (#wrapper > .container,
       #content-wrapper) retained from the PL build
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
body.cms-id-10 {
  --bab-bg-warm: #fcf4e8;
  --bab-bg-light: #fcfaf7;
  --bab-bg-faq: rgba(253, 242, 226, 0.5);
  --bab-text: #473d38;
  --bab-text-muted: #7c706a;
  --bab-burgundy: #741a42;
  --bab-burgundy-hover: #621335;
  --bab-gold: #c9a84c;
  --bab-green: #43a047;
  --bab-green-bg: #e8f5e9;
  --bab-heart: #c2185b;
  --bab-star: #d4a017;
  --bab-border: #e8e0d8;
  --bab-font-serif: 'Playfair Display', Georgia, serif;
  --bab-font-body: 'Nunito', 'Open Sans', system-ui, sans-serif;
  --bab-radius: 12px;
  --bab-radius-lg: 16px;
  --bab-max-width: 1200px;
  --bab-narrow-width: 800px;
}

/* ---------- Full-width layout (mobilefirst-specific escape) ---------- */
/* Beat child custom.css: body { background-color: #4f271b } (0-0-0-1) */
body.cms-id-10,
body.cms-id-10 section#wrapper,
body.cms-id-10 #page {
  background-color: var(--bab-bg-light);
  background-image: none;
}
/* Beat child custom.css: section#wrapper .container { background-color: #fff } */
body.cms-id-10 section#wrapper > .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--bab-bg-light);
  background-image: none;
}
/* Zero every nested wrapper so the landing sections flow flush
   from header to footer with no theme-injected gaps */
body.cms-id-10 section#wrapper,
body.cms-id-10 #wrapper { margin: 0; padding: 0; }
body.cms-id-10 #wrapper > .container > .row { margin: 0; }
body.cms-id-10 #content-wrapper {
  margin: 0;
  padding: 0;
  flex: 0 0 100%;
  max-width: 100%;
}
body.cms-id-10 #main { margin: 0; padding: 0; }

/* Content area full-width (override parent .page-content card styling
   + parent rule `.page-content, .page-footer { margin-bottom: 2.857rem }`
   which otherwise leaves a cream gap above the footer) */
body.cms-id-10 #content.page-content,
body.cms-id-10 .page-content.page-cms,
body.cms-id-10 .page-content {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
}

/* Footer sits flush against the final CTA */
body.cms-id-10 #footer { margin-top: 0; }

/* Hide PS chrome on landing page.
   #main > .page-header — empty <h1> wrapper, the h1's margin-bottom:28px
   was escaping and pushing the hero down.
   #main > .page-footer — empty wrapper with margin-bottom:40px that was
   the residual cream gap above the site footer.
   !important needed: some theme rule keeps re-declaring display:block on
   these wrappers with specificity I couldn't trace via styleSheets API
   (browser blocks introspection). Verified live that with !important +
   the html prefix below, cw.offsetHeight == #main.offsetHeight exactly
   and the footer sits flush against the final CTA. */
html body.cms-id-10 .breadcrumb-container,
html body.cms-id-10 .breadcrumb,
html body.cms-id-10 nav.breadcrumb,
html body.cms-id-10 #main > header.page-header,
html body.cms-id-10 #main > footer.page-footer,
html body.cms-id-10 #content .page-header,
html body.cms-id-10 .page-cms .page-header,
html body.cms-id-10 #left-column,
html body.cms-id-10 #right-column { display: none !important; }

/* The row has display:flex (parent theme) with default align-items:stretch.
   With only #content-wrapper as a flex child, that stretches the column
   vertically. Forcing flex-start collapses to content height. */
body.cms-id-10 #wrapper > .container > .row { align-items: flex-start; }
body.cms-id-10 #content-wrapper { height: auto; min-height: 0; }
body.cms-id-10 #main { height: auto; min-height: 0; }

/* custom.css has `#wrapper #content-wrapper { margin-top: 15px }` (two
   IDs = specificity 0,2,0,0, beats our body.class selector). Use a
   matching three-part selector with the body class wedged in to win. */
html body.cms-id-10 section#wrapper #content-wrapper { margin-top: 0 !important; }

/* User-supplied rules for the remaining visible cream strips.
   #full-menu margin-bottom is the 20px gap between menu scallop and hero.
   .footer-before is the cream block at the top of #footer that was
   showing through above the dark footer-container. */
body.cms-id-10 #full-menu { margin-bottom: 0; }
body.cms-id-10 #page #footer .footer-before { background-color: #373a3c; }

/* ---------- Shared utilities ---------- */
body.cms-id-10 .bab-container { max-width: var(--bab-max-width); margin: 0 auto; padding: 0 24px; }
body.cms-id-10 .bab-container--narrow { max-width: var(--bab-narrow-width); margin: 0 auto; padding: 0 24px; }
body.cms-id-10 .bab-section { padding: 80px 0; }
body.cms-id-10 .bab-section--warm { background: var(--bab-bg-warm); }
body.cms-id-10 .bab-section--light { background: var(--bab-bg-light); }
body.cms-id-10 .bab-text-center { text-align: center; }

body.cms-id-10 .bab-section-bar {
  width: 40px; height: 4px; background: var(--bab-gold);
  margin: 0 auto 12px; border-radius: 2px;
}

body.cms-id-10 .bab-section-title {
  font-family: var(--bab-font-serif);
  font-size: 3.25rem; font-weight: 700; color: var(--bab-text);
  text-align: center; margin-bottom: 36px; line-height: 1.3;
}
body.cms-id-10 .bab-section-title em {
  font-style: italic; color: var(--bab-burgundy);
}

body.cms-id-10 .bab-section-subtitle {
  font-family: var(--bab-font-body); font-size: 1.1rem;
  color: var(--bab-text-muted); text-align: center;
  max-width: 600px; margin: -12px auto 48px; line-height: 1.7;
}

/* Stars */
body.cms-id-10 .bab-stars { color: var(--bab-star); letter-spacing: 2px; }

/* CTA buttons — beat parent .btn-primary by adding bab-cta-specific rules */
body.cms-id-10 .bab-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bab-burgundy); color: #fff;
  font-family: var(--bab-font-body); font-size: 1rem; font-weight: 700;
  padding: 16px 32px; border-radius: var(--bab-radius);
  text-decoration: none; transition: background 0.25s, transform 0.15s;
  cursor: pointer; border: none;
}
body.cms-id-10 .bab-cta:hover { background: var(--bab-burgundy-hover); color: #fff; text-decoration: none; transform: translateY(-1px); }

body.cms-id-10 .bab-cta-white { background: #fff; color: var(--bab-burgundy); }
body.cms-id-10 .bab-cta-white:hover { background: var(--bab-bg-warm); color: var(--bab-burgundy); }

body.cms-id-10 .bab-cta-small { font-size: 0.9rem; padding: 12px 24px; }

body.cms-id-10 .bab-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--bab-burgundy);
  font-family: var(--bab-font-body); font-size: 1rem; font-weight: 700;
  padding: 16px 32px; border-radius: var(--bab-radius);
  border: 2px solid var(--bab-burgundy); text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
body.cms-id-10 .bab-cta-outline:hover { background: var(--bab-burgundy); color: #fff; text-decoration: none; }

body.cms-id-10 .bab-link {
  display: inline-block; margin-top: 12px; color: var(--bab-burgundy);
  font-family: var(--bab-font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
}
body.cms-id-10 .bab-link:hover { text-decoration: underline; }

/* ---------- S01 — HERO ---------- */
body.cms-id-10 .bab-hero {
  background: linear-gradient(var(--bab-bg-warm) 0%, var(--bab-bg-light) 100%);
  padding: 60px 0 80px;
}
body.cms-id-10 .bab-hero-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 48px; align-items: center;
}
body.cms-id-10 .bab-hero-text { color: var(--bab-text); }
body.cms-id-10 .bab-hero-subtitle {
  font-family: var(--bab-font-body); font-size: 1.1rem;
  line-height: 1.8; color: var(--bab-text-muted); margin-bottom: 24px;
}
body.cms-id-10 .bab-rating {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--bab-font-body); font-size: 0.9rem;
  color: var(--bab-text-muted); margin-bottom: 28px;
}
body.cms-id-10 .bab-rating strong { color: var(--bab-text); }
body.cms-id-10 .bab-hero-meta {
  margin-top: 14px; font-family: var(--bab-font-body);
  font-size: 0.85rem; color: var(--bab-text-muted);
}
body.cms-id-10 .bab-hero-image { position: relative; }
body.cms-id-10 .bab-hero-image > img {
  width: 100%; border-radius: var(--bab-radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12); display: block;
}
body.cms-id-10 .bab-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px; border-radius: 0 0 var(--bab-radius-lg) var(--bab-radius-lg);
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.65) 100%);
  text-align: right;
}
body.cms-id-10 .bab-headline {
  font-family: var(--bab-font-serif); font-size: 2.8rem;
  font-weight: 700; color: #fff; margin: 0; line-height: 1.15;
}
body.cms-id-10 .bab-headline em {
  font-style: italic; display: block; color: var(--bab-gold);
}

/* ---------- S02 — TRUST BAR ---------- */
body.cms-id-10 .bab-trust-bar {
  background: rgba(71, 61, 56, 0.05);
  border-top: 1px solid var(--bab-border); border-bottom: 1px solid var(--bab-border);
  padding: 18px 0;
}
body.cms-id-10 .bab-trust-items {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
  font-family: var(--bab-font-body); font-size: 0.9rem; color: var(--bab-text-muted);
}
body.cms-id-10 .bab-trust-item { display: flex; align-items: center; gap: 8px; }
body.cms-id-10 .bab-heart { color: var(--bab-heart); font-size: 1.1rem; }

/* ---------- S03 — STORY CARDS ---------- */
body.cms-id-10 .bab-stories-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}
body.cms-id-10 .bab-story-card {
  position: relative; border-radius: var(--bab-radius-lg); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
body.cms-id-10 .bab-story-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
body.cms-id-10 .bab-story-card:hover img { transform: scale(1.05); }
body.cms-id-10 .bab-story-card-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 28px; text-align: center;
  background: rgba(45, 30, 25, 0.45);
  transition: background 0.4s ease;
}
body.cms-id-10 .bab-story-card:hover .bab-story-card-overlay {
  background: rgba(45, 30, 25, 0.7);
}
body.cms-id-10 .bab-story-card-overlay h3 {
  font-family: var(--bab-font-serif); font-size: 2rem;
  font-weight: 700; color: #fff; margin: 0 0 12px;
  font-style: italic; text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
body.cms-id-10 .bab-story-card-overlay p {
  font-family: var(--bab-font-body); font-size: 1rem;
  color: #fff; line-height: 1.6; margin: 0;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
body.cms-id-10 .bab-story-card:hover .bab-story-card-overlay p {
  max-height: 120px; opacity: 1;
}
body.cms-id-10 .bab-stories-closing {
  font-family: var(--bab-font-body); font-size: 1rem;
  color: var(--bab-text-muted); text-align: center;
  font-style: italic;
}

/* ---------- S04 — FEATURES ---------- */
body.cms-id-10 .bab-features-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
body.cms-id-10 .bab-features-image img {
  width: 100%; border-radius: var(--bab-radius-lg); display: block;
}
body.cms-id-10 .bab-features-text h2 {
  font-family: var(--bab-font-serif); font-size: 3.25rem;
  font-weight: 700; color: var(--bab-text); margin: 0 0 16px; line-height: 1.2;
}
body.cms-id-10 .bab-features-text > p {
  font-family: var(--bab-font-body); font-size: 1rem;
  color: var(--bab-text-muted); line-height: 1.7; margin-bottom: 24px;
}
body.cms-id-10 .bab-features-list {
  list-style: none; padding: 0; margin: 0 0 24px;
}
body.cms-id-10 .bab-features-list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--bab-font-body); font-size: 1rem;
  color: var(--bab-text); padding: 8px 0;
}
body.cms-id-10 .bab-features-list li svg { flex-shrink: 0; }
body.cms-id-10 .bab-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(213, 136, 11, 0.1); border: none;
  color: #d5880b; font-family: var(--bab-font-body);
  font-size: 0.95rem; font-weight: 700; padding: 12px 20px;
  border-radius: var(--bab-radius); margin-bottom: 20px;
}
body.cms-id-10 .bab-features-text .bab-badge { display: flex; width: fit-content; }
body.cms-id-10 .bab-features-text .bab-cta { display: inline-flex; }

/* ---------- S05 — VIDEO ---------- */
body.cms-id-10 .bab-video-wrapper {
  position: relative; border-radius: var(--bab-radius-lg);
  overflow: hidden; cursor: pointer; max-width: 800px; margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
body.cms-id-10 .bab-video-wrapper img { width: 100%; display: block; }
body.cms-id-10 .bab-video-wrapper iframe { border: 0; }
body.cms-id-10 .bab-video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(124, 45, 62, 0.9); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: transform 0.3s, background 0.3s;
}
body.cms-id-10 .bab-video-wrapper:hover .bab-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--bab-burgundy);
}

/* ---------- S06 — WHY US ---------- */
body.cms-id-10 .bab-why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; margin-bottom: 48px;
}
body.cms-id-10 .bab-why-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; border: 1px solid var(--bab-border);
  border-radius: var(--bab-radius-lg); padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
body.cms-id-10 .bab-why-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
body.cms-id-10 .bab-why-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--bab-radius);
  background: rgba(116, 26, 66, 0.08);
  display: flex; align-items: center; justify-content: center;
}
body.cms-id-10 .bab-why-card h3 {
  font-family: var(--bab-font-serif); font-size: 1.25rem;
  font-weight: 700; color: var(--bab-text); margin: 0 0 8px;
}
body.cms-id-10 .bab-why-card > div:last-child { flex: 1; }
body.cms-id-10 .bab-why-card p {
  font-family: var(--bab-font-body); font-size: 0.95rem;
  color: var(--bab-text-muted); line-height: 1.7; margin: 0;
}

/* ---------- S07 — STEPS ---------- */
body.cms-id-10 .bab-steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; text-align: center;
}
body.cms-id-10 .bab-step { position: relative; padding: 0 16px; }
body.cms-id-10 .bab-step-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bab-bg-light); border: 2px solid var(--bab-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative;
}
body.cms-id-10 .bab-step-num {
  position: absolute; top: -6px; right: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bab-burgundy); color: #fff;
  font-family: var(--bab-font-body); font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
body.cms-id-10 .bab-step-connector {
  position: absolute; top: 40px; left: calc(50% + 44px);
  width: calc(100% - 88px + 32px); height: 2px;
  background: var(--bab-burgundy); opacity: 0.3;
}
body.cms-id-10 .bab-step:last-child .bab-step-connector { display: none; }
body.cms-id-10 .bab-step h3 {
  font-family: var(--bab-font-serif); font-size: 1.15rem;
  font-weight: 700; color: var(--bab-text); margin: 0 0 8px;
}
body.cms-id-10 .bab-step p {
  font-family: var(--bab-font-body); font-size: 0.9rem;
  color: var(--bab-text-muted); line-height: 1.6; margin: 0;
}

/* ---------- S08 — CTA BANNER ---------- */
body.cms-id-10 .bab-cta-banner {
  position: relative; background: var(--bab-bg-light);
  padding: 60px 0 80px; overflow: hidden; text-align: center;
}
body.cms-id-10 .bab-cta-banner-bg {
  position: relative; width: 100%; overflow: hidden;
  margin-bottom: 32px;
}
body.cms-id-10 .bab-cta-banner-collage {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
body.cms-id-10 .bab-cta-banner-content { position: relative; z-index: 1; }
body.cms-id-10 .bab-cta-banner h2 {
  font-family: var(--bab-font-serif); font-size: 3.75rem;
  font-weight: 700; color: var(--bab-text); margin: 0 0 24px; line-height: 1.15;
}
body.cms-id-10 .bab-cta-banner h2 em {
  font-style: italic; color: var(--bab-burgundy);
}
body.cms-id-10 .bab-cta-banner .bab-cta-banner-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--bab-font-body); font-size: 1rem; font-weight: 700;
  color: var(--bab-text); background: #fff; border: 1px solid var(--bab-border);
  border-radius: 30px; padding: 12px 24px; margin-bottom: 20px;
}
body.cms-id-10 .bab-cta-banner p {
  font-family: var(--bab-font-body); font-size: 1.1rem;
  color: var(--bab-text-muted); margin: 0 0 28px;
}

/* ---------- S09 — ORIGIN STORY ---------- */
body.cms-id-10 .bab-origin-content p {
  font-family: var(--bab-font-body); font-size: 1.05rem;
  color: var(--bab-text); line-height: 1.8; margin-bottom: 20px;
}
body.cms-id-10 .bab-origin-content em { font-style: italic; }
body.cms-id-10 .bab-quote {
  border-left: 4px solid var(--bab-gold);
  background: var(--bab-bg-warm); padding: 24px 28px;
  border-radius: 0 var(--bab-radius) var(--bab-radius) 0;
  margin: 32px 0;
}
body.cms-id-10 .bab-quote p {
  font-family: var(--bab-font-serif); font-size: 1.15rem;
  font-style: italic; color: var(--bab-text); line-height: 1.6;
  margin: 0 0 12px;
}
body.cms-id-10 .bab-quote cite {
  font-family: var(--bab-font-body); font-size: 0.9rem;
  color: var(--bab-text-muted); font-style: normal;
}

/* ---------- S10 — REVIEWS ---------- */
body.cms-id-10 .bab-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
body.cms-id-10 .bab-review-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--bab-radius-lg);
  padding: 32px; border: 1px solid var(--bab-border);
}
body.cms-id-10 .bab-review-stars {
  color: var(--bab-star); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px;
}
body.cms-id-10 .bab-review-card p {
  font-family: var(--bab-font-serif); font-size: 1.05rem;
  font-style: italic; color: var(--bab-text); line-height: 1.6; margin: 0 0 16px;
}
body.cms-id-10 .bab-review-card cite {
  display: block; border-top: 1px solid var(--bab-border);
  padding-top: 16px; margin-top: auto;
  font-family: var(--bab-font-body); font-size: 0.85rem;
  font-style: normal;
}
body.cms-id-10 .bab-review-card cite strong {
  display: block; color: var(--bab-text); font-weight: 700;
}
body.cms-id-10 .bab-review-card cite span {
  color: var(--bab-text-muted); font-size: 0.8rem;
}

/* ---------- S11 — URGENCY ---------- */
body.cms-id-10 .bab-urgency-text {
  font-family: var(--bab-font-body); font-size: 1.1rem;
  color: var(--bab-text); line-height: 1.8; text-align: center;
  margin-bottom: 20px;
}
body.cms-id-10 .bab-urgency-text strong { color: var(--bab-burgundy); }
body.cms-id-10 .bab-urgency-subtitle {
  font-family: var(--bab-font-serif); font-size: 1.05rem;
  font-style: italic; color: var(--bab-text-muted); text-align: center;
  line-height: 1.7; margin-bottom: 28px;
}
body.cms-id-10 .bab-urgency-actions {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
body.cms-id-10 .bab-urgency-link {
  font-family: var(--bab-font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--bab-text); text-decoration: none;
}
body.cms-id-10 .bab-urgency-link:hover { color: var(--bab-burgundy); text-decoration: underline; }

/* ---------- S12 — PRODUCT MAIN ---------- */
body.cms-id-10 .bab-product-main {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
  background: #fff; border: 1px solid var(--bab-border);
  border-radius: var(--bab-radius-lg); padding: 40px;
  max-width: 900px; margin: 0 auto;
}
body.cms-id-10 .bab-product-image { position: relative; }
body.cms-id-10 .bab-product-image img {
  width: 100%; border-radius: var(--bab-radius); display: block;
}
body.cms-id-10 .bab-product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--bab-burgundy); color: #fff;
  font-family: var(--bab-font-body); font-size: 0.9rem; font-weight: 700;
  padding: 8px 16px; border-radius: 20px; z-index: 1;
}
body.cms-id-10 .bab-product-info h3 {
  font-family: var(--bab-font-serif); font-size: 1.5rem;
  font-weight: 700; color: var(--bab-text); margin: 0 0 8px;
}
body.cms-id-10 .bab-product-desc {
  font-family: var(--bab-font-body); font-size: 0.95rem;
  color: var(--bab-text-muted); line-height: 1.6; margin-bottom: 12px;
}
body.cms-id-10 .bab-product-rating {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--bab-font-body); font-size: 0.85rem;
  color: var(--bab-text-muted); margin-bottom: 16px;
}
body.cms-id-10 .bab-product-features {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 6px;
}
body.cms-id-10 .bab-product-features li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--bab-font-body); font-size: 1rem;
  color: var(--bab-text);
}
body.cms-id-10 .bab-product-features li svg { flex-shrink: 0; }
body.cms-id-10 .bab-product-price { margin-bottom: 20px; }
body.cms-id-10 .bab-price-current {
  font-family: var(--bab-font-serif); font-size: 2rem;
  font-weight: 700; color: var(--bab-burgundy);
}
body.cms-id-10 .bab-price-old {
  font-family: var(--bab-font-body); font-size: 1rem;
  color: var(--bab-text-muted); text-decoration: line-through; margin-left: 12px;
}
body.cms-id-10 .bab-product-info .bab-cta {
  width: 100%; justify-content: center;
}
body.cms-id-10 .bab-product-meta {
  font-family: var(--bab-font-body); font-size: 0.8rem;
  color: var(--bab-text-muted); margin-top: 16px;
}
body.cms-id-10 .bab-detail-btn {
  display: block; width: 100%; text-align: center;
  font-family: var(--bab-font-body); font-size: 1rem; font-weight: 700;
  color: var(--bab-text); background: transparent;
  border: 1px solid var(--bab-border); border-radius: var(--bab-radius);
  padding: 14px 24px; margin-top: 12px;
  text-decoration: none; transition: border-color 0.25s, background 0.25s;
}
body.cms-id-10 .bab-detail-btn:hover {
  border-color: var(--bab-burgundy); background: var(--bab-bg-light);
  color: var(--bab-text); text-decoration: none;
}

/* ---------- S13 — OTHER BOOKS ---------- */
/* RO has 2 books (grandpa + family tree) — center the pair, but keep each card
   the SAME width as a card in the original 3-col grid: (100% - 2*gap) / 3. */
body.cms-id-10 .bab-books-grid {
  display: grid; grid-template-columns: repeat(2, calc((100% - 48px) / 3));
  gap: 24px; margin: 0 auto 40px; justify-content: center;
}
body.cms-id-10 .bab-book-card {
  background: #fff; border: 1px solid var(--bab-border);
  border-radius: var(--bab-radius-lg); padding: 24px;
  text-align: center; position: relative;
}
body.cms-id-10 .bab-book-card img {
  width: 100%; max-width: 200px; border-radius: var(--bab-radius);
  margin: 0 auto 16px; display: block;
}
body.cms-id-10 .bab-book-card h4 {
  font-family: var(--bab-font-serif); font-size: 1.15rem;
  font-weight: 700; color: var(--bab-text); margin: 0 0 8px;
}
body.cms-id-10 .bab-book-card p {
  font-family: var(--bab-font-body); font-size: 0.85rem;
  color: var(--bab-text-muted); line-height: 1.6; margin: 0 0 12px;
}
body.cms-id-10 .bab-book-rating {
  font-family: var(--bab-font-body); font-size: 0.8rem;
  color: var(--bab-text-muted); margin-bottom: 8px;
}
body.cms-id-10 .bab-book-detail {
  display: block; text-align: center; margin-top: 8px;
  font-family: var(--bab-font-body); font-size: 0.85rem; font-weight: 600;
  color: var(--bab-text-muted); text-decoration: none;
}
body.cms-id-10 .bab-book-detail:hover { color: var(--bab-burgundy); text-decoration: underline; }
body.cms-id-10 .bab-trust-badges {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  font-family: var(--bab-font-body); font-size: 0.85rem; color: var(--bab-text-muted);
}

/* ---------- S14 — GUARANTEE ---------- */
body.cms-id-10 .bab-guarantee-card {
  background: #fff; border-radius: var(--bab-radius-lg);
  padding: 48px; text-align: center;
  max-width: 700px; margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
body.cms-id-10 .bab-guarantee-icon { margin-bottom: 20px; }
body.cms-id-10 .bab-guarantee-title {
  font-family: var(--bab-font-serif); font-size: 1.8rem;
  font-weight: 700; color: var(--bab-text); margin: 0 0 12px;
}
body.cms-id-10 .bab-guarantee-text {
  font-family: var(--bab-font-body); font-size: 1rem;
  color: var(--bab-text-muted); line-height: 1.7; margin-bottom: 32px;
}
body.cms-id-10 .bab-guarantee-badges {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
body.cms-id-10 .bab-guarantee-badge {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
body.cms-id-10 .bab-guarantee-badge svg {
  background: var(--bab-green-bg); border-radius: var(--bab-radius); padding: 10px;
  width: 44px; height: 44px;
}
body.cms-id-10 .bab-guarantee-badge span {
  font-family: var(--bab-font-body); font-size: 0.8rem;
  color: var(--bab-text-muted); text-align: center;
}

/* ---------- S15 — FAQ ---------- */
body.cms-id-10 .bab-faq-wrapper {
  background: #fff; border-radius: var(--bab-radius-lg);
  border: 1px solid var(--bab-border); overflow: hidden;
}
body.cms-id-10 .bab-faq-item { border-bottom: 1px solid var(--bab-border); }
body.cms-id-10 .bab-faq-item:last-child { border-bottom: none; }
body.cms-id-10 .bab-faq-question {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-family: var(--bab-font-body); font-size: 1rem;
  font-weight: 700; color: var(--bab-text); text-align: left;
  transition: background 0.2s;
}
body.cms-id-10 .bab-faq-question:hover { background: var(--bab-bg-light); }
body.cms-id-10 .bab-faq-open .bab-faq-question { background: var(--bab-bg-light); }
body.cms-id-10 .bab-faq-arrow {
  font-size: 1.4rem; color: var(--bab-text-muted);
  transition: transform 0.3s; display: inline-block;
}
body.cms-id-10 .bab-faq-open .bab-faq-arrow { transform: rotate(90deg); }
body.cms-id-10 .bab-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
body.cms-id-10 .bab-faq-open .bab-faq-answer {
  max-height: 300px; padding: 12px 24px 20px;
}
body.cms-id-10 .bab-faq-answer p {
  font-family: var(--bab-font-body); font-size: 0.95rem;
  color: var(--bab-text-muted); line-height: 1.7; margin: 0;
}

/* ---------- S16 — HESITATION ---------- */
body.cms-id-10 .bab-hesitation-list {
  margin-bottom: 40px; display: flex; flex-direction: column; gap: 16px;
}
body.cms-id-10 .bab-hesitation-card {
  display: flex; align-items: center; gap: 20px;
  background: #fff; border: 1px solid var(--bab-border);
  border-radius: var(--bab-radius-lg); padding: 24px 28px;
}
body.cms-id-10 .bab-hesitation-icon-circle {
  width: 48px; height: 48px; min-width: 48px; border-radius: 50%;
  background: rgba(116, 26, 66, 0.08);
  display: flex; align-items: center; justify-content: center;
}
body.cms-id-10 .bab-hesitation-icon-circle svg { display: block; }
body.cms-id-10 .bab-hesitation-card p {
  font-family: var(--bab-font-body); font-size: 1.05rem;
  color: var(--bab-text); line-height: 1.6; margin: 0;
}
body.cms-id-10 .bab-hesitation-card strong { color: var(--bab-burgundy); }

/* ---------- S17 — FINAL CTA ---------- */
body.cms-id-10 .bab-final-cta {
  background: var(--bab-burgundy); padding: 80px 0; text-align: center;
}
body.cms-id-10 .bab-final-cta h2 {
  font-family: var(--bab-font-serif); font-size: 3.5rem;
  font-weight: 700; color: #fff; margin: 0 0 16px; line-height: 1.3;
}
body.cms-id-10 .bab-final-subtitle {
  font-family: var(--bab-font-body); font-size: 1.1rem;
  color: rgba(255,255,255,0.8); margin-bottom: 40px;
}
body.cms-id-10 .bab-final-stats {
  display: flex; justify-content: center; gap: 56px;
  margin-bottom: 40px;
}
body.cms-id-10 .bab-final-stat {
  display: flex; flex-direction: column; align-items: center;
}
body.cms-id-10 .bab-final-stat strong {
  font-family: var(--bab-font-serif); font-size: 2rem;
  color: var(--bab-gold);
}
body.cms-id-10 .bab-final-stat span {
  font-family: var(--bab-font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
body.cms-id-10 .bab-final-meta {
  font-family: var(--bab-font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.6); margin-top: 16px;
}

/* ---------- ABOVE-THE-FOLD ENTRANCE ---------- */
@keyframes babFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes babFadeScale {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
body.cms-id-10 .bab-hero-text  { animation: babFadeUp    0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s  both; }
body.cms-id-10 .bab-hero-image { animation: babFadeScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.25s both; }
body.cms-id-10 .bab-trust-bar  { animation: babFadeUp    0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s  both; }
body.cms-id-10 .bab-trust-bar + .bab-section .bab-section-bar       { animation: babFadeUp    0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.55s both; }
body.cms-id-10 .bab-trust-bar + .bab-section .bab-section-title     { animation: babFadeUp    0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s  both; }
body.cms-id-10 .bab-trust-bar + .bab-section .bab-section-subtitle  { animation: babFadeUp    0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s  both; }
body.cms-id-10 .bab-trust-bar + .bab-section .bab-story-card:nth-child(1) { animation: babFadeScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s  both; }
body.cms-id-10 .bab-trust-bar + .bab-section .bab-story-card:nth-child(2) { animation: babFadeScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.92s both; }
body.cms-id-10 .bab-trust-bar + .bab-section .bab-story-card:nth-child(3) { animation: babFadeScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.04s both; }
@media (prefers-reduced-motion: reduce) {
  body.cms-id-10 .bab-hero-text,
  body.cms-id-10 .bab-hero-image,
  body.cms-id-10 .bab-trust-bar,
  body.cms-id-10 .bab-trust-bar + .bab-section .bab-section-bar,
  body.cms-id-10 .bab-trust-bar + .bab-section .bab-section-title,
  body.cms-id-10 .bab-trust-bar + .bab-section .bab-section-subtitle,
  body.cms-id-10 .bab-trust-bar + .bab-section .bab-story-card { animation: none; }
}

/* ---------- SCROLL ANIMATIONS ---------- */
body.cms-id-10 .bab-anim {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
body.cms-id-10 .bab-anim--visible { opacity: 1; transform: translateY(0); }
body.cms-id-10 .bab-anim-scale {
  opacity: 0; transform: scale(0.95);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
body.cms-id-10 .bab-anim-scale.bab-anim--visible { opacity: 1; transform: scale(1); }
body.cms-id-10 .bab-anim-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
body.cms-id-10 .bab-anim-left.bab-anim--visible { opacity: 1; transform: translateX(0); }
body.cms-id-10 .bab-anim-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
body.cms-id-10 .bab-anim-right.bab-anim--visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  body.cms-id-10 .bab-anim,
  body.cms-id-10 .bab-anim-scale,
  body.cms-id-10 .bab-anim-left,
  body.cms-id-10 .bab-anim-right { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
  body.cms-id-10 .bab-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  body.cms-id-10 .bab-hero-text { order: 2; text-align: center; }
  body.cms-id-10 .bab-hero-image { order: 1; }
  body.cms-id-10 .bab-rating { justify-content: center; }
  body.cms-id-10 .bab-hero .bab-cta { margin: 0 auto; }
  body.cms-id-10 .bab-hero-meta { text-align: center; }
  body.cms-id-10 .bab-headline { font-size: 2rem; }
  body.cms-id-10 .bab-trust-items { gap: 24px; }
  body.cms-id-10 .bab-section { padding: 56px 0; }
  body.cms-id-10 .bab-stories-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 40px; }
  body.cms-id-10 .bab-features-grid { grid-template-columns: 1fr; }
  body.cms-id-10 .bab-features-image { order: -1; max-width: 480px; margin: 0 auto; }
  body.cms-id-10 .bab-why-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto 48px; }
  body.cms-id-10 .bab-steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  body.cms-id-10 .bab-step-connector { display: none; }
  body.cms-id-10 .bab-origin-content { max-width: 100%; }
  body.cms-id-10 .bab-reviews-grid { grid-template-columns: 1fr 1fr; }
  body.cms-id-10 .bab-product-main { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  body.cms-id-10 .bab-books-grid { grid-template-columns: 1fr 1fr; }
  body.cms-id-10 .bab-guarantee-badges { grid-template-columns: repeat(2, 1fr); }
  body.cms-id-10 .bab-final-stats { gap: 32px; }
  body.cms-id-10 .bab-cta-banner h2 { font-size: 2rem; }
  body.cms-id-10 .bab-section-title { font-size: 2.5rem; }
  body.cms-id-10 .bab-final-cta h2 { font-size: 2rem; }
}

@media (max-width: 575px) {
  body.cms-id-10 .bab-hero { padding: 36px 0 44px; }
  body.cms-id-10 .bab-hero-overlay { padding: 16px; }
  body.cms-id-10 .bab-headline { font-size: 1.2rem; }
  body.cms-id-10 .bab-cta { width: 100%; justify-content: center; padding: 16px 24px; }
  body.cms-id-10 .bab-cta-outline { width: 100%; justify-content: center; padding: 16px 24px; }
  body.cms-id-10 .bab-trust-items { flex-direction: column; align-items: flex-start; gap: 10px; }
  body.cms-id-10 .bab-section { padding: 40px 0; }
  body.cms-id-10 .bab-container { padding: 0 16px; }
  body.cms-id-10 .bab-container--narrow { padding: 0 16px; }
  body.cms-id-10 .bab-section-title { font-size: 1.5rem; }
  body.cms-id-10 .bab-section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
  body.cms-id-10 .bab-steps-grid { grid-template-columns: 1fr; }
  body.cms-id-10 .bab-reviews-grid { grid-template-columns: 1fr; }
  body.cms-id-10 .bab-books-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 40px; }
  body.cms-id-10 .bab-product-main { padding: 24px; }
  body.cms-id-10 .bab-product-features { flex-wrap: wrap; }
  body.cms-id-10 .bab-guarantee-card { padding: 32px 20px; }
  body.cms-id-10 .bab-guarantee-badges { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  body.cms-id-10 .bab-final-stats { flex-direction: column; gap: 20px; }
  body.cms-id-10 .bab-cta-banner { padding: 56px 0; }
  body.cms-id-10 .bab-cta-banner h2 { font-size: 1.6rem; }
  body.cms-id-10 .bab-final-cta { padding: 56px 0; }
  body.cms-id-10 .bab-final-cta h2 { font-size: 1.6rem; }
  body.cms-id-10 .bab-trust-badges { flex-direction: column; align-items: center; gap: 12px; }
  body.cms-id-10 .bab-hesitation-card { padding: 20px; gap: 16px; }
  body.cms-id-10 .bab-hesitation-icon-circle { width: 40px; height: 40px; min-width: 40px; }
  body.cms-id-10 .bab-cta-banner-badge span { display: none; }
}
