/* ==========================================================================
   WALLETCONNECT STUDIO - ESTILOS PRINCIPALES
   Diseño Premium para Plataforma SaaS de Fidelización & Analíticas
   ========================================================================== */

:root {
  --primary-dark: #0B0F19;
  --primary-navy: #0F172A;
  --secondary-navy: #1E293B;
  --border-subtle: #E2E8F0;
  --border-focus: #3B82F6;
  --accent-blue: #2563EB;
  --accent-blue-light: #EFF6FF;
  --accent-purple: #7C3AED;
  --accent-emerald: #10B981;
  --accent-emerald-subtle: #ECFDF5;
  --accent-amber: #F59E0B;
  --accent-amber-subtle: #FEF3C7;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-app: #F8FAFC;
  --bg-card: #FFFFFF;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition-fast: 0.18s ease;
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-app);
  line-height: 1.5;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

/* ==================== BARRA DE NAVEGACIÓN ==================== */
.app-nav {
  background: var(--primary-navy);
  color: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.logo-symbol {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stepper en Header */
.stepper-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.45;
  transition: var(--transition-fast);
}

.step-indicator.active {
  opacity: 1;
}

.step-indicator.completed {
  opacity: 0.9;
}

.step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}

.step-indicator.active .step-dot {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.6);
}

.step-indicator.completed .step-dot {
  background: var(--accent-emerald);
  border-color: var(--accent-emerald);
}

.step-label {
  font-size: 12px;
  font-weight: 700;
  display: none;
}

@media (min-width: 768px) {
  .step-label {
    display: inline;
  }
}

.step-line {
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--transition-fast);
}

.step-line.active {
  background: var(--accent-emerald);
}

.nav-user-status {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #CBD5E1;
}

/* ==================== CONTENEDOR PRINCIPAL ==================== */
.app-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 60px 24px;
}

.view-section {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.view-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero de Secciones */
.section-hero {
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  border: 1px solid #BFDBFE;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-hero h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
}

/* ==================== VISTA 1: SELECTOR DE SERVICIOS ==================== */
.selector-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 1024px) {
  .selector-layout {
    grid-template-columns: 1fr 360px;
  }
}

.selector-options {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.option-group {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.group-header {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}

.group-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.group-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.group-header p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* Tarjetas de Tipos de Pases (Selector) */
.card-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .card-types-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-type-item {
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  background: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-type-item:hover {
  border-color: #93C5FD;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-type-item.selected {
  border-color: var(--accent-blue);
  background: #F8FAFC;
  box-shadow: 0 0 0 1px var(--accent-blue), var(--shadow-md);
}

.card-type-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.card-type-icon {
  font-size: 22px;
}

.card-type-price {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 2px 8px;
  border-radius: 999px;
}

.card-type-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.card-type-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0;
}

.card-type-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: transparent;
  transition: var(--transition-fast);
}

.card-type-item.selected .card-type-check {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #FFFFFF;
}

/* Lista de Add-ons / Switches */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.addon-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: #FFFFFF;
  transition: var(--transition-fast);
  cursor: pointer;
}

.addon-card:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}

.addon-card.active {
  border-color: #BFDBFE;
  background: #F0F7FF;
}

.addon-info {
  display: flex;
  gap: 14px;
  align-items: center;
}

.addon-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  background: #F1F5F9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-card.active .addon-icon {
  background: #DBEAFE;
}

.addon-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.addon-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-navy);
}

.addon-price-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-blue);
}

.addon-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* Custom Switch */
.switch-control {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.switch-control input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #CBD5E1;
  border-radius: 34px;
  transition: 0.2s;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

input:checked + .switch-slider {
  background-color: var(--accent-blue);
}

input:checked + .switch-slider:before {
  transform: translateX(20px);
}

/* Sidebar de Cotización */
.quote-sidebar {
  position: sticky;
  top: 80px;
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.quote-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.quote-card-header h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.plan-type-pill {
  background: var(--accent-emerald-subtle);
  color: var(--accent-emerald);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.quote-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-item {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #475569;
}

.quote-item strong {
  color: var(--primary-navy);
}

.quote-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 16px 0;
}

.quote-total-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.total-label {
  font-size: 13px;
  font-weight: 800;
  display: block;
}

.total-note {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

.total-amount-wrapper {
  display: flex;
  align-items: baseline;
  color: var(--accent-blue);
}

.total-currency {
  font-size: 20px;
  font-weight: 800;
}

.total-amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.total-period {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 2px;
}

.quote-guarantee {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.35;
}

.guarantee-icon {
  font-size: 16px;
}

/* ==================== VISTA 2: CHECKOUT & REGISTRO ==================== */
.btn-back {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-blue);
  cursor: pointer;
  margin-bottom: 8px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-back:hover {
  text-decoration: underline;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 1024px) {
  .checkout-layout {
    grid-template-columns: 1fr 360px;
  }
}

.checkout-form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.form-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.form-card-subtitle {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-navy);
}

.form-group input,
.form-group select {
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text-main);
  background: #FFFFFF;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.input-hint {
  font-size: 11px;
  color: var(--text-muted);
}

/* Pestañas de Pago */
.payment-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  background: #F1F5F9;
  padding: 4px;
  border-radius: var(--radius-md);
}

.payment-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.payment-tab.active {
  background: #FFFFFF;
  color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.payment-content {
  display: none;
}

.payment-content.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

.pay-instructions {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.pay-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pay-data-row {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--border-subtle);
}

.pay-data-row:last-child {
  border-bottom: none;
  padding-top: 8px;
}

.highlight-price {
  color: var(--accent-blue);
  font-size: 15px;
}

.checkout-actions {
  margin-top: 10px;
}

.terms-legal {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
}

/* Sidebar Resumen de Pedido */
.order-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 80px;
}

.order-summary-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-navy);
}

.order-total-val {
  font-size: 22px;
  color: var(--accent-blue);
}

.order-guarantee-box {
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 16px;
  font-size: 11.5px;
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ==================== VISTA 3: VALIDACIÓN DE PAGO ==================== */
.validation-wrapper {
  max-width: 600px;
  margin: 40px auto;
}

.validation-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.spinner-orbit {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px auto;
}

.orbit-ring {
  width: 100%;
  height: 100%;
  border: 4px solid #E2E8F0;
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}

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

.validation-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.validation-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 24px auto;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: #F1F5F9;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.audit-steps-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 12.5px;
}

.audit-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.audit-step.done {
  color: var(--accent-emerald);
  font-weight: 700;
}

/* Estado de Éxito */
.success-badge-anim {
  width: 68px;
  height: 68px;
  background: var(--accent-emerald);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.15);
  animation: popScale 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popScale {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.text-success {
  color: #059669 !important;
}

.validated-details-card {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.val-row {
  display: flex;
  justify-content: space-between;
}

.badge-active {
  background: #D1FAE5;
  color: #065F46;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==================== VISTA 4: DASHBOARD EN TIEMPO REAL ==================== */
.dashboard-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 20px;
}

.dash-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEE2E2;
  color: #DC2626;
  border: 1px solid #FECACA;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #DC2626;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.dash-title-block h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.dash-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.dash-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Grilla de KPIs */
.kpis-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .kpis-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .kpis-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.kpi-card.highlight-kpi {
  border-color: #A7F3D0;
  background: #F0FDF4;
}

.kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.kpi-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kpi-icon {
  font-size: 20px;
}

.kpi-value-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.kpi-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
}

.text-emerald {
  color: #059669 !important;
}

.kpi-trend {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.kpi-trend.positive {
  background: #ECFDF5;
  color: #059669;
}

.kpi-trend.emerald-badge {
  background: #D1FAE5;
  color: #065F46;
}

.kpi-trend.neutral {
  background: #F1F5F9;
  color: #475569;
}

.kpi-footer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Grilla Central: Gráfico + Pase */
.dash-middle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .dash-middle-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.dash-card-header h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.dash-card-header p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.filter-pill {
  font-size: 11px;
  font-weight: 700;
  background: #F1F5F9;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Gráfico de Barras CSS Reactivo */
.chart-container {
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding-top: 20px;
}

.bar-chart-visual {
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 8px;
}

.chart-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  position: relative;
}

.bar-fill {
  width: 100%;
  max-width: 38px;
  background: #CBD5E1;
  border-radius: 6px 6px 0 0;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
  cursor: pointer;
  position: relative;
}

.bar-fill:hover {
  background: var(--accent-blue);
}

.bar-fill:hover::after {
  content: attr(data-val) " visitas";
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-navy);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.chart-bar-group.highlight .bar-fill {
  background: var(--accent-blue);
}

.bar-day {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Pase Digital en Vivo */
.status-live-chip {
  font-size: 11px;
  font-weight: 800;
  color: #059669;
  background: #ECFDF5;
  padding: 2px 8px;
  border-radius: 999px;
}

.live-pass-display {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  border-radius: var(--radius-md);
  padding: 18px;
  color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pass-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.pass-biz-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.pass-tier-badge {
  background: #FEF08A;
  color: #854D0E;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.pass-owner-info {
  margin-bottom: 14px;
}

.pass-owner-label {
  font-size: 10px;
  color: #BFDBFE;
  display: block;
  text-transform: uppercase;
  font-weight: 600;
}

.pass-owner-name {
  font-size: 16px;
  font-weight: 800;
}

.pass-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  margin-bottom: 14px;
}

.p-metric-label {
  font-size: 9px;
  color: #BFDBFE;
  display: block;
  text-transform: uppercase;
}

.p-metric-val {
  font-size: 14px;
  font-weight: 800;
}

.text-amber {
  color: #FEF08A !important;
}

.pass-qr-sim {
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
  color: #0F172A;
}

.sim-barcode {
  font-family: monospace;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 14px;
  line-height: 1;
}

.sim-code-id {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
}

/* Tabla de Clientes */
.table-header {
  flex-wrap: wrap;
  gap: 12px;
}

.table-search-box input {
  padding: 8px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 13px;
  min-width: 260px;
}

.table-responsive {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}

.data-table th {
  background: #F8FAFC;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.data-table tr:hover td {
  background: #F8FAFC;
}

.client-name-cell {
  font-weight: 700;
  color: var(--primary-navy);
}

.tier-chip {
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
}

.tier-gold { background: #FEF3C7; color: #B45309; }
.tier-silver { background: #E2E8F0; color: #475569; }
.tier-bronze { background: #FFEDD5; color: #C2410C; }

/* Botones y Utilidades */
.btn-primary {
  background: var(--accent-blue);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 10px 18px;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--primary-navy);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  padding: 10px 18px;
  font-size: 13.5px;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background: #F1F5F9;
  border-color: #CBD5E1;
}

.btn-outline-sm {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dash-card .btn-outline-sm {
  border-color: var(--border-subtle);
  color: var(--primary-navy);
}

.btn-outline-sm:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dash-card .btn-outline-sm:hover {
  background: #F1F5F9;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}

.btn-block {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* ==================== MODAL DE SIMULACIÓN ==================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  animation: popScale 0.25s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.modal-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.scan-preview-alert {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12px;
  color: #1E40AF;
  margin-top: 14px;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* ==================== TOAST NOTIFICACIÓN GPS ==================== */
.push-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary-navy);
  color: white;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 360px;
  z-index: 300;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.toast-icon {
  font-size: 20px;
}

.toast-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #CBD5E1;
  margin-bottom: 2px;
}

.toast-content p {
  font-size: 12px;
  margin: 0;
  line-height: 1.35;
  color: #FFFFFF;
}

/* ==========================================================================
   PESTAÑAS DEL DASHBOARD & BOTONES RÁPIDOS
   ========================================================================== */
.btn-scanner-highlight {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-scanner-highlight:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.dash-tabs-nav {
  display: flex;
  gap: 8px;
  background: #E2E8F0;
  padding: 6px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  max-width: 100%;
  overflow-x: auto;
}

.dash-tab-btn {
  flex: 1;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dash-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.6);
}

.dash-tab-btn.active {
  color: var(--accent-blue);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.dash-tab-pane {
  display: block;
}

.dash-tab-pane.hidden {
  display: none !important;
}

/* ==========================================================================
   PERSONALIZADOR VISUAL DE TARJETA & GPS
   ========================================================================== */
.customizer-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}

.customizer-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.card-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.card-section-title h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
}

.step-badge {
  width: 24px;
  height: 24px;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.section-hint {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.color-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.color-input-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.color-input-wrapper input[type="color"] {
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  background: transparent;
}

.color-hex-val {
  font-family: monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
}

.quick-palettes-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.palette-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
}

.palette-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #F1F5F9;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.palette-chip:hover {
  background: #E2E8F0;
  transform: translateY(-1px);
}

.chip-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.divider-line {
  height: 1px;
  background: var(--border-subtle);
  margin: 24px 0;
}

.geo-input-action-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.customizer-actions-bar {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

.save-status-indicator {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-emerald);
}

/* Columna de Preview */
.preview-sticky-box {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-header h3 {
  font-size: 16px;
  font-weight: 800;
}

.live-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-emerald);
  background: var(--accent-emerald-subtle);
  padding: 2px 8px;
  border-radius: 999px;
}

.preview-hint {
  font-size: 12px;
  color: var(--text-muted);
}

.customizer-live-pass {
  background: linear-gradient(135deg, #1E3A8A 0%, #2563EB 100%);
  color: #FFFFFF;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pass-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pass-brand-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pass-brand-icon {
  font-size: 20px;
}

.pass-brand-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pass-body-block {
  display: flex;
  flex-direction: column;
}

.pass-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.pass-user {
  font-size: 18px;
  font-weight: 800;
}

.pass-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.p-stat {
  display: flex;
  flex-direction: column;
}

.p-stat span {
  font-size: 10px;
  opacity: 0.8;
}

.p-stat strong {
  font-size: 15px;
  font-weight: 800;
}

.pass-reward-banner-row {
  background: rgba(255, 255, 255, 0.15);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
}

.reward-tag {
  color: #FEF08A;
}

.pass-code-container {
  background: #FFFFFF;
  color: #0F172A;
  border-radius: var(--radius-sm);
  padding: 10px;
  text-align: center;
  margin-top: 4px;
}

.barcode-sim {
  font-family: monospace;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 14px;
}

.pass-code-text {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Simulación de Notificación de Pantalla Bloqueada */
.lockscreen-simulation {
  background: #090D16;
  border: 1px solid #1E293B;
  border-radius: 20px;
  padding: 18px 14px;
  color: #F8FAFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.lockscreen-notch {
  width: 80px;
  height: 12px;
  background: #000000;
  border-radius: 0 0 10px 10px;
  margin-bottom: 12px;
}

.lockscreen-time {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
}

.lockscreen-date {
  font-size: 11.5px;
  color: #94A3B8;
  margin-bottom: 18px;
}

.lockscreen-notification {
  width: 100%;
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lock-notif-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lock-app-icon {
  width: 16px;
  height: 16px;
  background: #000000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.lock-app-name {
  font-size: 10.5px;
  font-weight: 700;
  color: #CBD5E1;
  flex: 1;
}

.lock-time-ago {
  font-size: 10px;
  color: #64748B;
}

.lock-notif-body {
  font-size: 12px;
  line-height: 1.35;
  color: #FFFFFF;
}

/* ==========================================================================
   STAND DE MESA & QR OFICIAL
   ========================================================================== */
.qr-stand-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.qr-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qr-info-card h2 {
  font-size: 20px;
  font-weight: 800;
}

.qr-info-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.qr-url-box {
  background: #F8FAFC;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
}

.qr-url-box label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.url-copy-row {
  display: flex;
  gap: 8px;
}

.url-copy-row input {
  flex: 1;
  font-family: monospace;
  font-size: 12px;
  padding: 8px 12px;
  background: #FFFFFF;
}

.qr-benefits-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}

.benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-emerald-subtle);
  color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 2px;
}

.benefit-item span {
  color: var(--text-muted);
  line-height: 1.4;
}

.qr-actions-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Mockup de Acrílico */
.qr-stand-mockup-wrapper {
  display: flex;
  justify-content: center;
}

.acrylic-stand {
  width: 320px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15), 0 0 0 6px rgba(226, 232, 240, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.acrylic-stand::after {
  content: '';
  position: absolute;
  bottom: -14px;
  width: 240px;
  height: 12px;
  background: #CBD5E1;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.stand-logo-badge {
  width: 48px;
  height: 48px;
  background: var(--accent-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 8px auto;
}

.stand-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
}

.stand-club-pill {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--accent-blue);
  background: #EFF6FF;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-top: 4px;
}

.stand-body h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.stand-body p {
  font-size: 11.5px;
  color: #64748B;
  margin-bottom: 14px;
}

.stand-qr-frame {
  background: #F8FAFC;
  border: 2px dashed #CBD5E1;
  border-radius: 14px;
  padding: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.stand-qr-frame img {
  width: 170px;
  height: 170px;
  display: block;
  border-radius: 6px;
}

.stand-qr-caption {
  font-size: 11px;
  font-weight: 700;
  color: #64748B;
  margin-top: 6px;
}

.wallet-compat-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.compat-badge {
  font-size: 10.5px;
  font-weight: 700;
  background: #0F172A;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 6px;
}

.stand-footer {
  font-size: 10px;
  color: #94A3B8;
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
  width: 100%;
}

@media (max-width: 900px) {
  .customizer-layout,
  .qr-stand-layout {
    grid-template-columns: 1fr;
  }
  .preview-sticky-box {
    position: static;
  }
}

