/* ============================================================
   BÍBLIA FELINA — Página de Vendas
   Design: editorial, acolhedor, "livro ilustrado sobre gatos"
   ============================================================ */

:root {
  --cream: #FBF4E8;
  --cream-2: #F4E7D3;
  --cream-3: #EFDEC3;
  --paper: #FFFDF8;
  --ink: #33261A;
  --ink-soft: #6B5844;
  --ink-faint: #8C7B67;
  --terracotta: #C1602E;
  --terracotta-dark: #9C4A22;
  --terracotta-light: #E8B27C;
  --gold: #B8863B;
  --gold-light: #D9B87C;
  --green: #6E7A54;
  --line: #E3CBA9;
  --line-soft: #EDDCC0;
  --white: #FFFFFF;
  --shadow-soft: 0 0.6rem 2rem rgba(80, 55, 30, 0.10);
  --shadow-card: 0 0.4rem 1.4rem rgba(80, 55, 30, 0.08);
  --radius-lg: 1.4rem;
  --radius-md: 1rem;
  --radius-sm: 0.6rem;
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --container: 1180px;
}

/* ---------------- RESET ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16.5px;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-serif); margin: 0; color: var(--ink); font-weight: 700; }
p { margin: 0 0 1em 0; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.overflow-guard { overflow-x: hidden; }

/* ---------------- UTILITIES ---------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta-dark);
  margin-bottom: 0.9rem;
}
.section-pad { padding: 3.6rem 0; }
@media (min-width: 800px) { .section-pad { padding: 5.6rem 0; } }
.center { text-align: center; }
.max-w-text { max-width: 640px; margin-left: auto; margin-right: auto; }
.divider-orn {
  display: flex; align-items: center; justify-content: center; gap: 0.7rem;
  margin: 1.6rem 0; color: var(--gold);
}
.divider-orn::before, .divider-orn::after {
  content: ""; height: 1px; width: 2.4rem; background: var(--line);
}
.divider-orn span { font-size: 0.6rem; }

/* ---------------- BUTTONS ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1.05rem 1.8rem;
  border-radius: 3.2rem;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1.2;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 0.5rem 1.4rem rgba(193, 96, 46, 0.35);
  width: 100%;
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
@media (min-width: 600px) { .btn-primary { width: auto; padding-left: 2.4rem; padding-right: 2.4rem; } }
.btn-block { width: 100%; }
.btn-arrow::after { content: "→"; font-weight: 400; }

.btn-sub {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  justify-content: center;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.btn-sub span { display: inline-flex; align-items: center; gap: 0.35rem; }
.btn-sub .chk { color: var(--green); font-weight: 700; }

/* ---------------- URGENCY BAR ---------------- */
.urgency-bar {
  background: var(--terracotta-dark);
  color: var(--cream);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 0.55rem 1rem;
}
.urgency-bar strong { color: var(--terracotta-light); }

/* ---------------- HERO ---------------- */
.hero {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 62%);
  padding: 2.4rem 0 2.8rem;
}
.hero .container {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero .container { grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; }
  .hero-media { order: 2; }
  .hero-copy { order: 1; }
}
.hero-copy h1 {
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.hero-copy h1 .accent { color: var(--terracotta); }
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 1.1rem;
  max-width: 46ch;
  line-height: 1.65;
}
.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.price-block {
  margin-top: 1.7rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.price-old {
  font-size: 1.15rem;
  color: var(--ink-faint);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
}
.price-new {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--terracotta-dark);
  font-weight: 700;
  line-height: 1;
}
.price-tag {
  background: var(--cream-3);
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  letter-spacing: 0.03em;
}
.hero-cta { margin-top: 1.3rem; }

/* ---------------- IDENTIFICATION GRID ---------------- */
.identification { background: var(--cream); }
.id-layout {
  display: grid;
  gap: 2.2rem;
  align-items: center;
}
@media (min-width: 960px) {
  .id-layout { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
}
.id-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.id-title { font-size: clamp(1.5rem, 3.6vw, 2.05rem); line-height: 1.25; margin-bottom: 1.2rem; }
.id-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin: 1.4rem 0 1.6rem;
}
@media (min-width: 560px) { .id-grid { grid-template-columns: repeat(2, 1fr); } }
.id-chip {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.id-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); flex: none; }
.id-note {
  font-size: 0.98rem;
  color: var(--ink-soft);
  font-style: italic;
  border-left: 3px solid var(--terracotta);
  padding-left: 1rem;
}

/* ---------------- EDITORIAL QUOTE SECTION ---------------- */
.editorial {
  background: var(--cream-2);
  overflow: hidden;
}
.editorial .container {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--paper);
}
@media (min-width: 860px) {
  .editorial .container { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.editorial-media { min-height: 240px; }
.editorial-media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy {
  padding: 2.4rem 1.6rem;
  display: flex;
  align-items: center;
}
@media (min-width: 800px) { .editorial-copy { padding: 3rem 3.2rem; } }
.editorial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.2vw, 1.7rem);
  line-height: 1.42;
  color: var(--ink);
}
.editorial-quote .from { color: var(--ink-faint); font-family: var(--font-sans); font-size: 0.95rem; }
.editorial-quote .to { color: var(--terracotta-dark); font-weight: 700; }

/* ---------------- BENEFITS CHECKLIST ---------------- */
.benefits { background: var(--cream); }
.benefits-head { max-width: 640px; margin: 0 auto 2.2rem; text-align: center; }
.benefits-head h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); }
.benefits-head p { color: var(--ink-soft); margin-top: 0.9rem; font-size: 1.04rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 620px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
.benefit-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 0.98rem;
}
.benefit-item .chk {
  color: var(--white);
  background: var(--green);
  width: 1.4rem; height: 1.4rem; flex: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
}
.benefits-cta { text-align: center; margin-top: 2.2rem; }

/* ---------------- MODULE CARDS (O QUE VOCÊ VAI ENCONTRAR) ---------------- */
.modules { background: var(--cream-2); }
.modules-head { text-align: center; max-width: 640px; margin: 0 auto 2.4rem; }
.modules-head h2 { font-size: clamp(1.5rem, 3.6vw, 2.1rem); }
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 700px) { .modules-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .modules-grid { grid-template-columns: 1fr 1fr; } }
.module-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.module-card .m-img { position: relative; }
.module-card .m-img img { width: 100%; height: 170px; object-fit: cover; }
.module-card .m-num {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.18);
}
.module-card .m-body { padding: 1.1rem 1.2rem 1.3rem; }
.module-card h3 { font-size: 1.08rem; line-height: 1.32; margin-bottom: 0.4rem; }
.module-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.modules-cta { text-align: center; margin-top: 2.4rem; }

/* ---------------- MOCKUP / MATERIAL SECTION ---------------- */
.mockup-section { background: var(--cream); }
.mockup-layout {
  display: grid;
  gap: 2.2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 960px) {
  .mockup-layout { grid-template-columns: 1fr 1fr; text-align: left; }
}
.mockup-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.mockup-copy h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); line-height: 1.24; }
.mockup-copy p { color: var(--ink-soft); font-size: 1.02rem; margin-top: 1.1rem; }
.mockup-copy .price-block { justify-content: center; }
@media (min-width: 960px) { .mockup-copy .price-block { justify-content: flex-start; } }
.mockup-copy .hero-cta { display: flex; justify-content: center; }
@media (min-width: 960px) { .mockup-copy .hero-cta { justify-content: flex-start; } }

/* ---------------- BONUS ---------------- */
.bonus {
  background: linear-gradient(135deg, #3B2A1C 0%, #2A1D13 100%);
  color: var(--cream);
}
.bonus .eyebrow { color: var(--gold-light); }
.bonus-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 960px) { .bonus-layout { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.bonus-media img { border-radius: var(--radius-lg); box-shadow: 0 1rem 2.4rem rgba(0,0,0,0.4); }
.bonus-copy h2 { color: var(--cream); font-size: clamp(1.5rem, 3.6vw, 2rem); }
.bonus-copy .bonus-sub {
  font-family: var(--font-serif); color: var(--gold-light); font-size: 1.3rem; margin-top: 0.4rem;
}
.bonus-copy p { color: #E4D5C2; margin-top: 1rem; font-size: 1rem; }
.bonus-price { margin-top: 1.4rem; display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.bonus-price .old { text-decoration: line-through; color: #B69E85; font-size: 1.1rem; }
.bonus-price .new { font-family: var(--font-serif); font-size: 2rem; color: var(--gold-light); font-weight: 700; }
.bonus-flag {
  display: inline-block; margin-top: 1rem;
  background: rgba(216, 184, 124, 0.16);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.45rem 0.9rem; border-radius: 2rem;
}

/* ---------------- VALUE STACK ---------------- */
.stack { background: var(--cream-2); }
.stack-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  padding: 2rem 1.6rem;
  text-align: center;
}
@media (min-width: 640px) { .stack-card { padding: 2.6rem 2.6rem; } }
.stack-card h2 { font-size: clamp(1.35rem, 3.2vw, 1.7rem); margin-bottom: 1.6rem; }
.stack-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--line);
  text-align: left;
  gap: 1rem;
}
.stack-row:last-of-type { border-bottom: none; }
.stack-row .label { font-weight: 700; font-size: 1rem; }
.stack-row .label small { display: block; font-weight: 400; color: var(--ink-soft); font-size: 0.84rem; margin-top: 0.15rem; }
.stack-row .val { color: var(--ink-faint); text-decoration: line-through; white-space: nowrap; }
.stack-total {
  margin-top: 1.3rem;
  padding-top: 1.3rem;
  border-top: 2px solid var(--line);
}
.stack-total .t-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); }
.stack-total .t-old { text-decoration: line-through; color: var(--ink-faint); font-size: 1.15rem; margin: 0.2rem 0; }
.stack-total .t-new { font-family: var(--font-serif); font-size: 2.6rem; color: var(--terracotta-dark); font-weight: 700; line-height: 1.1; }
.stack-total .t-terms { font-size: 0.86rem; color: var(--ink-soft); margin-top: 0.3rem; }
.stack-card .hero-cta { margin-top: 1.6rem; }

/* ---------------- FOR WHOM ---------------- */
.forwhom { background: var(--cream); }
.forwhom-layout { display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 960px) { .forwhom-layout { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.forwhom-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.forwhom-copy h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); margin-bottom: 1.3rem; }
.forwhom-list { display: flex; flex-direction: column; gap: 0.75rem; }
.forwhom-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; }
.forwhom-list .chk { color: var(--green); font-weight: 700; flex: none; margin-top: 0.15rem; }

/* ---------------- TESTIMONIALS ---------------- */
.testimonials { background: var(--cream-2); position: relative; }
.testimonials.has-bg { background: none; }
.testimonials .bg-photo {
  position: absolute; inset: 0; z-index: 0;
}
.testimonials .bg-photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonials .bg-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(251,244,232,0.94) 0%, rgba(251,244,232,0.88) 100%);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials-head { text-align: center; max-width: 620px; margin: 0 auto 2.2rem; }
.testimonials-head h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); }
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .t-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-soft);
}
.t-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.t-text { font-size: 0.96rem; color: var(--ink); font-style: italic; margin-bottom: 1rem; }
.t-person { display: flex; align-items: center; gap: 0.7rem; }
.t-avatar {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--cream-3);
  color: var(--terracotta-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1rem;
  flex: none;
}
.t-name { font-weight: 700; font-size: 0.92rem; }
.t-loc { font-size: 0.8rem; color: var(--ink-faint); }

/* ---------------- EMOTIONAL BLOCK ---------------- */
.emotional { background: var(--cream); }
.emotional .container {
  display: grid; gap: 2.2rem; align-items: center;
}
@media (min-width: 960px) { .emotional .container { grid-template-columns: 0.95fr 1.05fr; gap: 3rem; } }
.emotional-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.emotional-copy h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); line-height: 1.28; }
.emotional-copy p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.02rem; }
.emotional-highlight {
  margin-top: 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  color: var(--terracotta-dark);
  line-height: 1.4;
  border-left: 3px solid var(--terracotta);
  padding-left: 1.1rem;
}

/* ---------------- HOW IT WORKS ---------------- */
.how { background: var(--cream-2); }
.how-head { text-align: center; max-width: 600px; margin: 0 auto 2.4rem; }
.how-head h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); }
.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 720px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }
.how-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.how-num {
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 0.9rem;
}
.how-card h3 { font-size: 1.04rem; margin-bottom: 0.4rem; }
.how-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------------- GUARANTEE ---------------- */
.guarantee { background: var(--cream); }
.guarantee .container {
  display: grid; gap: 2rem; align-items: center; text-align: center;
}
@media (min-width: 860px) {
  .guarantee .container { grid-template-columns: 0.55fr 1fr; text-align: left; }
}
.guarantee-media { display: flex; justify-content: center; }
.guarantee-media img { max-width: 220px; }
.guarantee-copy h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); }
.guarantee-copy .days { color: var(--terracotta); }
.guarantee-copy p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.02rem; max-width: 56ch; }

/* ---------------- FAQ ---------------- */
.faq { background: var(--cream-2); }
.faq-head { text-align: center; max-width: 600px; margin: 0 auto 2rem; }
.faq-head h2 { font-size: clamp(1.5rem, 3.6vw, 2.05rem); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item {
  background: var(--paper);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
}
.faq-q .icon {
  flex: none;
  width: 1.6rem; height: 1.6rem;
  border-radius: 50%;
  background: var(--cream-3);
  color: var(--terracotta-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item[data-open="true"] .faq-q .icon { transform: rotate(45deg); background: var(--terracotta); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a-inner { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }
.faq-item[data-open="true"] .faq-a { max-height: 240px; }

/* ---------------- FINAL CTA ---------------- */
.final-cta {
  background: linear-gradient(180deg, #3B2A1C 0%, #241a10 100%);
  color: var(--cream);
  overflow: hidden;
}
.final-cta .container { position: relative; z-index: 1; text-align: center; }
.final-cta-media {
  max-width: 340px; margin: 0 auto 1.6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1rem 2.6rem rgba(0,0,0,0.45);
}
.final-cta h2 { color: var(--cream); font-size: clamp(1.5rem, 4vw, 2.2rem); line-height: 1.22; }
.final-cta .sub { color: var(--gold-light); font-family: var(--font-serif); font-size: clamp(1.05rem, 2.6vw, 1.35rem); margin-top: 0.5rem; }
.final-cta p.copy { color: #E4D5C2; max-width: 52ch; margin: 1.2rem auto 0; font-size: 1.02rem; }
.final-cta .price-block { justify-content: center; margin-top: 1.6rem; }
.final-cta .price-old { color: #B69E85; }
.final-cta .price-new { color: var(--gold-light); }
.final-cta .hero-cta { display: flex; justify-content: center; margin-top: 1.4rem; }
.final-cta .btn-sub span { color: #C9B79E; }
.final-cta .btn-sub .chk { color: var(--gold-light); }

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: #241a10;
  color: #C9B79E;
  padding: 2.6rem 0 6.5rem;
  font-size: 0.86rem;
}
@media (min-width: 700px) { .site-footer { padding-bottom: 2.6rem; } }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.footer-top a { text-decoration: none; color: #C9B79E; }
.footer-top a:hover { color: var(--gold-light); }
.footer-disclaimer {
  max-width: 640px; margin: 0 auto 1.2rem;
  text-align: center;
  color: #A8967D;
  font-size: 0.8rem;
  line-height: 1.6;
}
.footer-brand { text-align: center; color: #8C7B67; font-size: 0.8rem; }

/* ---------------- STICKY MOBILE CTA ---------------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -0.4rem 1.2rem rgba(60,40,20,0.14);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transform: translateY(120%);
  transition: transform 0.25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .s-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--terracotta-dark);
  font-size: 1.05rem;
  flex: none;
}
.sticky-cta .s-price small { display: block; font-family: var(--font-sans); font-weight: 400; color: var(--ink-faint); font-size: 0.68rem; }
.sticky-cta .btn-primary { width: auto; padding: 0.75rem 1.3rem; font-size: 0.92rem; box-shadow: none; }
@media (min-width: 700px) { .sticky-cta { display: none !important; } }

/* ---------------- PURCHASE NOTIFICATION (dormant unless real data supplied) ---------------- */
.purchase-toast {
  position: fixed;
  left: 0.9rem; bottom: 0.9rem;
  z-index: 55;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 300px;
  font-size: 0.84rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.purchase-toast.show { transform: translateY(0); opacity: 1; }
.purchase-toast .p-icon {
  width: 2.1rem; height: 2.1rem; border-radius: 50%; flex: none;
  background: var(--cream-3); color: var(--terracotta-dark);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.purchase-toast .p-name { font-weight: 700; }
.purchase-toast .p-meta { color: var(--ink-faint); font-size: 0.78rem; }
@media (max-width: 699px) { .purchase-toast { bottom: 5rem; } }

/* ---------------- ACCESSIBILITY ---------------- */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: 0.8rem 1.2rem; border-radius: 0 0 0.6rem 0; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------------- MISC ---------------- */
.section-alt-cream { background: var(--cream-2); }
::selection { background: var(--terracotta-light); color: var(--ink); }
