:root {
  --green: #119447;
  --green-dark: #087436;
  --red: #d71920;
  --black: #111111;
  --muted: #5d636d;
  --line: #e5e5e5;
  --soft: #f7f7f7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  max-width: 100%;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
p,
span,
a,
li,
summary {
  max-width: 100%;
  overflow-wrap: break-word;
}

.top-alert {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 12px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.page {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

.hero,
.simple-section,
.cod-box,
.offers,
.final,
footer {
  padding: 26px 18px;
  text-align: center;
}

.stock {
  display: inline-block;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff1f1;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 24px;
  border-radius: 4px;
}

.hero-video {
  aspect-ratio: 1 / 1;
  background: #111111;
  object-fit: cover;
}

.price-line {
  margin-bottom: 6px;
}

.price-line span,
.old-price {
  color: var(--black);
  font-size: 18px;
  text-decoration: line-through;
}

.price-line strong,
.new-price {
  display: block;
  color: var(--red);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.installment,
.unit-price {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15px;
}

.cta {
  min-height: 54px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 2px solid #0b6c33;
  border-radius: 3px;
  background: linear-gradient(180deg, #38b75a, var(--green));
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(17, 148, 71, .18);
}

.cta-dark {
  border-color: #222;
  background: linear-gradient(180deg, #3b3b3b, #111);
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.trust-row span {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--soft);
  font-size: 18px;
}

.cod-box {
  border-top: 8px solid var(--soft);
  border-bottom: 8px solid var(--soft);
}

.cod-box h2 {
  color: var(--black);
  text-transform: uppercase;
}

.cod-lead {
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.35;
}

.cod-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.cod-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fbfbfb;
  text-align: left;
}

.cod-steps b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  font-size: 20px;
}

.cod-steps span {
  font-size: 18px;
}

.payment-note,
.body-copy,
.faq p,
.final p,
footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.check-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 34px;
  font-size: 21px;
  line-height: 1.15;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 3px;
  background: #80bf66;
  color: var(--white);
  font-weight: 900;
}

.offers {
  background: #fafafa;
}

.offer {
  position: relative;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.offer.featured {
  border: 2px solid var(--green);
}

.tag {
  width: max-content;
  margin: -4px auto 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.offer img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.old-price {
  margin: 6px 0 0;
  font-size: 16px;
}

.new-price {
  margin: 4px 0 2px;
  font-size: 38px;
}

.faq {
  border-top: 8px solid var(--soft);
}

details {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  text-align: left;
}

summary {
  cursor: pointer;
  padding: 14px;
  font-size: 17px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 14px 14px;
}

.final {
  background: #101010;
  color: var(--white);
}

.final p {
  color: rgba(255, 255, 255, .78);
}

footer {
  padding-bottom: 34px;
  background: #f2f2f2;
}

footer p {
  margin-bottom: 0;
  font-size: 12px;
}

@media (min-width: 720px) {
  body {
    background: #eeeeee;
  }

  .page {
    margin-top: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, .08);
  }
}

@media (max-width: 360px) {
  .page {
    width: 100vw;
    max-width: 100vw;
  }

  h1 {
    font-size: 25px;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  h2,
  h3,
  p,
  span,
  a,
  li,
  summary {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-image,
  .offer img {
    width: 100%;
    max-width: 100%;
  }

  .hero,
  .simple-section,
  .cod-box,
  .offers,
  .final,
  footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-alert {
    font-size: 23px;
  }
}
