:root {
  --red: #ef4444;
  --green: #10b981;
  --yellow: #f59e0b;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f1f5f9;
  color: var(--text);
}

button {
  font: inherit;
}

.page-shell {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: white;
  padding-bottom: 92px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.top-marquee {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 40px;
  overflow: hidden;
  background: var(--red);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 28px;
  padding-left: 16px;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 40px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  background: white;
}

.site-header-spacer {
  display: block;
  width: 24px;
  height: 24px;
}

.site-header div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #1f2937;
  font-size: 21px;
}

.site-header div span:first-child {
  color: #3b82f6;
}

.timer {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 800;
}

.timer b {
  min-width: 28px;
  padding: 3px 5px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.price {
  display: inline-block;
  margin-right: 7px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.old-price {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-decoration: line-through;
}

.discount {
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.gallery {
  padding: 16px 16px 0;
}

.gallery-stage {
  position: relative;
}

.gallery-stage > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #f3f4f6;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 7px rgba(15, 23, 42, 0.18);
  color: #4b5563;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-nav.prev {
  left: 8px;
}

.gallery-nav.next {
  right: 8px;
}

.gallery-count {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 12px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 0 0;
}

.thumb,
.choice {
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}

.thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
}

.thumb img,
.choice img,
.review img,
.store-head img,
.about img,
footer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active,
.choice.active {
  border-color: var(--red);
  color: var(--red);
}

.offer-card {
  margin: 16px 16px 0;
}

.offer-card > .offer-top {
  padding: 14px 16px 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #ff7a18, #ff5722);
  color: white;
}

.offer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
}

.offer-top > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer-top .timer {
  margin-left: 4px;
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: -1px;
  padding: 14px 16px 6px;
  background: linear-gradient(180deg, #ff5722, #f4511e);
  color: white;
}

.limited-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 16px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #f4511e, #ff5722);
  color: white;
  font-size: 13px;
}

.limited-row strong {
  font-size: 15px;
}

.stock-card {
  margin: 12px 16px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.stock-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e5e5;
}

.stock-track span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #ef6b67;
  transition: width 600ms ease;
}

.stock-card p {
  margin: 9px 0 0;
  color: #ef4444;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.stock-card strong {
  color: #ef4444;
}

.pix-line {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 12px 0 0;
  color: #374151;
  font-size: 14px;
}

.pix-line::first-letter {
  color: var(--red);
}

.flash-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  font-size: 12px;
  font-weight: 800;
}

.product-head,
.chooser,
.video-section,
.reviews,
.store-card,
.about,
.shipping,
.faq,
footer {
  padding: 0 16px;
}

.product-head h1 {
  margin: 16px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.rating-row,
.scarcity-row,
.box-head,
.section-title,
.store-head,
.trust-row {
  display: flex;
  align-items: center;
}

.rating-row {
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

.rating-row i {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #9ca3af;
}

.stars,
.score b,
.review b {
  color: var(--yellow);
}

.scarcity-row {
  gap: 7px;
  margin-top: 6px;
  color: var(--red);
  font-size: 13px;
}

.scarcity-row i {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dc2626;
}

.scarcity-row i::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #f87171;
  animation: ping 1.4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.scarcity-row em {
  margin: 0 6px;
  color: #9ca3af;
  font-style: normal;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.freight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 16px 0;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.freight-card > span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 5px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.freight-card p {
  margin: 0;
  font-size: 14px;
}

.freight-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.box {
  margin: 14px 16px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.box-head {
  justify-content: space-between;
  font-size: 14px;
}

.box-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.benefit-grid div {
  display: flex;
  min-width: 0;
  gap: 6px;
  align-items: center;
  padding: 8px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
}

.benefit-grid span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.benefits p {
  margin: 12px 0 0;
  padding: 10px;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 6px;
  background: rgba(16, 185, 129, 0.1);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

.section-title {
  justify-content: space-between;
  margin: 18px 0 8px;
}

h2 {
  margin: 0;
  font-size: 16px;
}

.section-title h2 {
  font-size: 14px;
}

.section-title span {
  color: var(--muted);
  font-size: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  font-size: 12px;
  text-align: left;
}

.choice img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #f3f4f6;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #f1f5f9;
}

.video-frame {
  width: min(100%, 400px);
  aspect-ratio: 9 / 16;
  margin: 12px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: black;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 16px;
}

.score strong {
  font-size: 32px;
}

.score span {
  color: var(--muted);
  font-size: 14px;
}

.review {
  margin-top: 20px;
}

.review div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.review span,
.review small,
.review-meta {
  color: var(--muted);
  font-size: 12px;
}

.review p,
.about p,
.shipping p,
.faq p {
  font-size: 14px;
  line-height: 1.55;
}

.review img {
  width: 96px;
  height: 96px;
  margin: 10px 0 8px;
  border-radius: 8px;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.store-head {
  gap: 12px;
}

.store-head img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.store-head strong,
.store-head span {
  display: block;
  font-size: 14px;
}

.store-head span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.trust-row {
  justify-content: space-between;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.trust-row strong {
  color: var(--red);
}

.trust-bar {
  height: 6px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #f3f4f6;
}

.trust-bar i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
}

.about img {
  height: auto;
  margin: 14px 0;
  border-radius: 8px;
}

.about h3 {
  margin: 20px 0 8px;
  font-size: 14px;
}

.about ul {
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.7;
}

.shipping h2,
.faq h2 {
  margin-bottom: 14px;
  font-size: 18px;
}

.shipping-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 16px;
}

.shipping-item > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #eef2f7;
  border-radius: 50%;
  background: var(--soft);
  font-size: 20px;
}

.shipping-item strong {
  display: block;
  font-size: 14px;
}

.shipping-item p {
  margin: 4px 0 0;
  color: #4b5563;
  font-size: 12px;
}

.shipping-note {
  margin: 20px 0 0;
  padding: 14px;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  background: #f9fafb;
  color: #4b5563;
  text-align: center;
}

details {
  border-top: 1px solid #f1f5f9;
}

details:last-child {
  border-bottom: 1px solid #f1f5f9;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: #9ca3af;
}

details[open] summary::after {
  content: "-";
}

.faq p {
  margin: -4px 0 14px;
  color: #4b5563;
}

footer {
  padding-top: 18px;
  padding-bottom: 24px;
  text-align: center;
}

footer img {
  width: min(80%, 320px);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 8px;
}

footer p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 12px;
}

.buy-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: white;
}

.buy-bar button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: white;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.22);
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
}

.buy-bar button:active {
  transform: translateY(1px);
}

.checkout-page,
.native-payment-page {
  min-height: 100vh;
  background: #f3f4f6;
  padding-bottom: 28px;
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: white;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.08);
}

.checkout-header button,
.checkout-header span {
  width: 32px;
}

.checkout-header button {
  border: 0;
  background: transparent;
  color: #374151;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.checkout-header h1 {
  margin: 0;
  font-size: 18px;
}

.checkout-content {
  padding: 16px;
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  margin: 22px auto 0;
  padding: 0 28px;
  border-radius: 999px;
  background: #2cc873;
  color: #06140c;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.secure-badge svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.secure-badge svg path:last-child {
  fill: none;
  stroke: #2cc873;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pix-banner {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.16);
}

.checkout-card {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}

.checkout-card h2 {
  margin-bottom: 12px;
  color: #111827;
  font-size: 14px;
}

.checkout-card p {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.checkout-card-head h2 {
  margin: 0;
}

.watching {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  border-radius: 999px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 10px;
  font-weight: 800;
}

.watching i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;
}

.order-product {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}

.order-product img {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f4f6;
}

.order-product h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 14px;
  line-height: 1.35;
}

.order-product p {
  margin: 1px 0;
  color: #6b7280;
  font-size: 12px;
}

.order-product strong {
  display: block;
  margin-top: 8px;
  color: #111827;
  font-size: 14px;
}

.totals {
  padding-top: 10px;
}

.totals p,
.payment-card > p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0;
}

.totals .saving,
.totals .free {
  color: var(--green);
  font-weight: 700;
}

.totals .total {
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.order-bump-card h2 {
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 900;
}

.order-bump-card > p {
  margin-bottom: 10px;
  color: #6b7280;
  font-size: 12px;
}

.order-bump-option {
  position: relative;
  display: grid;
  grid-template-columns: 34px 82px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 14px 14px;
  border: 2px dashed #f6d36d;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.order-bump-option + .order-bump-option {
  margin-top: 12px;
}

.order-bump-option:has(input:checked) {
  border-color: #ef4444;
  background: #fffafa;
}

.order-bump-option input {
  width: 26px;
  height: 26px;
  accent-color: var(--red);
}

.order-bump-option img {
  width: 82px;
  height: 66px;
  border-radius: 4px;
  object-fit: contain;
  background: #fff;
}

.order-bump-option strong {
  display: block;
  color: #222;
  font-size: 16px;
  line-height: 1.2;
}

.order-bump-option small {
  display: block;
  margin-top: 4px;
  color: #e11d48;
  font-size: 18px;
  font-weight: 800;
}

.order-bump-option em {
  display: block;
  margin-top: 3px;
  color: #b91c1c;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.delivery-list {
  margin: 12px 0;
  padding: 0;
  list-style: none;
  color: #374151;
  font-size: 13px;
  line-height: 1.9;
}

.info-note,
.secure-line {
  padding: 10px;
  border-radius: 8px;
  background: #eff6ff;
}

.guarantee {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.guarantee strong {
  display: block;
  margin-bottom: 5px;
  color: #111827;
  font-size: 12px;
}

.guarantee p {
  margin: 0;
  font-size: 12px;
}

.orange-note {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid #ffedd5;
  border-radius: 8px;
  background: #fff7ed;
}

.orange-note strong,
.orange-note b {
  color: #9a3412;
  font-size: 12px;
}

.orange-note p {
  margin: 6px 0;
  color: #c2410c;
  font-size: 11px;
}

.secure-line {
  margin: 12px 0 0;
  background: #f9fafb;
  color: #6b7280;
  font-size: 10px;
}

.tracking-alert {
  margin: -4px 16px 2px;
  padding: 10px 12px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.delivery-form-card h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 16px;
}

.delivery-form-card h2 span {
  color: var(--red);
  font-size: 18px;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 12px;
  background: white;
  color: #111827;
  font: inherit;
  font-size: 14px;
  outline: none;
}

.checkout-form input::placeholder {
  color: #9ca3af;
}

.checkout-form input:focus,
.checkout-form select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.checkout-form input.field-error,
.checkout-form select.field-error {
  border-color: #ef4444;
  background: #fff5f5;
}

.checkout-validation {
  margin: 0 0 12px;
  padding: 10px;
  border-radius: 8px;
  background: #fef2f2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shipping-method {
  margin-top: 16px;
}

.shipping-method[hidden] {
  display: none;
}

.shipping-method h3 {
  margin: 0 0 8px;
  color: #333;
  font-size: 15px;
  font-weight: 900;
}

.shipping-method > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 2px solid #22c55e;
  border-radius: 10px;
  background: #f8fafc;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.05);
}

.shipping-method span {
  color: #22c55e;
  font-size: 24px;
}

.shipping-method p {
  flex: 1;
  margin: 0;
}

.shipping-method strong,
.shipping-method small {
  display: block;
}

.shipping-method strong {
  color: #333;
  font-size: 14px;
}

.shipping-method small {
  margin-top: 3px;
  color: #666;
  font-size: 12px;
}

.shipping-method small b {
  color: #333;
}

.shipping-method > div > b {
  color: #22c55e;
  font-size: 13px;
  font-weight: 1000;
}

.safe-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.safe-row span {
  padding: 8px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  color: #374151;
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.payment-card > p {
  align-items: center;
  color: #6b7280;
  font-size: 14px;
}

.payment-card > p strong {
  color: #111827;
  font-size: 22px;
}

.payment-card button,
.modal-action button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: white;
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.22);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-card button:disabled,
.pix-card button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.payment-card small {
  display: block;
  margin-top: 10px;
  color: #9ca3af;
  font-size: 10px;
  text-align: center;
}

.ra-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 10px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: white;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.ra-seal img {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
}

.ra-seal strong {
  display: block;
  color: #2f3136;
  font-size: 13px;
  line-height: 1.1;
}

.yellow-stars {
  display: block;
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.ra-seal small {
  display: block;
  color: #16a34a;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.pix-card {
  text-align: center;
}

.pix-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
}

.pix-status {
  margin: 0 auto 16px;
  color: #6b7280;
}

.pix-status strong {
  color: #d97706;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  width: min(210px, 72vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto 16px;
  border: 10px solid #f9fafb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #e5e7eb, 0 10px 22px rgba(15, 23, 42, 0.08);
}

.qr-loading {
  display: grid;
  place-items: center;
  gap: 10px;
  min-width: 120px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #047857;
  font-size: 13px;
  font-weight: 900;
}

.qr-loading i {
  width: 34px;
  height: 34px;
  border: 4px solid #d1fae5;
  border-top-color: #16a34a;
  border-radius: 999px;
  animation: spin 0.85s linear infinite;
}

.qr-loading[hidden] {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.qr-placeholder canvas,
.qr-placeholder img {
  width: 100% !important;
  height: 100% !important;
  padding: 10px;
  border-radius: 8px;
  background: white;
  object-fit: contain;
}

.pix-error {
  margin: -4px 0 12px;
  padding: 10px;
  border-radius: 8px;
  background: #fef2f2;
  color: #dc2626;
  font-weight: 800;
  text-align: center;
}

.pix-code-box {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
}

.pix-code-box textarea {
  width: 100%;
  min-height: 88px;
  resize: none;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px;
  background: #f9fafb;
  color: #111827;
  font: inherit;
  font-size: 12px;
  outline: none;
}

.pix-code-box textarea:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.pix-card button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: #16a34a;
  color: white;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.copy-feedback {
  margin: 10px 0 0;
  color: #047857;
  font-weight: 800;
}

.payment-summary {
  display: grid;
  gap: 10px;
}

.payment-summary p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.payment-summary p:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.payment-summary span {
  color: #6b7280;
}

.payment-summary strong {
  color: #111827;
  text-align: right;
}

.testimonials-card {
  position: relative;
  overflow: visible;
  padding: 20px 22px;
}

.testimonials-card h2 {
  margin-bottom: 18px;
  font-size: 22px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-head img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-head strong {
  display: block;
  margin-bottom: 6px;
  color: #2f3136;
  font-size: 18px;
}

.testimonial-slide p {
  margin: 0;
  color: #2f3136;
  font-size: 16px;
  line-height: 1.55;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: white;
  color: #2f3136;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.testimonial-arrow.prev {
  left: -10px;
}

.testimonial-arrow.next {
  right: -10px;
}

.pix-steps {
  margin: 0;
  padding-left: 20px;
  color: #374151;
  font-size: 13px;
  line-height: 1.9;
}

.customize-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

.customize-modal[hidden],
.checkout-page[hidden],
.native-payment-page[hidden],
.buy-bar[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(100%, 480px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 18px 18px 0 0;
  background: white;
  padding-bottom: 84px;
}

.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: white;
}

.modal-head h2 {
  font-size: 18px;
}

.modal-head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  font-size: 24px;
}

.modal-body {
  padding: 0 16px 18px;
}

.modal-body h3 {
  margin: 14px 0 10px;
  color: #374151;
  font-size: 14px;
}

.modal-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.modal-options.handlebars {
  grid-template-columns: 1fr 1fr;
}

.modal-option {
  display: grid;
  gap: 7px;
  align-items: center;
  padding: 6px;
  border: 2px solid #f3f4f6;
  border-radius: 12px;
  background: white;
  color: #374151;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.modal-option img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.modal-options.handlebars .modal-option img {
  aspect-ratio: 16 / 9;
}

.modal-option.active {
  border-color: var(--red);
  background: #fef2f2;
  color: var(--red);
}

.modal-action {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 16px;
  border-top: 1px solid #f1f5f9;
  background: white;
}

body.is-checkout .top-marquee,
body.is-checkout main,
body.is-checkout footer {
  display: none;
}

@media (max-width: 360px) {
  .price {
    font-size: 26px;
  }

  .choice-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .modal-options {
    grid-template-columns: 1fr;
  }
}
