/* Spite House Studios — Scam Replacement Program landing page.
   Self-hosted webfont subsets (latin only — copy is plain English). */
/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/archivo-regular.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/baloo2-bold.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/baloo2-bold.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Cherry Bomb One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cherry-bomb-one-regular.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --cream: #FBF6E9;
  --brown: #4E2215;
  --orange: #F9582A;
  --orange-2: #E8791A;
  --dark: #2E2A27;
  --accent: #FF6A3D;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-hand: 'Cherry Bomb One', system-ui, sans-serif;
  --mobile: 820px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; }
body { background: var(--cream); }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--brown); }
img { max-width: 100%; display: block; }
image-slot { display: block; width: 100%; height: 100%; }
h1, h2, h3, p { margin: 0; }

/* ---------- Page shell (full-bleed — each section paints its own
   background edge-to-edge; content columns cap themselves below) ---------- */
.page {
  width: 100%;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  overflow: hidden;
  position: relative;
}

/* Reusable content cap: sections keep their own background + padding,
   this just keeps the content column from stretching past 1440px. */
.content-cap { max-width: 1440px; margin-left: auto; margin-right: auto; }

/* ---------- Shared building blocks ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--cream); border-radius: 999px;
  padding: 8px 16px; font-family: var(--font-display); font-weight: 800;
  font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 22px; white-space: nowrap;
}
@media (max-width: 820px) { .badge { padding: 7px 14px; font-size: 11px; margin-bottom: 14px; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: 999px; font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; text-align: center;
}
.btn--light { background: #fff; color: var(--brown); font-size: 15px; padding: 14px 30px; }
.btn--solid { background: var(--orange); color: #fff; font-size: 15px; padding: 14px 30px; }
.btn--block { display: block; width: 100%; }
.btn--lg { font-size: 24px; padding: 22px; }
.btn--sm { font-size: 14px; padding: 14px 22px; }
@media (max-width: 820px) {
  .btn--light { display: flex; width: 100%; font-size: 17px; padding: 18px; }
  .btn--lg { font-size: 20px; padding: 19px; }
}

.link-underline-wrap { display: inline-block; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.link-underline-wrap span { border-bottom: 2px solid rgba(255, 255, 255, .5); padding-bottom: 3px; }
@media (max-width: 820px) { .link-underline-wrap { display: block; text-align: center; font-size: 15px; } }

.eyebrow {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
@media (max-width: 820px) { .eyebrow { font-size: 11.5px; margin-bottom: 10px; } }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
@media (max-width: 820px) { .section-head { margin: 0 auto 22px; } }
.section-head__title { font-family: var(--font-hand); font-weight: 400; font-size: 54px; line-height: .96; margin: 0 0 14px; }
@media (max-width: 820px) { .section-head__title { font-size: 34px; line-height: 1.05; margin: 0 0 12px; } }
.section-head__text { font-size: 17.5px; line-height: 1.55; color: rgba(78, 34, 21, .7); text-wrap: pretty; }
@media (max-width: 820px) { .section-head__text { font-size: 15.5px; } }

.wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; display: block; }
.wave--desktop { display: block; }
.wave--mobile { display: none; }
@media (max-width: 820px) {
  .wave--desktop { display: none; }
  .wave--mobile { display: block; }
}

.stars { color: var(--orange); letter-spacing: 1px; }
.divider { opacity: .6; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--orange); padding: 66px 56px 96px; overflow: hidden; }
@media (max-width: 820px) { .hero { padding: 26px 20px 74px; } }
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(70% 90% at 12% 8%, rgba(255, 255, 255, .13) 0%, rgba(255, 255, 255, 0) 60%),
    radial-gradient(60% 70% at 88% 90%, rgba(78, 34, 21, .18) 0%, rgba(78, 34, 21, 0) 65%);
}
@media (max-width: 820px) {
  .hero__bg {
    background: radial-gradient(80% 60% at 10% 4%, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 62%),
      radial-gradient(70% 60% at 95% 92%, rgba(78, 34, 21, .2) 0%, rgba(78, 34, 21, 0) 65%);
  }
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }
@media (max-width: 820px) { .hero__inner { grid-template-columns: 1fr; gap: 0; } }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: 76px; line-height: .9; letter-spacing: -.01em; color: #fff; margin: 0 0 22px; text-wrap: balance; }
@media (max-width: 820px) { .hero__title { font-size: 46px; margin: 0 0 14px; } }
.hero__subtitle { font-size: 19px; line-height: 1.5; color: rgba(255, 255, 255, .92); max-width: 520px; margin: 0 0 30px; text-wrap: pretty; }
@media (max-width: 820px) { .hero__subtitle { font-size: 16px; margin: 0 0 22px; } }
.hero__ctas { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
@media (max-width: 820px) { .hero__ctas { flex-direction: column; align-items: stretch; gap: 14px; } }
.hero__stats { display: flex; align-items: center; gap: 22px; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: rgba(255, 255, 255, .95); white-space: nowrap; }
@media (max-width: 820px) { .hero__stats { gap: 12px; font-size: 12.5px; justify-content: center; } }
.stars-row { display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 820px) { .stars-row { gap: 6px; } }
.stars-partial { display: inline-flex; align-items: center; }
.stars-partial__full { letter-spacing: 1px; }
.stars-partial__half { position: relative; display: inline-block; width: 1em; letter-spacing: 0; }
.stars-partial__bg { color: rgba(255, 255, 255, .35); }
.stars-partial__fg { position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; color: #fff; }

@media (max-width: 820px) { .hero__media { order: -1; } }
.video-frame { position: relative; width: 400px; aspect-ratio: 9 / 16; border-radius: 22px; border: 3px solid var(--brown); overflow: hidden; background: var(--dark); box-shadow: 0 26px 0 rgba(78, 34, 21, .28); margin: 0 auto; }
@media (max-width: 820px) { .video-frame { width: 100%; border-radius: 20px; box-shadow: 0 18px 0 rgba(78, 34, 21, .26); margin-bottom: 26px; } }
.video-frame__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.play-icon { width: 80px; height: 80px; border-radius: 999px; background: #fff; border: 3px solid var(--brown); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0, 0, 0, .35); }
@media (max-width: 820px) { .play-icon { width: 72px; height: 72px; } }
.play-icon__triangle { width: 0; height: 0; border-left: 22px solid var(--orange); border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 6px; }
@media (max-width: 820px) { .play-icon__triangle { border-left-width: 20px; border-top-width: 13px; border-bottom-width: 13px; margin-left: 5px; } }

/* ---------- Tells ---------- */
.tells { position: relative; background: var(--dark); padding: 54px 56px 104px; color: var(--cream); }
@media (max-width: 820px) { .tells { padding: 26px 20px 68px; } }
.tells__title { font-family: var(--font-hand); font-weight: 400; font-size: 46px; line-height: .98; margin: 0 0 34px; max-width: 640px; }
@media (max-width: 820px) { .tells__title { font-size: 32px; line-height: 1.05; margin: 0 0 24px; } }
.tells__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 820px) { .tells__grid { grid-template-columns: 1fr 1fr; gap: 10px; } }
.tell { background: rgba(251, 246, 233, .06); border: 1.5px solid rgba(251, 246, 233, .16); border-radius: 18px; padding: 24px; }
@media (max-width: 820px) { .tell { border-radius: 16px; padding: 16px 14px; } }
.tell__badge { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.tell__num { flex: none; width: 22px; height: 22px; border-radius: 7px; background: var(--accent); color: var(--dark); font-family: var(--font-display); font-weight: 800; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.tell__label { font-family: var(--font-display); font-weight: 800; font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.tell__title { font-family: var(--font-display); font-weight: 800; font-size: 24px; line-height: 1.1; }
@media (max-width: 820px) { .tell__title { font-size: 17px; } }

/* ---------- Reparations offer tiers ---------- */
.offer { background: var(--cream); padding: 34px 56px 62px; }
@media (max-width: 820px) { .offer { padding: 22px 20px 34px; } }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .tiers { grid-template-columns: 1fr; gap: 14px; } }
.tier { position: relative; background: #fff; border: 2px solid rgba(78, 34, 21, .16); border-radius: 22px; padding: 30px; }
@media (max-width: 820px) { .tier { display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: center; border-radius: 18px; padding: 20px; } }
.tier--featured { background: var(--orange); border-color: var(--brown); color: #fff; }
.tier--dark { background: var(--dark); border-color: var(--brown); color: var(--cream); }
.tier__pill { position: absolute; top: -14px; left: 30px; background: var(--dark); color: var(--cream); font-family: var(--font-display); font-weight: 800; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; padding: 7px 13px; border-radius: 8px; white-space: nowrap; }
@media (max-width: 820px) { .tier__pill { top: -12px; left: 20px; font-size: 10.5px; padding: 6px 12px; } }
.tier__figure { font-family: var(--font-display); font-weight: 800; font-size: 64px; line-height: .85; color: var(--orange-2); }
@media (max-width: 820px) { .tier__figure { font-size: 40px; } }
.tier--featured .tier__figure { color: #fff; }
.tier--dark .tier__figure { color: var(--accent); }
.tier__title { font-family: var(--font-display); font-weight: 800; font-size: 28px; margin: 16px 0 8px; }
@media (max-width: 820px) { .tier__title { font-size: 21px; margin: 0 0 5px; line-height: 1.05; } }
.tier__text { font-size: 15px; line-height: 1.55; color: rgba(78, 34, 21, .7); }
@media (max-width: 820px) { .tier__text { font-size: 14px; line-height: 1.5; } }
.tier--featured .tier__text { color: rgba(255, 255, 255, .9); }
.tier--dark .tier__text { color: rgba(251, 246, 233, .72); }

/* ---------- Bundle builder ---------- */
.bundle { background: #fff; border-top: 2px solid rgba(78, 34, 21, .1); border-bottom: 2px solid rgba(78, 34, 21, .1); padding: 56px 56px 64px; }
@media (max-width: 820px) { .bundle { padding: 30px 20px 34px; } }
.bundle .section-head { max-width: 720px; margin: 0 auto 12px; }
@media (max-width: 820px) { .bundle .section-head { margin: 0 auto; } }
.tier-pill-row { display: flex; justify-content: center; margin: 22px 0 34px; }
@media (max-width: 820px) { .tier-pill-row { margin: 0 0 22px; } }
.tier-pill { display: inline-flex; align-items: center; gap: 10px; background: var(--cream); border: 1.5px solid rgba(78, 34, 21, .16); border-radius: 999px; padding: 10px 20px; font-family: var(--font-display); font-weight: 800; font-size: 14.5px; color: var(--brown); white-space: nowrap; }

.bundle__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; max-width: 1240px; margin: 0 auto; }
@media (max-width: 820px) { .bundle__grid { grid-template-columns: 1fr 1fr; gap: 12px; max-width: none; } }

.bundle-card { cursor: pointer; background: #fff; border-radius: 20px; padding: 18px 16px 22px; border: 2.5px solid rgba(78, 34, 21, .12); opacity: .82; transition: border-color .15s, box-shadow .15s, opacity .15s; }
.bundle-card.is-selected { border-color: var(--orange); box-shadow: 0 12px 26px rgba(249, 88, 42, .18); opacity: 1; }
@media (max-width: 820px) {
  .bundle-card { padding: 14px 12px 18px; }
  .bundle-card.is-selected { box-shadow: 0 10px 20px rgba(249, 88, 42, .18); }
}
.bundle-card__image { height: 190px; display: flex; align-items: flex-end; justify-content: center; padding: 8px; }
@media (max-width: 820px) { .bundle-card__image { height: 128px; padding: 6px; } }
.bundle-card__image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bundle-card__check { display: flex; justify-content: center; margin: 14px 0 12px; }
@media (max-width: 820px) { .bundle-card__check { margin: 10px 0 8px; } }
.check-box { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 15px; line-height: 1; background: #fff; border: 2px solid rgba(78, 34, 21, .25); color: transparent; }
.check-box.is-selected { background: var(--orange); border-color: var(--brown); color: #fff; }
.bundle-card__name { font-family: var(--font-display); font-weight: 700; font-size: 17.5px; line-height: 1.15; text-align: center; }
@media (max-width: 820px) { .bundle-card__name { font-size: 15px; } }
.bundle-card__sub { display: block; font-size: 14px; color: rgba(78, 34, 21, .6); }
@media (max-width: 820px) { .bundle-card__sub { font-size: 12.5px; } }
.bundle-card__meta { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 8px 0 10px; font-size: 12.5px; color: rgba(78, 34, 21, .6); }
@media (max-width: 820px) { .bundle-card__meta { gap: 5px; margin: 6px 0 8px; font-size: 11px; } }
.bundle-card__price { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-align: center; }
@media (max-width: 820px) { .bundle-card__price { font-size: 18px; } }

.bundle-card--all { display: none; }
@media (max-width: 820px) {
  .bundle-card--all { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--cream); border: 2px dashed rgba(78, 34, 21, .2); border-radius: 20px; padding: 20px 12px; cursor: default; opacity: 1; }
}
.bundle-card--all__title { font-family: var(--font-display); font-weight: 800; font-size: 19px; line-height: 1.1; margin-bottom: 6px; }
.bundle-card--all__text { font-size: 13px; line-height: 1.4; color: rgba(78, 34, 21, .65); margin: 0 0 14px; }
.select-all-btn { cursor: pointer; background: var(--orange); color: #fff; border-radius: 999px; font-family: var(--font-display); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; padding: 12px 20px; white-space: nowrap; line-height: 1; }

.bundle__summary { max-width: 1050px; margin: 44px auto 0; text-align: center; }
@media (max-width: 820px) { .bundle__summary { margin: 26px auto 0; } }
.bundle__free-line { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
@media (max-width: 820px) { .bundle__free-line { font-size: 13px; margin-bottom: 8px; } }
.bundle__totals { display: flex; align-items: baseline; justify-content: center; gap: 14px; margin-bottom: 6px; }
@media (max-width: 820px) { .bundle__totals { gap: 10px; margin-bottom: 5px; } }
.bundle__total { font-family: var(--font-display); font-weight: 800; font-size: 30px; }
@media (max-width: 820px) { .bundle__total { font-size: 26px; } }
.bundle__subtotal { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: rgba(78, 34, 21, .45); text-decoration: line-through; }
@media (max-width: 820px) { .bundle__subtotal { font-size: 17px; } }
.bundle__savings { font-size: 14.5px; color: rgba(78, 34, 21, .6); margin-bottom: 22px; }
@media (max-width: 820px) { .bundle__savings { font-size: 13.5px; margin-bottom: 18px; } }
.ship-notes { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 26px; margin-top: 18px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: rgba(78, 34, 21, .65); text-transform: uppercase; letter-spacing: .06em; }
@media (max-width: 820px) { .ship-notes { flex-direction: column; gap: 6px; margin-top: 16px; font-size: 12.5px; } }

/* ---------- Contact + FAQ ---------- */
.contact-section { background: var(--cream); padding: 60px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 820px) { .contact-section { grid-template-columns: 1fr; gap: 0; padding: 30px 20px 0; max-width: none; } }
.contact-card { position: relative; background: var(--orange); border: 2px solid var(--brown); border-radius: 22px; padding: 34px; color: #fff; overflow: hidden; }
@media (max-width: 820px) { .contact-card { border-radius: 20px; padding: 24px; margin-bottom: 30px; } }
.contact-card__title { font-family: var(--font-hand); font-weight: 400; font-size: 34px; line-height: 1.05; margin: 0 0 12px; }
@media (max-width: 820px) { .contact-card__title { font-size: 30px; } }
.contact-card__text { font-size: 16px; line-height: 1.55; color: rgba(255, 255, 255, .92); margin: 0 0 18px; }
@media (max-width: 820px) { .contact-card__text { font-size: 15px; margin: 0 0 16px; } }
.contact-card__row { display: grid; grid-template-columns: 1fr 200px; gap: 24px; align-items: center; margin-bottom: 22px; }
@media (max-width: 820px) { .contact-card__row { grid-template-columns: 1fr 118px; gap: 14px; align-items: end; margin-bottom: 18px; } }
.steps { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 820px) { .steps { gap: 9px; } }
.step { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
@media (max-width: 820px) { .step { gap: 10px; font-size: 14px; } }
.step__num { flex: none; width: 24px; height: 24px; border-radius: 999px; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; }
@media (max-width: 820px) { .step__num { width: 22px; height: 22px; font-size: 12px; } }
.contact-card__figure { position: relative; }
.contact-card__figure img { width: 100%; display: block; filter: drop-shadow(0 18px 26px rgba(78, 34, 21, .4)); }
@media (max-width: 820px) { .contact-card__figure img { filter: drop-shadow(0 14px 20px rgba(78, 34, 21, .4)); } }
.contact-card__stamp { position: absolute; bottom: 6px; right: -6px; transform: rotate(-9deg); background: var(--dark); color: var(--cream); border: 2px solid var(--cream); border-radius: 10px; padding: 8px 13px; font-family: var(--font-display); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 820px) { .contact-card__stamp { display: none; } }

.faq__title { font-family: var(--font-hand); font-weight: 400; font-size: 28px; line-height: 1.05; margin: 0 0 16px; }
.faq__item { border-bottom: 1.5px solid rgba(78, 34, 21, .14); padding: 18px 0; }
@media (max-width: 820px) { .faq__item { padding: 16px 0; } }
.faq__item--last { border-bottom: none; }
.faq__q { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin-bottom: 6px; }
@media (max-width: 820px) { .faq__q { font-size: 18px; line-height: 1.2; margin-bottom: 5px; } }
.faq__a { font-size: 15px; line-height: 1.55; color: rgba(78, 34, 21, .7); }
@media (max-width: 820px) { .faq__a { font-size: 14.5px; } }

/* ---------- Footer ---------- */
.footer { background: var(--brown); padding: 44px 0; }
.footer__inner { padding: 0 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
@media (max-width: 820px) {
  .footer { padding: 28px 0 96px; }
  .footer__inner { flex-direction: column; padding: 0 20px; gap: 16px; text-align: center; }
}
.footer__logo { height: 56px; }
@media (max-width: 820px) { .footer__logo { height: 44px; } }
.footer__text { font-size: 14px; line-height: 1.5; color: rgba(251, 246, 233, .62); margin: 0; max-width: 520px; }
@media (max-width: 820px) { .footer__text { font-size: 12.5px; } }
@media (max-width: 820px) { .footer__cta { display: none; } }

/* ---------- Sticky mobile cart bar ---------- */
.sticky-cart { display: none; }
@media (max-width: 820px) {
  .sticky-cart {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--dark);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 18px rgba(0, 0, 0, .25);
  }
  /* Reserve space at the bottom of the page so fixed bar doesn't cover content */
  .page { padding-bottom: 84px; }
}
.sticky-cart__info { min-width: 0; }
.sticky-cart__total { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #fff; line-height: 1.1; }
.sticky-cart__subtotal { font-weight: 700; font-size: 13px; color: rgba(251, 246, 233, .5); text-decoration: line-through; }
.sticky-cart__free { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; color: var(--accent); text-transform: uppercase; letter-spacing: .07em; }
