:root {
  --red: #d62f48;
  --red-dark: #b51d35;
  --ink: #171717;
  --muted: #6c6c6c;
  --cream: #f7f4ee;
  --yellow: #fff000;
  --blue: #063c78;
  --white: #ffffff;
  --border: #dedbd5;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(11, 20, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.age-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.promo-strip {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 16px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.promo-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.65;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.site-footer img,
.age-gate img {
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  background: #f0ede8;
  border: 1px solid #ded9d0;
  border-radius: 999px;
}

.language-switcher__button {
  min-width: 38px;
  min-height: 32px;
  padding: 0 9px;
  color: #6d6a65;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: 800 10px/1 "Inter", Arial, sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.language-switcher__button.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 3px 10px rgba(23, 23, 23, 0.18);
}

.language-switcher__button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.campaign-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(214, 47, 72, 0.24);
  font: 800 15px/1 "Inter", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 28px rgba(214, 47, 72, 0.3);
  transform: translateY(-2px);
}

.button:focus-visible,
.hero__visual:focus-visible,
.age-gate__exit:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button--small {
  min-height: 42px;
  padding: 0 20px;
  font-size: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #04366e;
}

.hero__visual {
  display: block;
  max-height: calc(100svh - 112px);
  overflow: hidden;
  background: #04366e;
}

.hero__visual picture {
  display: block;
}

.hero__visual img {
  width: 100%;
  height: auto;
  max-height: calc(100svh - 112px);
  object-fit: cover;
  object-position: center;
}

.hero__action {
  position: absolute;
  right: clamp(20px, 4.5vw, 76px);
  bottom: clamp(20px, 2.5vw, 40px);
  display: grid;
  justify-items: center;
  min-width: 290px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 8px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(4, 18, 40, 0.2);
  font-size: 12px;
}

.countdown__label {
  color: #5f5f5f;
}

.countdown__value {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.button--hero {
  min-width: 290px;
  min-height: 60px;
  padding: 0 28px;
  color: #ec260a;
  background: #ffd900;
  border: 4px solid var(--white);
  box-shadow: 0 12px 32px rgba(4, 18, 40, 0.32);
  font-size: 15px;
}

.button--hero:hover,
.button--yellow:hover {
  color: var(--ink);
  background: #fff55c;
}

.hero__terms {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9d4cc;
  border-bottom: 1px solid #d9d4cc;
}

.proof-item {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px clamp(18px, 3vw, 42px);
  background: var(--cream);
  font-size: 13px;
  line-height: 1.45;
}

.proof-item svg {
  width: 28px;
  min-width: 28px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof-item strong {
  display: block;
  color: var(--ink);
}

.section-shell {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
}

.products,
.reviews {
  padding-block: clamp(72px, 8vw, 120px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 46px;
}

.section-heading h2,
.deal h2,
.final-cta h2,
.age-gate h2 {
  max-width: 850px;
  margin: 4px 0 0;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(35px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading > p,
.deal__content > p,
.final-cta > div > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.eyebrow--light {
  color: var(--yellow);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-swipe-hint {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: -10px 0 16px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-swipe-hint span {
  color: var(--red);
  font-size: 18px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(21, 22, 30, 0.09);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.product-card:hover {
  box-shadow: 0 20px 44px rgba(21, 22, 30, 0.16);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card__tag {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 5px 15px rgba(23, 23, 23, 0.2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-card__body {
  padding: 20px;
  background: var(--white);
}

.product-card__body > p {
  margin: 0 0 3px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 48px;
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.35;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.price span {
  color: var(--muted);
  font-size: 11px;
}

.price strong {
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: 21px;
}

.price del {
  color: #8c8c8c;
  font-size: 12px;
}

.center-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 42px;
}

.center-action > span {
  color: var(--muted);
  font-size: 12px;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(23, 23, 23, 0.2);
}

.button--dark:hover {
  background: #343434;
}

.deal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  min-height: 600px;
  overflow: hidden;
  padding: clamp(50px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 84% 36%, rgba(14, 143, 220, 0.65), transparent 26%),
    linear-gradient(135deg, #042857 0%, #046ab2 100%);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.deal::before,
.deal::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.deal::before {
  width: 480px;
  height: 480px;
  right: -130px;
  bottom: -180px;
}

.deal::after {
  width: 260px;
  height: 260px;
  right: 80px;
  top: -130px;
}

.deal__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.deal h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5.5vw, 76px);
}

.deal h2 em {
  color: var(--yellow);
  font-style: normal;
}

.deal__content > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}

.steps b {
  font: inherit;
}

.steps span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.button--yellow {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 10px 30px rgba(2, 14, 33, 0.25);
}

.deal__burst {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 420px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-self: end;
  color: var(--ink);
  filter: drop-shadow(0 20px 25px rgba(0, 11, 33, 0.3));
  text-align: center;
}

.deal__burst::before {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: #ff432d;
  clip-path: polygon(
    50% 0%,
    60% 15%,
    75% 7%,
    81% 24%,
    99% 25%,
    90% 41%,
    100% 53%,
    84% 62%,
    88% 80%,
    70% 79%,
    63% 97%,
    49% 86%,
    36% 99%,
    29% 81%,
    10% 85%,
    15% 65%,
    0% 55%,
    12% 41%,
    2% 25%,
    21% 23%,
    26% 5%,
    41% 15%
  );
}

.deal__burst span {
  margin-bottom: 2px;
  padding: 9px 24px;
  background: var(--yellow);
  border-radius: 8px;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  transform: rotate(2deg);
}

.deal__burst small {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(17px, 2vw, 27px);
  font-weight: 800;
}

.deal__burst strong {
  color: var(--yellow);
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(46px, 6vw, 86px);
  letter-spacing: -0.08em;
  line-height: 1;
  text-shadow:
    -3px -3px 0 var(--ink),
    3px -3px 0 var(--ink),
    -3px 3px 0 var(--ink),
    3px 3px 0 var(--ink);
}

.deal__burst p {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 1051px) {
  .deal {
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
    gap: clamp(36px, 4vw, 64px);
    min-height: 620px;
    padding: clamp(38px, 3.5vw, 54px);
    background:
      radial-gradient(circle at 84% 42%, rgba(23, 157, 230, 0.72), transparent 29%),
      linear-gradient(135deg, #031f48 0%, #064f92 100%);
  }

  .deal__content {
    display: flex;
    min-height: 100%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: clamp(34px, 3.5vw, 52px);
    background: rgba(2, 24, 59, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 24px 50px rgba(0, 15, 42, 0.18);
    backdrop-filter: blur(5px);
  }

  .deal__content .eyebrow {
    margin-bottom: 18px;
    padding: 8px 12px;
    color: var(--ink);
    background: var(--yellow);
    border-radius: 999px;
    letter-spacing: 0.12em;
  }

  .deal h2 {
    max-width: 650px;
    margin: 0 0 22px;
    font-size: clamp(43px, 4vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.06em;
  }

  .deal__content > p {
    max-width: 570px;
    font-size: 16px;
    line-height: 1.6;
  }

  .steps {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 28px 0 30px;
  }

  .steps li {
    min-height: 96px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.4;
  }

  .steps span {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .deal__content .button {
    min-width: 230px;
  }

  .deal__burst {
    width: min(100%, 430px);
    justify-self: center;
  }

  .deal__burst::after {
    position: absolute;
    z-index: -2;
    width: 112%;
    height: 112%;
    content: "";
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    box-shadow:
      0 0 0 22px rgba(255, 255, 255, 0.025),
      0 28px 60px rgba(0, 14, 39, 0.28);
  }
}

.section-heading--reviews {
  align-items: center;
}

.rating {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.rating > span,
.stars {
  color: #f8ba16;
  letter-spacing: 0.12em;
}

.rating strong {
  font-size: 20px;
}

.rating small,
.rating a {
  color: var(--muted);
  font-size: 13px;
}

.rating a:hover {
  color: var(--red);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-grid blockquote {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 30px;
  background: var(--cream);
  border: 1px solid #ece7de;
  border-radius: var(--radius);
}

.review-grid blockquote > p {
  margin: 24px 0;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.4;
  letter-spacing: -0.035em;
}

.review-grid footer {
  font-size: 13px;
  font-weight: 800;
}

.review-grid footer span,
.review-grid footer a {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.review-grid footer a:hover {
  color: var(--red);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(56px, 7vw, 100px) max(20px, calc((100% - 1280px) / 2));
  color: var(--white);
  background: var(--red);
}

.final-cta h2 {
  max-width: 850px;
  font-size: clamp(36px, 5vw, 68px);
}

.final-cta > div > p {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: start;
  gap: clamp(24px, 5vw, 72px);
  padding: 40px max(20px, calc((100% - 1280px) / 2)) 110px;
  color: #757575;
  background: #111;
  font-size: 11px;
  line-height: 1.6;
}

.site-footer img {
  filter: invert(1);
  mix-blend-mode: screen;
}

.site-footer p {
  max-width: 440px;
  margin: 0;
}

.mobile-cta {
  display: none;
}

.age-gate {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 10, 10, 0.74);
  backdrop-filter: blur(14px);
  transition:
    opacity 200ms ease,
    visibility 200ms ease;
}

.age-gate.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.age-gate__card {
  position: relative;
  width: min(100%, 500px);
  padding: clamp(30px, 6vw, 54px);
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.age-gate__language {
  position: absolute;
  top: 18px;
  right: 18px;
}

.age-gate__card img {
  margin: 0 auto 30px;
}

.age-gate h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
}

.age-gate__card > p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: var(--muted);
  line-height: 1.6;
}

.age-gate .button {
  width: 100%;
}

.age-gate__exit {
  display: inline-block;
  margin-top: 20px;
  color: #777;
  font-size: 12px;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .deal {
    grid-template-columns: 1fr 0.7fr;
    padding: 60px 46px;
  }

  .deal__burst {
    width: 340px;
    transform: translateX(30px);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  .campaign-pill {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .deal {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .deal__content {
    display: grid;
    justify-items: center;
  }

  .steps {
    width: min(100%, 360px);
    text-align: left;
  }

  .deal__burst {
    width: min(100%, 390px);
    justify-self: center;
    transform: none;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-grid blockquote {
    min-height: 220px;
  }

  .section-heading--reviews {
    align-items: start;
  }

  .rating {
    justify-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }
}

@media (max-width: 600px) {
  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 72px;
    justify-content: flex-start;
    padding-inline: 24px;
  }
}

@media (max-width: 680px) {
  .promo-strip {
    gap: 8px;
    min-height: 34px;
    font-size: 9px;
  }

  .promo-strip__dot {
    width: 3px;
    height: 3px;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .brand img {
    width: 124px;
  }

  .button--small {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .language-switcher__button {
    min-width: 35px;
    min-height: 34px;
    padding-inline: 8px;
  }

  .hero {
    padding-bottom: 132px;
  }

  .hero__visual,
  .hero__visual img {
    max-height: none;
  }

  .hero__visual img {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .hero__action {
    right: 20px;
    bottom: 20px;
    left: 20px;
    min-width: 0;
  }

  .countdown {
    font-size: 11px;
  }

  .button--hero {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .section-shell {
    width: min(100% - 28px, 1320px);
  }

  .products,
  .reviews {
    padding-block: 66px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: center;
  }

  .section-heading > p {
    max-width: 34rem;
    margin-inline: auto;
  }

  .section-heading h2,
  .deal h2 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .product-grid {
    width: calc(100% + 14px);
    grid-auto-columns: min(88vw, 340px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-right: -14px;
    padding: 2px 14px 16px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 14px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-swipe-hint {
    display: flex;
  }

  .product-card {
    border-radius: 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .product-card__tag {
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .product-card__body {
    padding: 18px;
  }

  .product-card h3 {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .product-card__body > p {
    font-size: 10px;
  }

  .price {
    flex-wrap: nowrap;
    gap: 7px;
  }

  .price strong {
    font-size: 21px;
  }

  .center-action {
    margin-top: 18px;
  }

  .center-action .button {
    display: none;
  }

  .deal {
    width: 100%;
    min-height: auto;
    padding: 64px 20px;
    border-radius: 0;
  }

  .deal__content > p {
    font-size: 15px;
  }

  .deal__burst {
    width: min(100%, 350px);
  }

  .final-cta {
    align-items: center;
    padding: 64px 20px 86px;
    text-align: center;
  }

  .final-cta > div > p {
    margin-inline: auto;
  }

  .final-cta .button {
    width: min(100%, 320px);
  }

  .site-footer {
    justify-items: center;
    padding-inline: 20px;
    text-align: center;
  }

  .section-heading--reviews {
    align-items: center;
  }

  .rating {
    justify-items: center;
  }

  .mobile-cta {
    position: fixed;
    z-index: 50;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 18px;
    color: var(--white);
    background: var(--red);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    box-shadow: 0 14px 36px rgba(23, 23, 23, 0.3);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta > span:first-child {
    display: grid;
    gap: 3px;
    min-width: 92px;
    text-transform: none;
  }

  .mobile-cta strong {
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .mobile-cta small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 500;
  }
}

@media (max-width: 480px) {
  .site-header .button--small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
