/* VanTeck Store — look tienda online (eBay-like) */
.vt-cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #e8eaf0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.vt-cart-btn:hover {
  border-color: rgba(200,241,53,.4);
  background: rgba(200,241,53,.08);
}
.vt-cart-btn [data-cart-count] {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--lime, #c8f135);
  color: #080a0f;
  font-size: 10px;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
}

.vt-cart-backdrop,
.vt-checkout-backdrop,
.vt-success-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(4px);
  z-index: 900;
}

.vt-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100%;
  background: #0c1018;
  border-left: 1px solid rgba(255,255,255,.1);
  z-index: 910;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.vt-cart-drawer.open { transform: translateX(0); }

.vt-cart-head,
.vt-checkout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.vt-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime, #c8f135);
  margin-bottom: 4px;
}
.vt-cart-head h2,
.vt-checkout-head h2,
.vt-success-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: #fff;
  letter-spacing: .03em;
  margin: 0;
  line-height: 1;
}
.vt-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #94a3b8;
  cursor: pointer;
  font-size: 16px;
}

.vt-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
}
.vt-empty-cart {
  text-align: center;
  color: #e8eaf0;
  font-weight: 700;
  padding: 40px 16px;
  font-size: 15px;
}
.vt-empty-cart span {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  color: #64748b;
  font-size: 13px;
}
.vt-cart-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.vt-cart-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #121822;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.vt-cart-name {
  font-size: 13px;
  font-weight: 700;
  color: #e8eaf0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vt-cart-seller { font-size: 11px; color: #64748b; margin-top: 2px; }
.vt-cart-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--lime, #c8f135);
  margin-top: 2px;
}
.vt-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.vt-qty button {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #e8eaf0;
  cursor: pointer;
  font-weight: 700;
}
.vt-qty span { font-size: 13px; font-weight: 700; min-width: 16px; text-align: center; }
.vt-remove {
  width: auto !important;
  padding: 0 8px !important;
  font-size: 11px !important;
  color: #f87171 !important;
  border-color: rgba(248,113,113,.25) !important;
  margin-left: auto;
}

.vt-cart-foot {
  padding: 14px 16px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: #090c13;
}
.vt-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  color: #94a3b8;
  font-size: 13px;
}
.vt-cart-total-row strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #fff;
}
.vt-cart-note {
  font-size: 11px;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.45;
}

.vt-btn-buy {
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  background: var(--lime, #c8f135);
  color: #080a0f;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s, transform .15s;
}
.vt-btn-buy:hover { background: #d7f64e; }
.vt-btn-buy:disabled { opacity: .6; cursor: not-allowed; }
.vt-btn-ghost {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: #cbd5e1;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

/* Checkout */
.vt-checkout {
  position: fixed;
  inset: 0;
  z-index: 920;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vt-checkout-card {
  width: min(880px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #0d1117;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0,0,0,.65);
}
.vt-checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 800px) {
  .vt-checkout-grid { grid-template-columns: 1.15fr .85fr; }
}
.vt-checkout-form {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.vt-checkout-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8491a5;
}
.vt-checkout-form input,
.vt-checkout-form textarea {
  border-radius: 11px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #e8eaf0;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}
.vt-checkout-form input:focus,
.vt-checkout-form textarea:focus {
  border-color: rgba(200,241,53,.4);
}
.vt-pay-methods {
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.vt-pay-methods legend {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8491a5;
  padding: 0 6px;
}
.vt-pay-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  padding: 10px 8px;
  border-radius: 10px;
  color: #e8eaf0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: pointer;
}
.vt-pay-option:hover { background: rgba(255,255,255,.04); }
.vt-pay-option input { width: 16px; height: 16px; accent-color: #c8f135; }
.vt-pay-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px !important;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
  color: inherit !important;
  transition: border-color .2s, background .2s;
}
.vt-pay-card:has(input:checked) {
  border-color: rgba(200,241,53,.45);
  background: rgba(200,241,53,.07);
}
.vt-pay-card input {
  width: 16px;
  height: 16px;
  padding: 0;
  accent-color: var(--lime, #c8f135);
  flex-shrink: 0;
}
.vt-pay-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.vt-pay-card-body strong {
  color: #e8eaf0;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.vt-pay-card-body small {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.vt-pay-panel { margin-top: 4px; }
.vt-qr-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  padding: 14px;
  text-align: center;
}
.vt-qr-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 10px;
}
.vt-qr-img {
  width: min(220px, 70vw);
  height: auto;
  border-radius: 12px;
  background: #fff;
  display: block;
  margin: 0 auto;
}
.vt-qr-hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: #8491a5;
  line-height: 1.5;
}
.vt-mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 11px;
  background: #009ee3;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}
.vt-mp-btn:hover { filter: brightness(1.06); }
.vt-error {
  color: #f87171;
  font-size: 12px;
  margin: 0;
}
.vt-checkout-summary {
  padding: 18px 20px 22px;
  background: rgba(255,255,255,.02);
}
.vt-summary-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}
.vt-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #94a3b8;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.vt-summary-row strong { color: #e8eaf0; }
.vt-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 13px;
}
.vt-summary-total strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--lime, #c8f135);
}
.vt-summary-perks {
  margin: 16px 0 0;
  padding: 0 0 0 18px;
  color: #8491a5;
  font-size: 12px;
  line-height: 1.7;
}

.vt-success-backdrop { z-index: 930; }
.vt-success {
  position: fixed;
  inset: 0;
  z-index: 940;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vt-success-card {
  width: min(420px, 100%);
  background: #0d1117;
  border: 1px solid rgba(200,241,53,.25);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.vt-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(200,241,53,.15);
  color: var(--lime, #c8f135);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}
.vt-success-id {
  margin-top: 10px;
  color: #94a3b8;
  font-size: 13px;
}
.vt-success-id strong { color: var(--lime, #c8f135); }
.vt-success-msg {
  margin-top: 12px;
  color: #8491a5;
  font-size: 13px;
  line-height: 1.65;
}
.vt-success-actions { margin-top: 18px; }

/* Pantalla de pago (envío de comprobante) */
.vt-pay-screen {
  position: relative;
  width: min(460px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #0d1117;
  border: 1px solid rgba(200,241,53,.22);
  border-radius: 22px;
  padding: 24px 22px 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.vt-pay-close {
  position: absolute;
  top: 14px;
  right: 14px;
}
.vt-pay-head { text-align: center; margin-bottom: 16px; }
.vt-pay-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime, #c8f135);
  background: rgba(200,241,53,.12);
  border: 1px solid rgba(200,241,53,.25);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 10px;
}
.vt-pay-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #fff;
  margin: 0;
  letter-spacing: .03em;
}
.vt-pay-sub {
  font-size: 13px;
  color: #8491a5;
  margin-top: 6px;
  line-height: 1.5;
}
.vt-pay-amount,
.vt-pay-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.vt-pay-amount { border-color: rgba(200,241,53,.28); background: rgba(200,241,53,.05); }
.vt-pay-amount-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8491a5;
}
.vt-pay-amount-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  line-height: 1;
  color: var(--lime, #c8f135);
  margin-top: 2px;
}
.vt-pay-code-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: .04em;
  margin-top: 2px;
  word-break: break-all;
}
.vt-copy-btn {
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #e8eaf0;
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.vt-copy-btn:hover { border-color: rgba(200,241,53,.4); }
.vt-pay-steps {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vt-pay-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.45;
}
.vt-pay-step span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200,241,53,.15);
  color: var(--lime, #c8f135);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-pay-method {
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  margin-bottom: 14px;
}
.vt-pay-actions { display: flex; flex-direction: column; gap: 8px; }
.vt-pay-foot {
  margin-top: 12px;
  font-size: 11px;
  color: #64748b;
  text-align: center;
  line-height: 1.5;
}

/* Checkout steps + confianza */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.vt-steps {
  display: flex;
  gap: 8px;
  padding: 0 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.vt-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  padding: 8px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.02);
}
.vt-step span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,.14);
}
.vt-step.is-active {
  color: #e8eaf0;
  background: rgba(200,241,53,.08);
}
.vt-step.is-active span {
  background: var(--lime, #c8f135);
  color: #080a0f;
  border-color: transparent;
}
.vt-step.is-done { color: #94a3b8; }
.vt-step.is-done span {
  background: rgba(200,241,53,.2);
  color: var(--lime, #c8f135);
  border-color: transparent;
}
.vt-step-intro {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 12px;
  line-height: 1.45;
}
.vt-step-actions {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  margin-top: 8px;
}
.vt-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.vt-trust-row span {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 4px 8px;
}
.vt-pay-hint {
  margin: 10px 0 4px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.45;
}
.vt-secure-badge {
  margin-top: 14px;
  font-size: 11px;
  color: #8491a5;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.03);
}

/* Confirmación de pedido */
.vt-order-screen {
  position: relative;
  width: min(480px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #0d1117;
  border: 1px solid rgba(200,241,53,.2);
  border-radius: 22px;
  padding: 24px 22px 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7);
}
.vt-order-head { text-align: center; margin-bottom: 16px; }
.vt-order-check {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(200,241,53,.15);
  color: var(--lime, #c8f135);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vt-order-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #fff;
  margin: 0;
  letter-spacing: .03em;
}
.vt-order-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  margin-bottom: 10px;
}
.vt-order-total { border-color: rgba(200,241,53,.28); background: rgba(200,241,53,.05); }
.vt-order-pay-tag {
  font-size: 11px;
  font-weight: 800;
  color: #080a0f;
  background: var(--lime, #c8f135);
  border-radius: 999px;
  padding: 6px 10px;
}
.vt-order-items {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.vt-order-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px;
  color: #cbd5e1;
}
.vt-order-items strong { color: #e8eaf0; white-space: nowrap; }
.vt-order-timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.vt-tl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #64748b;
}
.vt-tl span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.vt-tl.is-done { color: #94a3b8; }
.vt-tl.is-done span { background: var(--lime, #c8f135); }
.vt-tl.is-now { color: #e8eaf0; font-weight: 700; }
.vt-tl.is-now span {
  background: var(--lime, #c8f135);
  box-shadow: 0 0 0 4px rgba(200,241,53,.18);
}

@media (max-width: 640px) {
  .vt-step { font-size: 11px; }
  .vt-step-actions { grid-template-columns: 1fr; }
}

.vt-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: #121822;
  border: 1px solid rgba(200,241,53,.35);
  color: #e8eaf0;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.vt-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body.vt-store-open { overflow: hidden; }

/* Product card buy actions (eBay style) */
.mp-cta .buy-now,
.vt-buy-now {
  background: #0064d2 !important;
  color: #fff !important;
}
.mp-cta .buy-now:hover,
.vt-buy-now:hover { filter: brightness(1.08); }
.mp-cta .add-cart,
.vt-add-cart {
  background: rgba(255,255,255,.08) !important;
  color: #e8eaf0 !important;
  border: 1px solid rgba(255,255,255,.14) !important;
}
.mp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.mp-meta span {
  font-size: 10px;
  color: #64748b;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  padding: 2px 6px;
}
.store-strip {
  background: linear-gradient(90deg, rgba(0,100,210,.18), rgba(200,241,53,.08));
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 12px;
  color: #cbd5e1;
  padding: 8px 16px;
  text-align: center;
}
.store-strip strong { color: #fff; }

/* Header retail compartido */
.top-trust {
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #070a10;
  position: relative;
  z-index: 30;
}
.top-trust-item {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-trust-item strong { color: #e8eaf0; font-weight: 700; }
.store-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8,10,15,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.store-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.store-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 4px 4px 4px 12px;
}
.store-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: #e8eaf0;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
.store-search input::placeholder { color: #64748b; }
.store-search button {
  border: 0;
  border-radius: 9px;
  background: var(--lime, #c8f135);
  color: #080a0f;
  font-weight: 800;
  font-size: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
.store-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cat-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 0 0 10px;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  flex-shrink: 0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}
.cat-nav a:hover, .cat-nav a.is-hot {
  color: #080a0f;
  background: var(--lime, #c8f135);
  border-color: var(--lime, #c8f135);
}

/* Beneficios tipo tienda (Mi PC Lista) */
.shop-benefits {
  position: relative;
  z-index: 1;
  padding: 18px 0 8px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(180deg, rgba(200,241,53,.03), transparent);
}
.shop-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) {
  .shop-benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .shop-benefits-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.shop-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}
.shop-benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lime, #c8f135);
  background: rgba(200,241,53,.1);
  border: 1px solid rgba(200,241,53,.2);
}
.shop-benefit strong {
  display: block;
  font-size: 13px;
  color: #e8eaf0;
  font-weight: 800;
}
.shop-benefit span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.35;
}

.vt-bank-block { text-align: left; }
.vt-bank-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}
.vt-bank-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.vt-bank-row > span:first-child {
  width: 100%;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
}
.vt-bank-row strong {
  flex: 1;
  font-size: 13px;
  color: #e8eaf0;
  word-break: break-all;
  text-align: left;
}
