:root {
  --green: #008a45;
  --green-dark: #003f35;
  --yellow: #ffd400;
  --red: #ed0505;
  --ink: #111820;
  --muted: #64707d;
  --white: #ffffff;
  --line: rgba(17, 24, 32, 0.12);
  --shadow: 0 22px 60px rgba(9, 12, 15, 0.32);
  --checkout-font: "Roboto", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #080913;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pricePulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(255, 212, 0, 0));
  }

  50% {
    transform: scale(1.035);
    filter: drop-shadow(0 0 14px rgba(255, 212, 0, 0.48));
  }
}

@keyframes shineSweep {
  from {
    transform: translateX(-130%) skewX(-18deg);
  }

  to {
    transform: translateX(150%) skewX(-18deg);
  }
}

@keyframes backgroundDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 60px 60px, 0 0, 0 0;
  }
}

button,
input,
textarea {
  font: inherit;
}

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

h1 {
  margin-bottom: 10px;
  font-family: Impact, "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-family: Impact, "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3rem, 4.8vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(18px, 2.5vw, 28px);
  min-height: 100vh;
  padding: clamp(12px, 2vw, 22px) clamp(12px, 4vw, 40px) 0;
  color: var(--white);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 0 18px, transparent 19px) 0 0 / 60px 60px,
    linear-gradient(105deg, rgba(0, 67, 156, 0.95) 0%, rgba(0, 128, 55, 0.9) 50%, rgba(223, 0, 0, 0.92) 100%),
    #07182a;
  overflow: hidden;
  animation: backgroundDrift 12s linear infinite;
}

.top-ribbon {
  width: 100%;
  max-width: 1880px;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 16px;
  color: var(--white);
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #c50017, #ed0505, #bd1508);
  border-radius: 6px;
  animation: floatIn 0.55s ease both;
}

.site-logo {
  position: absolute;
  top: clamp(54px, 5vw, 72px);
  left: clamp(12px, 3vw, 36px);
  z-index: 4;
  display: block;
  width: clamp(120px, 17vw, 240px);
  text-decoration: none;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.36));
  animation: floatIn 0.6s ease 0.08s both, softFloat 4.2s ease-in-out 0.8s infinite;
}

.site-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.offer-card {
  position: relative;
  width: min(560px, calc(100vw - 36px));
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2.7vw, 28px) clamp(20px, 2.6vw, 24px);
  text-align: center;
  background: var(--red);
  border: 3px solid var(--yellow);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatIn 0.65s ease 0.1s both;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(9, 12, 15, 0.42);
}

.offer-card::before,
.offer-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 196, 0, 0.12);
}

.offer-card::before {
  right: -22px;
  top: -22px;
}

.offer-card::after {
  left: -20px;
  bottom: -38px;
}

.offer-kicker {
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.28em;
}

.offer-subtitle {
  margin-bottom: 14px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.old-price {
  color: rgba(255, 255, 255, 0.75);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  text-decoration: line-through;
}

.price-row strong {
  color: var(--yellow);
  font-family: Impact, "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.85;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
  animation: pricePulse 2.3s ease-in-out infinite;
}

.save-pill {
  padding: 6px 18px;
  color: #101010;
  background: var(--yellow);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.microcopy {
  margin: 8px 0 16px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

.button,
.buy-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  color: #151515;
  background: var(--yellow);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.12), 0 18px 32px rgba(0, 0, 0, 0.22);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.button::after,
.buy-button::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: translateX(-130%) skewX(-18deg);
  animation: shineSweep 2.8s ease-in-out infinite;
  pointer-events: none;
}

.button:hover,
.buy-button:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.08);
}

.button:active,
.buy-button:active {
  transform: translateY(1px) scale(0.99);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.button.full {
  width: 100%;
}

.offer-card .buy-button {
  width: min(312px, 100%);
}

.combo-offer {
  position: relative;
  width: min(820px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: minmax(210px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2.5vw, 28px);
  padding: clamp(14px, 2vw, 22px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(4, 26, 52, 0.96), rgba(7, 79, 48, 0.94)),
    #082131;
  border: 3px solid var(--yellow);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatIn 0.7s ease 0.22s both;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.combo-offer:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.38);
}

.combo-offer-art {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.82;
  padding: 10px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.combo-offer-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: softFloat 3.8s ease-in-out infinite;
}

.combo-offer-copy {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.combo-offer .badge {
  position: static;
  width: fit-content;
}

.combo-offer h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.combo-offer p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
}

.combo-price {
  color: var(--yellow);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.9;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.24);
  animation: pricePulse 2.5s ease-in-out 0.35s infinite;
}

.combo-offer .buy-button {
  min-width: min(320px, 100%);
}

.showcase {
  width: min(720px, 100%);
  text-align: center;
  animation: floatIn 0.7s ease 0.34s both;
}

.showcase h2 {
  color: #ffe331;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.18);
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.34),
    0 0 12px rgba(255, 212, 0, 0.95),
    0 0 28px rgba(255, 212, 0, 0.72),
    0 0 52px rgba(255, 168, 0, 0.5);
}

.showcase > p {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  letter-spacing: clamp(0.08em, 0.8vw, 0.22em);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.42);
}

.mini-products {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(22px, 3vw, 38px);
}

.mini-product {
  display: grid;
  grid-template-rows: 92px auto;
  align-items: center;
  gap: 8px;
  width: 130px;
  height: 158px;
  padding: 10px 10px 12px;
  color: var(--yellow);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.7rem;
  text-align: center;
  border: 2px solid var(--yellow);
  border-radius: 10px;
  background: rgba(3, 42, 34, 0.64);
  cursor: pointer;
  animation: floatIn 0.55s ease both;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mini-product:nth-child(1) {
  animation-delay: 0.42s;
}

.mini-product:nth-child(2) {
  animation-delay: 0.52s;
}

.mini-product:nth-child(3) {
  animation-delay: 0.62s;
}

.mini-product:hover {
  transform: translateY(-6px) rotate(-1deg);
  background: rgba(0, 80, 58, 0.84);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.mini-art {
  position: relative;
  height: auto;
  aspect-ratio: auto;
  width: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.mini-art img,
.product-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.24s ease;
}

.mini-product:hover .mini-art img,
.product-card:hover .product-art img {
  transform: scale(1.055);
}

.mini-art img {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 3px;
}

.album-mini img,
.packs-mini img,
.card-mini img {
  max-width: 88%;
  max-height: 88%;
}

.card-mini img {
  object-fit: contain;
  object-position: center;
  max-width: 72%;
  max-height: 86%;
}

.card-mini {
  aspect-ratio: auto;
}

.showcase-buy {
  min-width: min(440px, calc(100vw - 48px));
  min-height: 64px;
  font-size: clamp(0.84rem, 1.25vw, 1rem);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
}

.metrics {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 28px;
  width: calc(100% + clamp(24px, 8vw, 80px));
  margin: 0;
  padding: clamp(14px, 2vw, 18px) clamp(18px, 6vw, 120px);
  color: var(--white);
  text-align: center;
  background: #0d0d0e;
  border-bottom: 3px solid var(--yellow);
}

.metrics div {
  padding: 0;
}

.metrics dt {
  color: var(--yellow);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  font-weight: 900;
}

.metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
}

.products-section,
.pix-section {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 5vw, 72px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.products-section {
  background: #080913;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  color: #ffffff;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 462px;
  padding: 18px 16px 16px;
  color: #ffffff;
  background: linear-gradient(180deg, #11152b 0%, #111a35 100%);
  border: 2px solid var(--yellow);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  animation: floatIn 0.6s ease both;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-card:nth-child(1) {
  animation-delay: 0.08s;
}

.product-card:nth-child(2) {
  animation-delay: 0.16s;
}

.product-card:nth-child(3) {
  animation-delay: 0.24s;
}

.product-card:nth-child(4) {
  animation-delay: 0.32s;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #ffffff;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.34);
}

.product-card.featured-product {
  border-color: #ff3030;
  background:
    linear-gradient(180deg, #e50909 0 45%, #11152b 45% 100%);
}

.featured-product .badge {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  color: #ffffff;
  background: #ff3030;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  animation: none;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 2;
  padding: 7px 14px;
  color: #111;
  background: var(--yellow);
  border-radius: 999px;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: softFloat 3.4s ease-in-out infinite;
}

.badge.muted {
  color: #111;
  background: var(--yellow);
}

.badge.accent {
  color: var(--white);
  background: var(--red);
}

.product-art {
  height: auto;
  aspect-ratio: 1 / 0.92;
  display: grid;
  place-items: center;
  margin: 26px 0 22px;
  padding: 6px;
  border-radius: 3px;
  background-color: #ffffff;
  overflow: hidden;
}

.featured-product .product-art {
  height: auto;
  aspect-ratio: 1 / 0.92;
  margin-top: 32px;
  background: #ffffff;
}

.album-art,
.album-soft-art,
.special-art {
  aspect-ratio: 1 / 1.18;
}

.album-art img,
.album-soft-art img,
.special-art img {
  max-width: 100%;
  max-height: 100%;
}

.product-card p {
  min-height: 72px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-card h3 {
  color: #ffffff;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.16;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.old-card-price {
  display: block;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  text-decoration: line-through;
}

.price {
  display: block;
  margin-top: auto;
  margin-bottom: 16px;
  color: var(--yellow);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.28);
  transition: transform 0.22s ease, filter 0.22s ease;
}

.product-card:hover .price {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(255, 212, 0, 0.35));
}

.price span {
  color: rgba(255, 255, 255, 0.55);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-shadow: none;
}

.product-card .buy-button {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: #ffffff;
  background: #009344;
  border-radius: 7px;
  box-shadow: none;
  line-height: 1.08;
}

.featured-product .buy-button {
  background: #ff3030;
}

.pix-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  color: var(--white);
  background: linear-gradient(135deg, #101820, #133827);
}

.pix-section .eyebrow {
  color: #ffe331;
}

.pix-section h2 {
  color: #ffffff;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
}

.pix-section p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.pix-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pix-benefits div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.pix-benefits strong,
.pix-benefits span {
  display: block;
}

.pix-benefits span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  background: #0c1116;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer strong {
  color: var(--white);
}

.checkout {
  width: min(980px, calc(100vw - 26px));
  max-height: calc(100vh - 26px);
  padding: 0;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.checkout::backdrop {
  background: rgba(8, 14, 18, 0.72);
  backdrop-filter: blur(5px);
}

.checkout-panel {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 212, 0, 0.08), transparent 28%),
    #ffffff;
  font-family: var(--checkout-font);
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #edf0ed;
  cursor: pointer;
}

.checkout-header h2 {
  color: var(--ink);
  font-family: var(--checkout-font);
  font-weight: 900;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.05;
}

.checkout-chip {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: #0a5b35;
  background: rgba(0, 147, 68, 0.12);
  border: 1px solid rgba(0, 147, 68, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.72fr);
  gap: 18px;
}

.checkout-main,
.checkout-side,
.order-card,
.upsell-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.checkout-main {
  display: grid;
  gap: 14px;
  padding: 14px;
}

.checkout-side {
  position: sticky;
  top: 14px;
  align-self: start;
  padding: 16px;
  background: #10152b;
  color: #ffffff;
}

.order-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
}

.order-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--checkout-font);
  font-size: 1rem;
  font-weight: 900;
}

.order-card small {
  display: block;
  margin-top: 5px;
  color: #008a45;
  font-weight: 900;
}

.order-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upsell-box {
  padding: 14px;
  background: #fffdf2;
}

.upsell-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.upsell-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 72px;
  padding: 8px;
  color: var(--ink);
  font-family: var(--checkout-font);
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(255, 212, 0, 0.9);
  border-radius: 10px;
  cursor: pointer;
}

.upsell-item img {
  width: 48px;
  height: 54px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
}

.upsell-item span,
.upsell-item strong {
  display: block;
  grid-column: 2;
}

.upsell-item span {
  font-size: 0.82rem;
  font-weight: 900;
}

.upsell-item strong {
  margin-top: 4px;
  color: var(--green);
  font-size: 0.78rem;
}

.upsell-item.added {
  border-color: var(--green);
  background: rgba(0, 147, 68, 0.08);
}

.cart-lines {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.cart-lines li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.cart-lines strong {
  color: #ffffff;
  white-space: nowrap;
}

.quantity-row,
.total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.checkout-side .total-box {
  padding-top: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.stepper {
  display: grid;
  grid-template-columns: 40px 48px 40px;
  align-items: center;
  height: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stepper button {
  height: 100%;
  border: 0;
  background: #f1f4f2;
  cursor: pointer;
}

.stepper output {
  text-align: center;
  font-weight: 900;
}

.total-box strong {
  color: var(--green);
  font-size: 1.5rem;
}

.checkout-side .total-box strong {
  color: var(--yellow);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 2.15rem;
}

.fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  font-family: var(--checkout-font);
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  font-family: var(--checkout-font);
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(19, 138, 75, 0.14);
}

.delivery-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-side .delivery-note {
  color: rgba(255, 255, 255, 0.68);
}

.pix-result {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbf8;
}

.checkout-side .pix-result {
  color: var(--ink);
}

.checkout .pix-result {
  display: none !important;
}

.discount-offer {
  width: min(430px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.discount-offer::backdrop {
  background: rgba(8, 14, 18, 0.72);
  backdrop-filter: blur(5px);
}

.discount-panel {
  padding: 26px;
  text-align: center;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 212, 0, 0.35), transparent 32%),
    linear-gradient(180deg, #ed0505, #b40000);
  color: #ffffff;
}

.discount-panel h2 {
  color: var(--yellow);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(1.8rem, 7vw, 2.7rem);
  line-height: 1;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.28);
}

.discount-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.5;
}

.discount-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.pix-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 18px, transparent 19px) 0 0 / 60px 60px,
    linear-gradient(135deg, #082f26, #0b1022 58%, #7d0909);
}

.pix-checkout {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.pix-card {
  width: min(520px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  text-align: center;
  background: #10152b;
  border: 2px solid var(--yellow);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pix-card h1 {
  margin-bottom: 0;
  color: var(--yellow);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 7vw, 3.1rem);
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 212, 0, 0.55);
}

.pix-page-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
}

.pix-thanks-card,
.pix-total-card,
.pix-status-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}

.pix-thanks-card {
  gap: 8px;
  background: rgba(0, 147, 68, 0.18);
  border-color: rgba(77, 255, 163, 0.34);
  text-align: left;
}

.pix-thanks-card strong {
  color: var(--yellow);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.pix-thanks-card span {
  color: rgba(255, 255, 255, 0.84);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
}

.pix-total-card span,
.pix-status-card span {
  color: rgba(255, 255, 255, 0.7);
  font-family: Arial, Helvetica, sans-serif;
}

.pix-total-card strong {
  color: var(--yellow);
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  line-height: 1;
}

.pix-qr-frame {
  position: relative;
  width: min(320px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  padding: 14px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pix-qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}

.pix-qr-frame img.loaded {
  opacity: 1;
}

.qr-loading {
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: center;
  color: #111820;
  background:
    linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.22), transparent),
    #f3f5f4;
  border-radius: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.qr-loading[hidden],
.qr-open-link[hidden],
.pix-thanks-card[hidden],
.button[hidden] {
  display: none;
}

.qr-open-link {
  width: fit-content;
  justify-self: center;
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-decoration: none;
}

.pix-copy-label {
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.pix-copy-label textarea {
  min-height: 112px;
  margin-top: 8px;
}

.pix-back-link {
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.qr {
  width: 148px;
  height: 148px;
  margin: 0 auto;
  border: 8px solid #fff;
  background: #f4f4f4;
}

.qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.transaction-status {
  color: var(--green);
  font-weight: 800;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

textarea {
  min-height: 76px;
  resize: vertical;
  font-size: 0.82rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .products-grid,
  .pix-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics {
    gap: 16px;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(1.5rem, 7.4vw, 2.15rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .hero {
    gap: 18px;
    padding-inline: 10px;
  }

  .top-ribbon {
    min-height: auto;
    padding: 10px 12px;
    font-size: 0.7rem;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .site-logo {
    position: absolute;
    top: 52px;
    left: 10px;
    width: min(116px, 34vw);
    margin: 0;
  }

  .products-grid,
  .pix-section,
  .pix-benefits,
  .fields {
    grid-template-columns: 1fr;
  }

  .mini-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .offer-card {
    width: 100%;
    padding: 16px 14px 20px;
    border-radius: 12px;
  }

  .combo-offer {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 14px;
    text-align: center;
  }

  .combo-offer-art {
    aspect-ratio: 1 / 0.86;
  }

  .combo-offer-copy {
    justify-items: center;
  }

  .combo-offer p {
    font-size: 0.82rem;
  }

  .combo-price {
    font-size: clamp(2.55rem, 13vw, 3.4rem);
  }

  .combo-offer .buy-button {
    width: 100%;
    min-height: 48px;
    padding-inline: 16px;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .offer-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .offer-subtitle {
    font-size: 0.7rem;
    line-height: 1.25;
  }

  .price-row strong {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

  .old-price,
  .microcopy {
    font-size: 0.68rem;
  }

  .save-pill {
    width: fit-content;
    max-width: 100%;
    padding: 5px 14px;
    font-size: 0.6rem;
    line-height: 1.25;
  }

  .offer-card .buy-button {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .mini-product {
    width: 100%;
    height: clamp(132px, 36vw, 148px);
    grid-template-rows: minmax(78px, 1fr) auto;
    padding: 7px 7px 9px;
    font-size: clamp(0.52rem, 2.2vw, 0.66rem);
  }

  .card-mini img {
    max-width: 62%;
    max-height: 84%;
  }

  .mini-art {
    min-height: 0;
  }

  .showcase-buy {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding-inline: 14px;
    line-height: 1.25;
  }

  .trust-line {
    display: grid;
    gap: 8px;
  }

  .metrics {
    width: calc(100% + 20px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    padding: 12px 8px;
  }

  .metrics dt {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }

  .metrics dd {
    font-size: clamp(0.58rem, 2.6vw, 0.78rem);
    line-height: 1.15;
  }

  .product-card {
    min-height: auto;
  }

  .checkout {
    width: min(100vw - 14px, 980px);
  }

  .checkout-panel {
    padding: 18px;
  }

  .checkout-layout,
  .upsell-list {
    grid-template-columns: 1fr;
  }

  .checkout-side {
    position: static;
  }

  .order-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

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