/* ============================================
   VIP Membership - Ultra Neo Dark 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;1,14..32,400&display=swap');

/* ============================================
   REEMPLAZA el bloque :root en assets/style.css
   ============================================ */

:root {
  --bg-primary: #0d1b2a;
  --bg-secondary: #0f2035;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.07);
  --bg-input: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.09);
  --glass-border-hover: rgba(33,150,243,0.35);
  --border: rgba(255,255,255,0.09);
  --border-focus: #2196f3;
  --text-primary: #f0f6ff;
  --text-secondary: #90aec7;
  --text-muted: #4d6a85;
  --accent: #2196f3;
  --accent-2: #42a5f5;
  --accent-hover: #1565c0;
  --accent-glow: rgba(33,150,243,0.38);
  --accent-glow-soft: rgba(33,150,243,0.12);
  --success: #10b981;
  --success-bg: rgba(16,185,129,0.08);
  --warning: #f59e0b;
  --warning-bg: rgba(245,158,11,0.08);
  --error: #ef4444;
  --error-bg: rgba(239,68,68,0.08);
  --gold: #f59e0b;
  --gold-2: #fbbf24;
  --gold-glow: rgba(245,158,11,0.28);
  --gold-glow-soft: rgba(245,158,11,0.10);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.7);
  --shadow-glow: 0 0 40px rgba(33,150,243,0.14);
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Reemplaza el body::before existente */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(33,150,243,0.11) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(21,101,192,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(245,158,11,0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--accent-hover); }

/* ---- Layout ---- */
.container {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Header ---- */
.site-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(6,6,15,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container,
.site-header .container-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), #d97706);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 16px var(--gold-glow);
  flex-shrink: 0;
}

.header-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 7px 13px;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: var(--transition);
}
.header-back:hover {
  color: var(--text-primary);
  border-color: var(--glass-border-hover);
  background: var(--bg-card-hover);
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding: 72px 0 44px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(251,191,36,0.06));
  border: 1px solid rgba(245,158,11,0.25);
  color: var(--gold-2);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-badge i { font-size: 0.7rem; }

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 30%, var(--gold-2) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 380px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ---- Price Card ---- */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
}

.price-card::after {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -1.5px;
}
.price-amount span {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0;
}

.price-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

/* ---- Features ---- */
.features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.09);
}

.feature-item .check-icon {
  width: 22px;
  height: 22px;
  background: var(--success-bg);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--success);
  font-size: 0.6rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
  letter-spacing: -0.1px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #d97706, var(--gold-2));
  background-size: 200% auto;
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 20px var(--gold-glow), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  color: var(--text-primary);
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
}
.btn-success:hover { transform: translateY(-2px); color: #fff; }

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  box-shadow: 0 4px 16px rgba(239,68,68,0.3);
}
.btn-danger:hover { transform: translateY(-2px); color: #fff; }

.btn-sm {
  padding: 8px 16px;
  font-size: 0.78rem;
  border-radius: var(--radius-xs);
  width: auto;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* ---- Section title ---- */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--glass-border);
}

/* ---- Payment Method Selector ---- */
.payment-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 24px;
}

.payment-option {
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.payment-option:hover {
  border-color: var(--glass-border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.payment-option.active {
  border-color: var(--accent);
  background: var(--accent-glow-soft);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 20px var(--accent-glow);
}

.payment-option .option-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-option .option-icon i {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.payment-option.active .option-icon i {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.payment-option .option-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.payment-option .option-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* ---- Card Payment Section ---- */
.card-payment-section {
  text-align: center;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.card-payment-section p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ---- Crypto Search ---- */
.crypto-search {
  position: relative;
  margin-bottom: 14px;
}
.crypto-search input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: var(--bg-input);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.crypto-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow-soft);
  background: rgba(99,102,241,0.04);
}
.crypto-search .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
}

/* ---- Wallet List ---- */
.wallet-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 20px;
}
.wallet-list::-webkit-scrollbar { width: 3px; }
.wallet-list::-webkit-scrollbar-track { background: transparent; }
.wallet-list::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 3px; }

.wallet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.wallet-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateX(3px);
}
.wallet-item.selected {
  border-color: var(--accent);
  background: var(--accent-glow-soft);
  box-shadow: 0 0 0 1px var(--accent);
}

/* ---- Coin Icon (SVG-based badges) ---- */
.coin-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: -0.5px;
  overflow: hidden;
}
.coin-badge img,
.coin-badge svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.coin-badge.btc  { background: linear-gradient(135deg,#f7931a22,#f7931a44); color:#f7931a; border:1px solid #f7931a44; }
.coin-badge.eth  { background: linear-gradient(135deg,#627eea22,#627eea44); color:#627eea; border:1px solid #627eea44; }
.coin-badge.usdt { background: linear-gradient(135deg,#26a17b22,#26a17b44); color:#26a17b; border:1px solid #26a17b44; }
.coin-badge.usdc { background: linear-gradient(135deg,#2775ca22,#2775ca44); color:#2775ca; border:1px solid #2775ca44; }
.coin-badge.bnb  { background: linear-gradient(135deg,#f3ba2f22,#f3ba2f44); color:#f3ba2f; border:1px solid #f3ba2f44; }
.coin-badge.sol  { background: linear-gradient(135deg,#9945ff22,#14f19544); color:#9945ff; border:1px solid #9945ff44; }
.coin-badge.ltc  { background: linear-gradient(135deg,#bfbbbb22,#bfbbbb44); color:#bfbbbb; border:1px solid #bfbbbb44; }
.coin-badge.doge { background: linear-gradient(135deg,#c2a63322,#c2a63344); color:#c2a633; border:1px solid #c2a63344; }
.coin-badge.trx  { background: linear-gradient(135deg,#eb002522,#eb002544); color:#eb0025; border:1px solid #eb002544; }
.coin-badge.matic,.coin-badge.pol { background: linear-gradient(135deg,#8247e522,#8247e544); color:#8247e5; border:1px solid #8247e544; }
.coin-badge.ada  { background: linear-gradient(135deg,#0033ad22,#0033ad44); color:#4d7ec9; border:1px solid #4d7ec944; }
.coin-badge.xrp  { background: linear-gradient(135deg,#00aae422,#00aae444); color:#00aae4; border:1px solid #00aae444; }
.coin-badge.ton  { background: linear-gradient(135deg,#0088cc22,#0088cc44); color:#0088cc; border:1px solid #0088cc44; }
.coin-badge.avax { background: linear-gradient(135deg,#e8414222,#e8414244); color:#e84142; border:1px solid #e8414244; }
.coin-badge.default { background: var(--bg-input); color: var(--text-muted); border:1px solid var(--glass-border); }

.coin-info { flex: 1; min-width: 0; }
.coin-name  { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); letter-spacing: -0.2px; }
.coin-network { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }

/* ---- Wallet Detail ---- */
.wallet-detail {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.3s ease;
}
.wallet-detail-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.wallet-detail-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.wallet-detail-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.3px; }
.wallet-detail-network { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.wallet-address-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 14px;
  position: relative;
}
.wallet-address-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.wallet-address-text {
  font-family: 'SF Mono','Fira Code','Cascadia Code',monospace;
  font-size: 0.78rem;
  color: var(--text-primary);
  word-break: break-all;
  line-height: 1.6;
  user-select: all;
  padding-right: 72px;
}
.copy-btn {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--bg-card-hover);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.copy-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: var(--glass-border-hover);
}
.copy-btn.copied {
  background: var(--success-bg);
  border-color: rgba(16,185,129,0.4);
  color: var(--success);
}

/* ---- QR Code ---- */
.qr-container {
  text-align: center;
  margin-bottom: 16px;
}
.qr-container canvas,
.qr-container img {
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* ---- Network Warning ---- */
.network-warning {
  background: var(--warning-bg);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.network-warning .warn-icon { color: var(--warning); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.network-warning .warn-text { font-size: 0.78rem; color: var(--warning); line-height: 1.5; }

/* ---- Form ---- */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.form-group label i { color: var(--text-muted); font-size: 0.8rem; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-input);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow-soft);
  background: rgba(99,102,241,0.04);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group .input-error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px var(--error-bg) !important;
}
.form-error {
  color: var(--error);
  font-size: 0.75rem;
  margin-top: 5px;
  display: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.form-error.visible { display: flex; }

/* ---- Instructions ---- */
.instructions {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.instructions h4 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.instructions ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.instructions ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.instructions ol li .step-num {
  width: 20px;
  height: 20px;
  background: var(--accent-glow-soft);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Price Summary (checkout) ---- */
.price-summary {
  text-align: center;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.price-summary::before {
  content: '';
  position: absolute;
  top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
}
.price-summary-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.price-summary-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, #fff, var(--gold-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.price-summary-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- Thank You ---- */
.thankyou-section {
  text-align: center;
  padding: 72px 0;
}
.thankyou-icon-wrap {
  width: 88px;
  height: 88px;
  background: var(--success-bg);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.2rem;
  color: var(--success);
  animation: pulse-success 2s ease infinite;
}

@keyframes pulse-success {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.3); }
  50% { box-shadow: 0 0 0 16px rgba(16,185,129,0); }
}

.thankyou-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.thankyou-section > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  max-width: 380px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.order-id-display {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'SF Mono','Fira Code',monospace;
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 28px;
}
.order-id-display i { color: var(--text-muted); }

/* ---- Error Alert ---- */
.alert-error {
  background: var(--error-bg);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  color: #fca5a5;
  font-size: 0.84rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.alert-error i { flex-shrink: 0; margin-top: 1px; }

/* ---- Admin ---- */
.admin-login {
  max-width: 380px;
  margin: 80px auto;
}
.admin-login h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
}
.admin-header h2 { font-size: 1.2rem; font-weight: 700; }
.admin-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.admin-filters select,
.admin-filters input {
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: inherit;
  transition: var(--transition);
}
.admin-filters input { flex: 1; min-width: 200px; }
.admin-filters select:focus,
.admin-filters input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow-soft);
}

/* ---- Orders Table ---- */
.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.orders-table thead th {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.orders-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: var(--transition);
}
.orders-table tbody tr:hover { background: var(--bg-card-hover); }
.orders-table tbody td {
  padding: 12px 10px;
  color: var(--text-secondary);
  vertical-align: middle;
}
.orders-table .order-id {
  font-family: 'SF Mono','Fira Code',monospace;
  font-size: 0.72rem;
  color: var(--accent);
}

/* ---- Status Badges ---- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.status-pendiente { background: var(--warning-bg); color: var(--warning); border: 1px solid rgba(245,158,11,0.25); }
.status-aprobado  { background: var(--success-bg); color: var(--success); border: 1px solid rgba(16,185,129,0.25); }
.status-rechazado { background: var(--error-bg); color: var(--error); border: 1px solid rgba(239,68,68,0.25); }

/* ---- Action Buttons ---- */
.action-btns { display: flex; gap: 6px; }

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  font-size: 0.84rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 320px;
  width: calc(100% - 32px);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.toast-success { border-color: rgba(16,185,129,0.4); }
.toast.toast-error   { border-color: rgba(239,68,68,0.4); }

/* ---- Footer ---- */
.site-footer {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid var(--glass-border);
  margin-top: 48px;
}
.site-footer p {
  color: var(--text-muted);
  font-size: 0.76rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: var(--glass-border);
  margin: 20px 0;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .price-amount { font-size: 2.6rem; }
  .payment-selector { grid-template-columns: 1fr; }
  .admin-filters { flex-direction: column; }
  .admin-filters input { min-width: 100%; }
  .orders-table { font-size: 0.72rem; }
  .orders-table thead th,
  .orders-table tbody td { padding: 8px 6px; }
  .action-btns { flex-direction: column; }
  .container-wide { padding: 0 14px; }
  .wallet-detail { padding: 18px; }
  .price-card { padding: 28px 20px; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.fade-in-up { animation: fadeInUp 0.55s cubic-bezier(0.4,0,0.2,1) forwards; }
.fade-in-up-delay-1 { animation-delay:0.1s; opacity:0; }
.fade-in-up-delay-2 { animation-delay:0.22s; opacity:0; }
.fade-in-up-delay-3 { animation-delay:0.34s; opacity:0; }

.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

/* ---- No Results ---- */
.no-results {
  text-align: center;
  padding: 48px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.no-results i { font-size: 2rem; opacity: 0.4; }

/* ---- Table scroll ---- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
}