/* ============================================
   ROBUX PREMIUM — CSS PRINCIPAL COMPLETO
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold:       #FFD700;
  --gold-dark:  #C8A800;
  --gold-dim:   rgba(255,215,0,0.12);
  --black:      #000000;
  --surface:    #0D0D0D;
  --surface2:   #141414;
  --surface3:   #1C1C1C;
  --surface4:   #242424;
  --border:     rgba(255,215,0,0.1);
  --border2:    rgba(255,215,0,0.22);
  --white:      #FFFFFF;
  --text:       #E8E8E8;
  --muted:      rgba(255,255,255,0.38);
  --red:        #FF4444;
  --green:      #3DCC78;
  --radius:     14px;
  --radius-lg:  20px;
  --shadow-gold: 0 0 40px rgba(255,215,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 20px; }

a { text-decoration: none; color: inherit; }

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

/* ============================================
   LOADING SCREEN
   ============================================ */
#loadingScreen {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loadingScreen.oculto { opacity: 0; visibility: hidden; pointer-events: none; }

.ls-logo {
  width: 76px; height: 76px; border-radius: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  animation: lsPulse 1.3s ease-in-out infinite;
}
.ls-logo::after {
  content: '';
  position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-25deg);
  animation: lsShine 1.9s ease-in-out infinite;
}
@keyframes lsPulse {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,215,0,0.45); }
  50%     { transform: scale(1.08); box-shadow: 0 0 0 18px rgba(255,215,0,0); }
}
@keyframes lsShine { 0% { left:-60%; } 100% { left:130%; } }

.ls-bar-wrap {
  width: 130px; height: 3px;
  background: rgba(255,255,255,0.07); border-radius: 10px; overflow: hidden;
}
.ls-bar { height: 100%; background: var(--gold); border-radius: 10px; width: 0%; transition: width 0.12s linear; }
.ls-txt {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 4px; color: rgba(255,215,0,0.4);
  animation: lsFade 1s ease-in-out infinite alternate;
}
@keyframes lsFade { from { opacity: 0.3; } to { opacity: 1; } }

/* ============================================
   FLASH OVERLAY
   ============================================ */
#flashOverlay {
  position: fixed; inset: 0;
  background: var(--gold); opacity: 0;
  pointer-events: none; z-index: 8000;
}
#flashOverlay.flash-ativo { animation: flashGold 0.45s ease-out forwards; }
@keyframes flashGold { 0% { opacity: 0.5; } 100% { opacity: 0; } }

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 9px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 1.5px;
  position: fixed; top: 0; width: 100%; z-index: 1000;
  white-space: nowrap; overflow: hidden;
}
.topbar-inner {
  display: inline-flex; gap: 40px;
  animation: topbarScroll 18s linear infinite;
}
@keyframes topbarScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 36px; left: 0; width: 100%; z-index: 999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px 20px;
  max-width: 1220px;
  margin: 0 auto;
}

.header-logo { display: flex; align-items: center; gap: 10px; }
.header-logo img { height: 46px; border-radius: 10px; }
.header-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  color: var(--gold); letter-spacing: 1px; line-height: 1;
}
.header-logo-text span { color: var(--white); }

/* Search */
.search-wrap { position: relative; max-width: 420px; width: 100%; margin: 0 auto; }
.search-input {
  width: 100%;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 44px 10px 18px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.search-input::placeholder { color: rgba(255,255,255,0.25); }
.search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,215,0,0.08); }
.search-btn {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.35);
  cursor: pointer; font-size: 0.9rem; transition: color 0.2s;
}
.search-btn:hover { color: var(--gold); }

/* Search results */
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  display: none;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.search-results.aberto { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--surface3); }
.search-result-item img { width: 36px; height: 36px; object-fit: contain; }
.search-result-nome { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.search-result-preco { font-size: 0.75rem; color: var(--green); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; }

/* 🌓 Theme Toggle */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface3);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: rotate(15deg);
}

.btn-suporte {
  display: flex; align-items: center; gap: 7px;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: all 0.2s; text-decoration: none;
}
.btn-suporte:hover { border-color: var(--gold); color: var(--gold); }
.btn-comprar-header {
  background: var(--gold); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 800; letter-spacing: 0.5px;
  padding: 9px 22px; border-radius: 50px; border: none;
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.btn-comprar-header:hover { background: var(--gold-dark); transform: scale(1.04); }

/* Mobile menu */
.menu-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 10px; color: var(--white);
  cursor: pointer; font-size: 1rem;
}

/* ============================================
   BANNER
   ============================================ */
.banner-section { 
  padding-top: 103px;
}
.banner-img-wrap { 
  position: relative; 
  overflow: hidden; 
  border-radius: 0;
  background: var(--black);
}
.banner-img-wrap img { 
  width: 100%; 
  max-height: 500px; 
  object-fit: cover; 
  object-position: center;
  display: block; 
}
.banner-img-wrap::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.35) 100%);
}

/* Desktop */
@media (min-width: 1024px) {
  .banner-section {
    padding-top: 110px;
  }
  .banner-img-wrap {
    background: var(--black);
  }
  .banner-img-wrap img {
    max-height: 450px;
    object-fit: contain;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .banner-section { 
    padding-top: 103px; 
  }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
}
.trust-item i { color: var(--gold); font-size: 0.9rem; }
.trust-item strong { color: var(--white); }

/* ============================================
   PRODUTOS
   ============================================ */
.products-section { padding: 60px 0; background: var(--surface); }

.section-header { text-align: center; margin-bottom: 44px; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 4px;
  color: var(--gold); margin-bottom: 10px;
  padding: 4px 14px;
  border: 1px solid var(--border2);
  border-radius: 30px;
  background: var(--gold-dim);
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); line-height: 1; margin-bottom: 10px; }
.section-title span { color: var(--gold); }
.section-sub { color: var(--muted); font-size: 0.9rem; }

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

/* Card */
.product-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(.19,1,.22,1), border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(255,215,0,0.12), 0 0 0 1px rgba(255,215,0,0.2);
}
.product-card.destaque {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.product-card.esgotado { opacity: 0.5; filter: grayscale(0.5); pointer-events: none; }

.card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: var(--gold); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 30px;
}
.card-badge-esgotado {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  background: var(--red); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 30px;
}

/* Imagem do card */
.card-img-wrap {
  background: var(--surface3);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 12px;
}
.card-img-wrap::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.18), transparent);
  transform: skewX(-20deg);
  animation: cardShine 3.5s ease-in-out infinite;
}
@keyframes cardShine { 0% { left:-100%; } 25% { left:160%; } 100% { left:160%; } }

.card-img {
  max-height: 150px; max-width: 85%;
  object-fit: contain; position: relative; z-index: 1;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1);
}
.product-card:hover .card-img { transform: translateY(-6px) scale(1.06); }
.floating { animation: floatAnim 3.2s ease-in-out infinite; }
@keyframes floatAnim { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Card info */
.card-info { padding: 14px 16px 16px; }
.card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  color: var(--gold); margin-bottom: 6px;
}
.card-rating {
  display: flex; align-items: center; gap: 3px;
  margin-bottom: 10px; font-size: 0.72rem;
}
.card-rating i { color: var(--gold); }
.card-rating span { color: var(--muted); margin-left: 3px; }

.card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.card-price-old { text-decoration: line-through; color: var(--red); font-size: 0.78rem; }
.card-price-new { font-size: 1.6rem; font-weight: 700; color: var(--green); font-family: 'Barlow Condensed', sans-serif; }

/* Card economia */
.card-economia {
  font-size: 0.7rem;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-comprar {
  width: 100%;
  background: var(--surface4);
  color: var(--gold);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 11px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 800; letter-spacing: 0.5px;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  overflow: hidden;
  position: relative;
}
.btn-comprar:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: scale(1.02); }
.btn-indisponivel {
  width: 100%; background: var(--surface4); color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
  padding: 11px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 800; letter-spacing: 0.5px; cursor: not-allowed;
}

/* Ripple dourado */
.ripple-gold {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.45);
  transform: scale(0);
  animation: rippleGold 0.75s linear;
  pointer-events: none;
}
@keyframes rippleGold {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* ============================================
   BENEFÍCIOS
   ============================================ */
.benefits-section { padding: 70px 0; background: var(--black); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 44px;
}
.benefit-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.benefit-card:hover { transform: translateY(-5px); border-color: var(--border2); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-dim); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.2rem; color: var(--gold);
}
.benefit-title {
  font-size: 0.95rem; color: var(--white); margin-bottom: 8px;
}
.benefit-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 70px 0; background: var(--surface); }
.faq-wrap { max-width: 720px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active { border-color: var(--border2); }
.faq-question {
  width: 100%; background: none; border: none;
  color: var(--white); text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.3px;
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { transition: transform 0.3s; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.38s cubic-bezier(.44,1.86,.49,.67);
  color: var(--muted); font-size: 0.85rem; line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 20px 18px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 50px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-logo-img { height: 42px; border-radius: 10px; margin-bottom: 14px; }
.footer-about { font-size: 0.82rem; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 800; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }
.footer-contact-item i { color: var(--gold); width: 16px; }
.footer-bottom {
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }
.footer-pay { display: flex; align-items: center; gap: 8px; }
.pay-tag {
  background: var(--surface3); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 10px;
  font-size: 0.68rem; font-weight: 700; color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px;
}

/* Footer SSL */
.footer-seguro {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 600;
}

/* ============================================
   CHECKOUT MODAL — CORRIGIDO DESKTOP
   ============================================ */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

/* ── BOX PRINCIPAL ── */
.checkout-box {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;          /* DESKTOP: mais largo */
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 80px rgba(255,215,0,0.06), 0 24px 60px rgba(0,0,0,0.9);
  animation: checkoutIn 0.3s cubic-bezier(0.34,1.36,0.64,1);
}
.checkout-box::before {
  content: ''; display: block; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@keyframes checkoutIn { from { transform: scale(0.92) translateY(14px); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── STEP 1 DESKTOP: dois painéis lado a lado ── */
#step1.checkout-step {
  padding: 0 !important;
}

.checkout-painel-esq {
  padding: 32px 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-painel-dir {
  padding: 32px 32px 32px 28px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .checkout-box {
    max-width: 860px;
    max-height: 88vh;
    overflow-y: hidden;
  }

  #step1.checkout-step {
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
  }

  .checkout-painel-esq {
    flex: 1;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    max-height: calc(88vh - 3px);
  }

  .checkout-painel-dir {
    flex: 1;
    overflow-y: auto;
    max-height: calc(88vh - 3px);
  }
}

/* Mobile: coluna única */
@media (max-width: 767px) {
  .checkout-box {
    max-width: 100%;
    border-radius: 16px;
    max-height: 95vh;
    overflow-y: auto;
  }
  #step1.checkout-step {
    display: flex !important;
    flex-direction: column;
  }
  .checkout-painel-esq {
    padding: 18px 18px 10px;
    gap: 10px;
    border-right: none;
    overflow-y: visible;
    max-height: none;
  }
  .checkout-painel-dir {
    padding: 10px 18px 20px;
    overflow-y: visible;
    max-height: none;
  }
  .checkout-painel-dir .checkout-divider {
    display: none;
  }
  .checkout-painel-esq .checkout-cupom-msg {
    margin-bottom: 0;
    min-height: 0;
  }
}

.checkout-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--surface3); border: none; color: var(--muted);
  width: 30px; height: 30px; border-radius: 50%; font-size: 0.85rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 10;
}
.checkout-close:hover { background: var(--red); color: #fff; }

/* Steps que NÃO são o step1 ficam centralizados (QR, loading, etc.) */
.checkout-step { padding: 24px 26px 28px; }

/* Imagem do produto no checkout */
.checkout-produto-img-wrap {
  text-align: center;
  margin-bottom: 4px;
}
.checkout-produto-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 8px;
  display: inline-block;
}

@media (max-width: 767px) {
  .checkout-produto-img { width: 80px; height: 80px; }
}

.checkout-product-title {
  font-size: 1.7rem; color: var(--gold); margin-bottom: 2px;
}
.checkout-delivery {
  color: var(--green); font-size: 0.8rem; font-weight: 600;
  margin-bottom: 8px; display: flex; align-items: center; gap: 6px;
}
.checkout-price { font-size: 2.4rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; font-family: 'Barlow Condensed', sans-serif; }
.checkout-divider { height: 1px; background: var(--border); margin: 16px 0; }
.checkout-label { display: block; font-size: 0.72rem; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.checkout-input {
  width: 100%; background: var(--surface3); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 14px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; margin-bottom: 14px;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.checkout-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,215,0,0.08); }
.checkout-input::placeholder { color: rgba(255,255,255,0.18); }

/* Checkbox promoções */
.checkout-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 16px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.checkout-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.checkout-checkbox-mark {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--border2);
  background: var(--surface3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  font-size: 0.6rem;
  color: transparent;
}
.checkout-checkbox:checked + .checkout-checkbox-mark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.checkout-checkbox-text {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
  font-family: 'DM Sans', sans-serif;
}

/* Checkout comparativo */
.checkout-comparativo {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.checkout-comparativo i { color: var(--red); }
.checkout-comparativo strong { color: var(--red); text-decoration: line-through; }

/* Seletor de quantidade */
.checkout-qty-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 14px;
}
.checkout-qty-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
}
.checkout-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.checkout-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: var(--surface3);
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}
.checkout-qty-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.checkout-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; pointer-events: none; }
.checkout-qty-input {
  width: 48px;
  height: 34px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  outline: none;
}

/* Total */
.checkout-total-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.checkout-total-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.checkout-total-valor {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
}

/* Selos de segurança inline (compacto) */
.checkout-selos-inline {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.checkout-selos-inline span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
  background: rgba(61, 204, 120, 0.06);
  border: 1px solid rgba(61, 204, 120, 0.2);
  padding: 6px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.checkout-selos-inline i {
  font-size: 0.7rem;
}

/* Checkout cupom */
.checkout-cupom-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.checkout-cupom-input {
  flex: 1;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}
.checkout-cupom-input:focus { border-color: var(--gold); }
.checkout-cupom-btn {
  background: var(--surface4);
  color: var(--gold);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
  white-space: nowrap;
}
.checkout-cupom-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.checkout-cupom-msg {
  font-size: 0.68rem;
  margin-bottom: 10px;
  min-height: 18px;
}
.checkout-cupom-msg.sucesso { color: var(--green); }
.checkout-cupom-msg.erro { color: var(--red); }

.checkout-btn-pagar {
  width: 100%; background: var(--gold); color: var(--black); border: none;
  padding: 15px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 900; border-radius: 50px;
  margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer;
}
.checkout-btn-pagar:hover { background: var(--gold-dark); transform: scale(1.02); box-shadow: 0 6px 24px rgba(255,215,0,0.25); }
.checkout-btn-pagar:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.checkout-seguro { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 14px; font-size: 0.7rem; color: var(--muted); }
.checkout-seguro i { color: var(--green); }
.checkout-pay-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
.checkout-pay-row span { font-size: 0.68rem; color: rgba(255,255,255,0.2); }
.checkout-pay-chip { background: var(--surface3); border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px; font-size: 0.68rem; font-weight: 700; color: var(--muted); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 1px; }

/* PIX step */
.checkout-pix-title { font-size: 1.3rem; color: var(--gold); text-align: center; margin-bottom: 4px; }
.checkout-pix-sub { text-align: center; color: var(--muted); font-size: 0.8rem; margin-bottom: 18px; }
.checkout-qr-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; align-items: center; margin-bottom: 14px; }
.checkout-qr-img { width: 180px; height: 180px; border-radius: 10px; border: 3px solid var(--gold); box-shadow: 0 0 28px rgba(255,215,0,0.18); background: #fff; margin-bottom: 12px; }
.checkout-timer-row { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--muted); }
.checkout-timer-row i { color: var(--gold); }
#checkoutTimer { color: var(--gold); font-weight: 700; }
.checkout-copia-card { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; margin-bottom: 14px; }
.checkout-copia-lbl { font-size: 0.67rem; font-weight: 700; color: rgba(255,215,0,0.45); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; font-family: 'Barlow Condensed', sans-serif; }
.checkout-copia-code { font-size: 0.67rem; color: rgba(255,255,255,0.28); word-break: break-all; line-height: 1.6; margin-bottom: 10px; font-family: monospace; }
.checkout-btn-copy { width: 100%; background: var(--surface3); border: 1px solid var(--border2); color: var(--gold); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.8rem; padding: 10px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.2s; }
.checkout-btn-copy:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.checkout-status { display: flex; align-items: center; gap: 12px; background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 13px 16px; }
.checkout-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: checkPulse 1.3s ease-in-out infinite; }
@keyframes checkPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.5); } 50% { box-shadow: 0 0 0 8px rgba(255,215,0,0); } }
.checkout-status p { font-size: 0.8rem; color: var(--muted); }
.checkout-status strong { color: var(--white); }

/* Animação etapas */
.pix-anim-wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 10px 0; }
.pix-anim-icon { font-size: 2.4rem; color: var(--gold); animation: pixSpin 1s linear infinite; }
@keyframes pixSpin { to { transform: rotate(360deg); } }
.pix-steps-list { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.pix-step-item { display: flex; align-items: center; gap: 12px; }
.pix-step-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.62rem; transition: all 0.3s; }
.pix-step-dot.active { border-color: var(--gold); animation: stepPulse 0.8s ease-in-out infinite alternate; }
.pix-step-dot.done { background: var(--gold); border-color: var(--gold); color: var(--black); }
@keyframes stepPulse { from { box-shadow: 0 0 0 0 rgba(255,215,0,0.3); } to { box-shadow: 0 0 0 6px rgba(255,215,0,0); } }
.pix-step-label { font-size: 0.82rem; color: var(--muted); transition: color 0.3s; }
.pix-step-label.active { color: var(--white); font-weight: 600; }
.pix-step-label.done { color: rgba(255,255,255,0.2); }

/* Ondas */
.ondas-wrap { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 16px 0; }
.ondas-ring-wrap { position: relative; width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
.onda { position: absolute; border-radius: 50%; border: 2px solid var(--gold); opacity: 0; animation: ondaExp 2s ease-out infinite; }
.onda:nth-child(1) { width: 36px; height: 36px; animation-delay: 0s; }
.onda:nth-child(2) { width: 60px; height: 60px; animation-delay: 0.55s; }
.onda:nth-child(3) { width: 90px; height: 90px; animation-delay: 1.1s; }
@keyframes ondaExp { 0% { opacity: 0.8; transform: scale(0.5); } 100% { opacity: 0; transform: scale(1); } }
.ondas-icon { font-size: 1.6rem; color: var(--gold); z-index: 2; animation: ondaPulse 1.5s ease-in-out infinite; }
@keyframes ondaPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.ondas-txt { text-align: center; font-size: 0.85rem; color: var(--muted); line-height: 1.7; }
.ondas-txt strong { color: var(--gold); }

/* Sucesso */
.checkout-ok-wrap { text-align: center; padding: 10px 0; }
.checkout-ok-ring { width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--gold); background: var(--gold-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 2.2rem; color: var(--gold); animation: okRing 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes okRing { from { transform: scale(0) rotate(-90deg); } to { transform: scale(1) rotate(0); } }
.checkout-ok-title { font-size: 1.35rem; color: var(--gold); margin-bottom: 8px; }
.checkout-ok-sub { color: var(--muted); font-size: 0.84rem; line-height: 1.7; margin-bottom: 20px; }
.checkout-ok-email { display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(61,204,120,0.08); border: 1px solid rgba(61,204,120,0.2); border-radius: 10px; padding: 12px 16px; font-size: 0.8rem; color: var(--green); margin-bottom: 20px; }
.checkout-btn-fechar { width: 100%; background: var(--surface3); border: 1px solid var(--border); color: var(--white); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.88rem; padding: 13px; border-radius: 50px; cursor: pointer; transition: all 0.2s; }
.checkout-btn-fechar:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================
   CUPOM BAR
   ============================================ */
.cupom-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(61, 204, 120, 0.1);
  border: 1px dashed var(--green);
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--green);
  animation: cupomPulse 2s ease-in-out infinite;
}
.cupom-bar strong {
  color: var(--white);
  background: var(--green);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}
.cupom-btn {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.cupom-btn:hover { background: #fff; color: var(--green); }
@keyframes cupomPulse {
  0%, 100% { border-color: var(--green); }
  50% { border-color: rgba(61, 204, 120, 0.3); }
}

/* ============================================
   DEPOIMENTOS CARROSSEL
   ============================================ */
.depoimentos-section {
  padding: 70px 0;
  background: var(--black);
  overflow: hidden;
}
.depoimentos-carrossel-wrap {
  margin-top: 44px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.depoimentos-track {
  display: flex;
  gap: 20px;
  animation: depoimentoScroll 40s linear infinite;
  width: max-content;
}
.depoimentos-track:hover { animation-play-state: paused; }
@keyframes depoimentoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.depoimento-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-width: 340px;
  max-width: 340px;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.3s;
}
.depoimento-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}
.depoimento-stars { font-size: 1rem; margin-bottom: 12px; }
.depoimento-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.depoimento-autor { display: flex; align-items: center; gap: 10px; }
.depoimento-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  flex-shrink: 0;
}
.depoimento-autor strong { font-size: 0.82rem; color: var(--white); display: block; }
.depoimento-autor span { font-size: 0.7rem; color: var(--green); font-weight: 600; }

/* ============================================
   GARANTIA
   ============================================ */
.garantia-section {
  padding: 60px 0;
  background: var(--surface);
}
.garantia-card {
  background: var(--surface2);
  border: 2px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.garantia-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  color: var(--gold);
}
.garantia-title { font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.garantia-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.garantia-selos { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.garantia-selos span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  background: rgba(61, 204, 120, 0.06);
  border: 1px solid rgba(61, 204, 120, 0.15);
  padding: 8px 14px;
  border-radius: 30px;
}

/* ============================================
   NOTIFICAÇÃO DE VENDAS (PROVA SOCIAL)
   ============================================ */
.notificacao-venda {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 300px;
}
.notificacao-venda.ativo { opacity: 1; transform: translateX(0); }
.notificacao-img { font-size: 1.6rem; flex-shrink: 0; }
.notificacao-info { display: flex; flex-direction: column; gap: 2px; }
.notificacao-nome { font-size: 0.75rem; color: var(--white); font-weight: 700; }
.notificacao-acao { font-size: 0.7rem; color: var(--muted); }
.notificacao-acao strong { color: var(--gold); }
.notificacao-tempo { font-size: 0.65rem; color: rgba(255,255,255,0.25); }

/* ============================================
   ☀️ TEMA CLARO
   ============================================ */
body.tema-claro {
  --gold:       #D4A800;
  --gold-dark:  #B89200;
  --gold-dim:   rgba(212,168,0,0.10);
  --black:      #F5F5F5;
  --surface:    #FFFFFF;
  --surface2:   #F0F0F0;
  --surface3:   #E5E5E5;
  --surface4:   #DADADA;
  --border:     rgba(0,0,0,0.08);
  --border2:    rgba(212,168,0,0.30);
  --white:      #1A1A1A;
  --text:       #1A1A1A;
  --muted:      rgba(0,0,0,0.45);
  --red:        #D63031;
  --green:      #27AE60;
  --shadow-gold: 0 0 40px rgba(212,168,0,0.12);
}
body.tema-claro .header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.tema-claro .topbar { background: var(--gold); color: #fff; }
body.tema-claro .checkout-overlay { background: rgba(0,0,0,0.55); }
body.tema-claro .checkout-box { box-shadow: 0 0 80px rgba(0,0,0,0.08), 0 24px 60px rgba(0,0,0,0.15); }
body.tema-claro .checkout-input::placeholder { color: rgba(0,0,0,0.25); }
body.tema-claro .checkout-qr-img { background: #fff; border: 3px solid var(--gold); }
body.tema-claro .footer-bottom p { color: rgba(0,0,0,0.35); }
body.tema-claro .banner-img-wrap::after {
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.3) 100%);
}
body.tema-claro .search-results { box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
body.tema-claro .ls-logo { color: #fff; }

/* ============================================
   RESPONSIVO GERAL
   ============================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .theme-toggle { width: 34px; height: 34px; font-size: 0.9rem; }
  .topbar { font-size: 0.72rem; }
  .header-inner { grid-template-columns: auto 1fr auto; padding: 10px 16px; }
  .search-wrap { display: none; }
  .search-wrap.mobile-open { display: block; position: absolute; top: 100%; left: 0; right: 0; padding: 10px 16px; background: rgba(0,0,0,0.95); border-bottom: 1px solid var(--border); }
  .btn-suporte { display: none; }
  .menu-toggle { display: flex; }
  .banner-section { padding-top: 103px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 16px; }
  .section-title { font-size: 1.8rem; }
  .depoimento-card { min-width: 280px; max-width: 280px; }
  .garantia-selos { flex-direction: column; align-items: center; }
  .notificacao-venda { bottom: 10px; left: 10px; right: 10px; max-width: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-img-wrap { height: 130px; }
  .card-img { max-height: 110px; }
  .card-name { font-size: 1rem; }
  .card-price-new { font-size: 1.3rem; }
  .btn-comprar { font-size: 0.8rem; padding: 9px; }
  .checkout-step { padding: 20px 18px 24px; }
}