:root {
  --blue: #0d87ee;
  --green: #59c00b;
  --text: #1c2b22;
  --text-secondary: #2e2e2e;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --star: #ffb400;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-secondary);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: "Roboto Condensed", sans-serif;
  color: var(--text);
  margin: 0;
}

img { max-width: 100%; display: block; }

.stars {
  color: var(--star);
  letter-spacing: 1px;
  font-size: 15px;
}
.stars--sm { font-size: 13px; }

/* Topbar */
.topbar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
}

/* Header */
.header {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.header {
  position: relative;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.header__logo { height: 32px; }
.header__menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 640px) {
  .header__inner { justify-content: center; position: relative; }
  .header__logo { height: 44px; }
  .header__menu-btn {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 14px 20px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* Product section */
.product__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .product__inner {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

/* Gallery */
.gallery__main {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; }

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 10px;
}
.thumb {
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #fafafa;
  cursor: pointer;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb.is-active { border-color: var(--blue); }

/* Buy box */
.buybox__tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.buybox__gift-line {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff3cd;
  border: 1px solid #ffe69c;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #7a5b00;
  margin-bottom: 14px;
}
.countdown--dark {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: #ffe69c;
  margin: 16px 0;
}

.buybox__gift-price-note {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  margin-top: 4px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.buybox__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.buybox__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}
.buybox__rating strong { color: var(--text); }
.buybox__rating-count { color: var(--muted); }

.buybox__price { margin-bottom: 14px; }
.buybox__price-row { display: flex; align-items: center; gap: 10px; }
.price--promo { font-size: 32px; font-weight: 800; color: var(--text); }
.price--badge {
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.price--normal {
  display: block;
  text-decoration: line-through;
  color: var(--muted);
  font-size: 15px;
  margin-top: 2px;
}
.buybox__installments {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pixbox {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0f9ff;
  border: 1px solid #bfe3ff;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
}
.pixbox__icon { width: 32px; height: auto; }
.pixbox__value { font-weight: 700; color: var(--text); font-size: 15px; }
.pixbox__value span { font-weight: 500; color: var(--text-secondary); font-size: 13px; display: block; }
.pixbox__note { font-size: 12px; color: var(--muted); margin-top: 2px; }

.buybox__today {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  background: #fff3cd;
  border: 1px solid #ffe69c;
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 8px;
}

.reassurance {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  margin: 10px 0 0;
}
.reassurance--dark { color: #cbd5e1; }

.cta {
  display: block;
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .3px;
  cursor: pointer;
  transition: filter .15s ease, transform .1s ease;
}
.cta:hover { filter: brightness(1.08); }
.cta:active { transform: scale(.98); }
.cta--secondary { max-width: 420px; margin: 28px auto 0; }

.trust {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__item strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 2px; }
.trust__item span { font-size: 13px; color: var(--muted); }

.paymethods { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.paymethods__icons { display: flex; gap: 8px; flex-wrap: wrap; }
.paymethods__icons img { height: 22px; width: auto; }

/* Description */
.description { background: #fafafa; padding: 48px 0; }
.description__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.description h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.description__subtitle {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px;
}
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.features li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
}
.features li::before { content: "✓ "; color: var(--green); font-weight: 700; }

.infographics { display: grid; gap: 20px; margin-bottom: 28px; }
.infographics img { border-radius: 12px; }

/* Reviews */
.reviews { padding: 48px 0; }
.reviews__inner { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.reviews h2 { font-size: 26px; margin-bottom: 24px; }

.reviews__summary {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.reviews__score { text-align: center; }
.reviews__score-number { display: block; font-size: 40px; font-weight: 800; color: var(--text); }
.reviews__score-count { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }

.reviews__histogram { flex: 1; min-width: 220px; display: grid; gap: 6px; }
.hist-row { display: grid; grid-template-columns: 24px 1fr 32px; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.hist-bar { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.hist-bar div { height: 100%; background: var(--star); }

.reviews__list { display: grid; gap: 18px; }
.review {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review__head strong { font-size: 14px; color: var(--text); flex: 1; }
.review p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--text-secondary); }
.review__photo {
  margin-top: 10px;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .15s ease;
}
.review__photo:active { transform: scale(.97); }

@media (max-width: 480px) {
  .review__photo { width: 45vw; height: 45vw; max-width: 190px; max-height: 190px; }
}

/* Checkout modal (Pix) */
.checkout-overlay {
  position: fixed; inset: 0; z-index: 1000; background: rgba(20,15,12,.55);
  display: flex; align-items: flex-end; justify-content: center;
}
.checkout-overlay[hidden] { display: none; }
.checkout-modal {
  position: relative; width: 100%; max-width: 440px; max-height: 92vh; overflow-y: auto;
  background: #fff; border-radius: 20px 20px 0 0; padding: 26px 20px 28px;
  box-shadow: 0 -8px 30px rgba(0,0,0,.22);
}
.checkout-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: #f3f4f6; color: var(--muted); font-size: 15px; cursor: pointer;
}

/* Indicador de etapas */
.ck-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}
.ck-step { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.ck-step__dot {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: #f0f0f0; color: var(--muted);
}
.ck-step__label { font-size: 10.5px; color: var(--muted); font-weight: 600; }
.ck-step.is-active .ck-step__dot { background: var(--blue); color: #fff; }
.ck-step.is-active .ck-step__label { color: var(--text); }
.ck-step.is-done .ck-step__dot { background: var(--green); color: #fff; }
.ck-step__line { flex: 1; height: 2px; background: #e5e7eb; margin-top: 11px; max-width: 32px; }

/* Badges de confiança */
.ck-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.ck-trust-badges div {
  text-align: center;
  background: #f7f9f8;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 6px;
  font-size: 11px;
  color: var(--muted);
}
.ck-trust-badges span { display: block; font-size: 16px; margin-bottom: 3px; }
.ck-trust-badges strong { display: block; font-size: 12px; color: var(--text); margin-top: 1px; }

/* Loading spinner */
.checkout-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 14px;
  padding: 28px 0;
  color: var(--text);
}
.ck-spinner {
  width: 28px; height: 28px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: ck-spin .8s linear infinite;
}
@keyframes ck-spin { to { transform: rotate(360deg); } }

/* Telas de resultado (sucesso/erro) */
.ck-result { text-align: center; padding: 8px 0; }
.ck-result__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 28px;
  margin-bottom: 14px;
}
.ck-result__icon--ok { background: #f0fdf4; }
.ck-result__icon--err { background: #fef2f2; }
.ck-result h3 { margin-bottom: 10px; }
.ck-result p { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 18px; }
.checkout-modal h3 { margin: 0 0 6px; font-size: 18px; color: var(--text); }
.checkout-summary { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.checkout-modal label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin: 12px 0 4px; }
.checkout-modal input {
  width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid var(--border);
  font-family: inherit; font-size: 14px; background: #f7f9f8; color: var(--text);
}
.checkout-modal input:focus { outline: 2px solid var(--blue); outline-offset: 1px; }
.checkout-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkout-btn { width: 100%; margin-top: 20px; }
.checkout-back {
  display: block; width: 100%; text-align: center; background: none; border: none; margin-top: 10px;
  color: var(--muted); font-size: 13px; cursor: pointer; font-family: inherit;
}
.checkout-error { color: #dc2626; font-size: 13px; margin-top: 10px; }
.checkout-error[hidden] { display: none; }
.checkout-loading { text-align: center; font-size: 15px; padding: 20px 0; color: var(--text); }
.checkout-qr {
  display: block; width: 200px; max-width: 70%; margin: 6px auto 14px; padding: 10px;
  border-radius: 12px; border: 1px solid var(--border); background: #fff;
}
.checkout-qr[hidden] { display: none; }
.checkout-qr svg { display: block; width: 100%; height: auto; }
.checkout-hint { font-size: 13px; color: var(--text); }
.checkout-pixcode {
  display: flex; align-items: center; gap: 8px; background: #f7f9f8; border: 1px dashed var(--border);
  border-radius: 10px; padding: 10px 12px; margin: 8px 0 14px;
}
.checkout-pixcode span { flex: 1; font-size: 11.5px; word-break: break-all; color: var(--muted); }
.checkout-pixcode button {
  flex: 0 0 auto; border: none; background: var(--blue); color: #fff; font-size: 12.5px; font-weight: 700;
  border-radius: 8px; padding: 8px 12px; cursor: pointer; font-family: inherit;
}
.checkout-status { text-align: center; font-size: 13px; color: var(--muted); }

/* Tela do Pix — redesenhada, foco mobile */
.pix-screen { display: flex; flex-direction: column; align-items: center; text-align: center; }

.pix-screen__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pix-screen__price {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}
.pix-screen__label {
  font-size: 13px;
  color: var(--muted);
  margin: 2px 0 18px;
}

.pix-screen__gift {
  width: 100%;
  background: linear-gradient(135deg, #fff3cd, #ffe8b3);
  border: 1px solid #ffe69c;
  color: #7a5b00;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 18px;
}

.pix-screen__qr-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  margin-bottom: 14px;
}
.pix-screen__qr-card .checkout-qr {
  width: 220px;
  max-width: 100%;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.pix-screen__timer {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-secondary);
  background: #f7f9f8;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.pix-screen__timer strong { font-variant-numeric: tabular-nums; color: var(--text); }
.pix-screen__timer-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #f59e0b;
  animation: pix-pulse 1.4s ease-in-out infinite;
}

.pix-screen__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}
.pix-screen__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pix-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pix-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}

@media (max-width: 480px) {
  .pix-screen__price { font-size: 30px; }
  .pix-screen__qr-card .checkout-qr { width: 190px; }
}

@media (min-width: 640px) {
  .checkout-overlay { align-items: center; }
  .checkout-modal { border-radius: 20px; }
}

/* Tracking page */
.tracking-hero { padding: 48px 0 32px; text-align: center; }
.tracking-hero__inner { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.tracking-hero h1 { font-size: 30px; margin-bottom: 8px; }
.tracking-hero__sub { color: var(--muted); font-size: 15px; margin: 0 0 28px; }

.tracking-form__label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; text-align: left; }
.tracking-form__row { display: flex; gap: 10px; flex-wrap: wrap; }
.tracking-form__row input {
  flex: 1;
  min-width: 200px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}
.tracking-form__btn { width: auto; flex-shrink: 0; padding: 13px 24px; border-radius: 8px; }
.tracking-form__msg {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #f0f9ff;
  border: 1px solid #bfe3ff;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-secondary);
  text-align: left;
}

.tracking-steps { padding: 40px 0; background: #fafafa; }
.tracking-steps__inner { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.tracking-steps h2 { font-size: 24px; text-align: center; margin-bottom: 28px; }

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.step__icon { font-size: 22px; }
.step strong { font-size: 13px; color: var(--text); }
.step span { font-size: 12px; color: var(--muted); }

.differentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 640px) {
  .differentials { grid-template-columns: 1fr; }
}
.differential {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.differential strong { display: block; font-size: 14px; color: var(--text); margin-bottom: 4px; }
.differential span { font-size: 12.5px; color: var(--muted); }

/* Video reviews */
.video-reviews { padding: 48px 0; }
.video-reviews__inner { max-width: 900px; margin: 0 auto; padding: 0 20px; text-align: center; }
.video-reviews h2 { font-size: 26px; margin-bottom: 6px; }
.video-reviews__sub { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .video-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  color: var(--text);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* FAQ */
.faq { padding: 48px 0; background: #fafafa; }
.faq__inner { max-width: 700px; margin: 0 auto; padding: 0 20px; }
.faq h2 { font-size: 26px; margin-bottom: 20px; text-align: center; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 44px 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--blue);
  transition: transform .2s ease;
}
.faq-item.open .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open .faq-answer { max-height: 240px; }
.faq-answer p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Sticky CTA (mobile) */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0,0,0,.08);
  padding: 10px 14px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.sticky-cta[hidden] { display: none; }
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.sticky-cta__price { font-size: 17px; font-weight: 800; color: var(--text); }
.sticky-cta__old { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.sticky-cta__btn { width: auto; flex: 1; padding: 13px 16px; font-size: 14px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

/* Final CTA */
.finalcta { background: var(--text); padding: 48px 20px; text-align: center; }
.finalcta__inner { max-width: 480px; margin: 0 auto; }
.finalcta h2 { color: #fff; font-size: 24px; margin-bottom: 16px; }
.finalcta__price { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 20px; }
.finalcta__price .price--normal { color: #9ca3af; }
.finalcta__price .price--promo { color: #fff; }

/* Footer */
.footer { padding: 32px 20px; text-align: center; border-top: 1px solid var(--border); }
.footer__logo { height: 26px; margin: 0 auto 12px; }
.footer p { font-size: 13px; color: var(--muted); margin: 6px 0; }
.footer .paymethods__icons { justify-content: center; margin: 12px 0; }
.footer__copy { font-size: 12px; color: #9ca3af; }
