/* ═══════════════════════════════════════════════════
   VirtualCards Pro — Cyber Dark Theme
   Font: Space Mono (mono) + Syne (display)
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syne:wght@400;600;700;800&display=swap');

:root {
  --vcp-primary:   #00ff88;
  --vcp-secondary: #00ccff;
  --vcp-bg:        #080b0f;
  --vcp-bg2:       #0d1117;
  --vcp-bg3:       #111820;
  --vcp-border:    rgba(0,255,136,.15);
  --vcp-border2:   rgba(0,255,136,.3);
  --vcp-text:      #c9d1d9;
  --vcp-text-dim:  #6e7681;
  --vcp-red:       #ff4d6d;
  --vcp-gold:      #ffd700;
  --vcp-radius:    12px;
  --vcp-font-mono: 'Space Mono', monospace;
  --vcp-font-sans: 'Syne', sans-serif;
  --glow:          0 0 20px rgba(0,255,136,.25);
  --glow-strong:   0 0 40px rgba(0,255,136,.4);
}

/* ── Reset for VCP pages ── */
body.vcp-page { background: var(--vcp-bg) !important; color: var(--vcp-text) !important; font-family: var(--vcp-font-sans) !important; margin: 0; }
body.vcp-page .site-header, body.vcp-page .entry-header, body.vcp-page .entry-footer,
body.vcp-page .site-footer, body.vcp-page header.site-header, body.vcp-page footer.site-footer,
body.vcp-page .page-title, body.vcp-page .wp-block-post-title { display: none !important; }
body.vcp-page .entry-content, body.vcp-page .page-content, body.vcp-page main,
body.vcp-page article, body.vcp-page .content-area { padding: 0 !important; margin: 0 !important; background: transparent !important; max-width: none !important; }
body.vcp-page * { box-sizing: border-box; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; } ::-webkit-scrollbar-track { background: var(--vcp-bg2); }
::-webkit-scrollbar-thumb { background: var(--vcp-primary); border-radius: 3px; }

/* ═══════════════════════════════════════════════
   NAV BAR
═══════════════════════════════════════════════ */
.vcp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,11,15,.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vcp-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px;
}
.vcp-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.vcp-nav-logo img { height: 36px; }
.vcp-nav-logo-text { font-family: var(--vcp-font-sans); font-weight: 800; font-size: 18px;
  color: var(--vcp-primary); letter-spacing: -0.5px; text-shadow: var(--glow); }
.vcp-nav-logo-text span { color: var(--vcp-text); }
.vcp-nav-links { display: flex; align-items: center; gap: 4px; }
.vcp-nav-links a {
  font-family: var(--vcp-font-mono); font-size: 12px; font-weight: 700;
  color: var(--vcp-text-dim); text-decoration: none; padding: 8px 14px;
  border-radius: 6px; transition: all .2s; letter-spacing: .5px; text-transform: uppercase;
}
.vcp-nav-links a:hover, .vcp-nav-links a.active { color: var(--vcp-primary); background: rgba(0,255,136,.08); }
.vcp-nav-right { display: flex; align-items: center; gap: 12px; }
.vcp-nav-balance { font-family: var(--vcp-font-mono); font-size: 13px; color: var(--vcp-primary);
  background: rgba(0,255,136,.08); border: 1px solid var(--vcp-border); padding: 6px 14px; border-radius: 20px; }
.vcp-nav-balance::before { content: '💳 '; }
.vcp-btn-logout { font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim);
  background: none; border: 1px solid rgba(255,255,255,.1); padding: 7px 14px; border-radius: 6px;
  cursor: pointer; text-transform: uppercase; letter-spacing: .5px; transition: all .2s; }
.vcp-btn-logout:hover { border-color: var(--vcp-red); color: var(--vcp-red); }
.vcp-nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.vcp-nav-hamburger span { width: 22px; height: 2px; background: var(--vcp-text); border-radius: 2px; transition: all .3s; }

/* ── VIP Tier Badge ── */
.vcp-tier-badge { font-family: var(--vcp-font-mono); font-size: 10px; font-weight: 700;
  border: 1px solid; padding: 3px 8px; border-radius: 20px; letter-spacing: 1px; }

/* ═══════════════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════════════ */
.vcp-page-wrap { padding-top: 64px; min-height: 100vh; }
.vcp-container  { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.vcp-inner      { padding: 40px 0; }

/* ═══════════════════════════════════════════════
   HOMEPAGE
═══════════════════════════════════════════════ */
.vcp-home-wrap { min-height: 100vh; display: flex; flex-direction: column; background: var(--vcp-bg); overflow: hidden; position: relative; }
.vcp-home-grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(0,255,136,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,255,136,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.vcp-home-glow { position: fixed; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,136,.08) 0%, transparent 70%);
  top: -100px; left: 50%; transform: translateX(-50%); pointer-events: none; z-index: 0; }

/* Hero */
.vcp-hero { position: relative; z-index: 1; flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.vcp-hero-inner { max-width: 800px; }
.vcp-hero-eyebrow { font-family: var(--vcp-font-mono); font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--vcp-primary); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px; }
.vcp-hero-eyebrow::before, .vcp-hero-eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--vcp-primary); display: block; }
.vcp-hero h1 { font-family: var(--vcp-font-sans); font-size: clamp(40px, 7vw, 80px); font-weight: 800;
  line-height: 1.05; margin: 0 0 24px; letter-spacing: -2px; }
.vcp-hero h1 .line-1 { color: #fff; display: block; }
.vcp-hero h1 .line-2 { color: var(--vcp-primary); display: block; text-shadow: var(--glow-strong); }
.vcp-hero p { font-size: 18px; color: var(--vcp-text-dim); margin: 0 0 40px; line-height: 1.6; max-width: 560px; margin-left: auto; margin-right: auto; }
.vcp-hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.vcp-btn { font-family: var(--vcp-font-sans); font-weight: 700; font-size: 15px; padding: 14px 32px;
  border-radius: 8px; border: none; cursor: pointer; transition: all .25s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; letter-spacing: -.2px; }
.vcp-btn-primary { background: var(--vcp-primary); color: #000; }
.vcp-btn-primary:hover { background: #00ff99; box-shadow: var(--glow-strong); transform: translateY(-2px); }
.vcp-btn-ghost { background: transparent; color: var(--vcp-text); border: 1px solid rgba(255,255,255,.15); }
.vcp-btn-ghost:hover { border-color: var(--vcp-primary); color: var(--vcp-primary); background: rgba(0,255,136,.05); }
.vcp-btn-danger { background: var(--vcp-red); color: #fff; }
.vcp-btn-danger:hover { opacity: .85; }
.vcp-btn-sm { font-size: 12px; padding: 8px 18px; border-radius: 6px; }
.vcp-btn-full { width: 100%; justify-content: center; }
.vcp-btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* Features */
.vcp-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 24px 60px; position: relative; z-index: 1; max-width: 900px; margin: 0 auto; width: 100%; }
.vcp-feat-card { background: var(--vcp-bg2); border: 1px solid var(--vcp-border); border-radius: var(--vcp-radius);
  padding: 28px; text-align: center; transition: all .3s; }
.vcp-feat-card:hover { border-color: var(--vcp-border2); transform: translateY(-4px); box-shadow: var(--glow); }
.vcp-feat-icon { font-size: 32px; margin-bottom: 14px; }
.vcp-feat-title { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 8px; }
.vcp-feat-desc { font-size: 13px; color: var(--vcp-text-dim); line-height: 1.5; }

/* Home Footer */
.vcp-home-footer { position: relative; z-index: 1; text-align: center; padding: 20px;
  font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim);
  border-top: 1px solid var(--vcp-border); }

/* ═══════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════ */
.vcp-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(8px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.vcp-modal-overlay.active { opacity: 1; pointer-events: all; }
.vcp-modal { background: var(--vcp-bg2); border: 1px solid var(--vcp-border); border-radius: 16px;
  width: 100%; max-width: 420px; padding: 40px; position: relative;
  transform: translateY(20px); transition: transform .3s;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 60px rgba(0,255,136,.05); }
.vcp-modal-overlay.active .vcp-modal { transform: translateY(0); }
.vcp-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none;
  color: var(--vcp-text-dim); cursor: pointer; font-size: 20px; width: 32px; height: 32px;
  border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.vcp-modal-close:hover { background: rgba(255,255,255,.05); color: #fff; }
.vcp-modal-logo { text-align: center; margin-bottom: 28px; }
.vcp-modal-logo-text { font-family: var(--vcp-font-sans); font-weight: 800; font-size: 22px; color: var(--vcp-primary); text-shadow: var(--glow); }
.vcp-modal-tabs { display: flex; background: var(--vcp-bg3); border-radius: 8px; padding: 4px; margin-bottom: 28px; gap: 4px; }
.vcp-modal-tab { flex: 1; font-family: var(--vcp-font-sans); font-weight: 600; font-size: 14px;
  padding: 10px; border: none; background: none; color: var(--vcp-text-dim); cursor: pointer;
  border-radius: 6px; transition: all .2s; }
.vcp-modal-tab.active { background: var(--vcp-bg2); color: var(--vcp-primary); }

/* Forms */
.vcp-form-group { margin-bottom: 16px; }
.vcp-form-group label { display: block; font-family: var(--vcp-font-mono); font-size: 11px;
  color: var(--vcp-text-dim); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.vcp-input { width: 100%; background: var(--vcp-bg3); border: 1px solid rgba(255,255,255,.08);
  color: var(--vcp-text); font-family: var(--vcp-font-sans); font-size: 15px;
  padding: 12px 14px; border-radius: 8px; outline: none; transition: all .2s; }
.vcp-input:focus { border-color: var(--vcp-primary); box-shadow: 0 0 0 3px rgba(0,255,136,.1); }
.vcp-input::placeholder { color: var(--vcp-text-dim); }
select.vcp-input { cursor: pointer; }
textarea.vcp-input { resize: vertical; min-height: 80px; }
.vcp-form-note { font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim); margin-top: 6px; }
.vcp-form-divider { text-align: center; font-family: var(--vcp-font-mono); font-size: 11px;
  color: var(--vcp-text-dim); margin: 12px 0; position: relative; }
.vcp-form-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.06); }
.vcp-form-divider span { background: var(--vcp-bg2); padding: 0 12px; position: relative; }
.vcp-ref-row { display: flex; gap: 8px; }
.vcp-alert { padding: 12px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: none; }
.vcp-alert.success { background: rgba(0,255,136,.08); border: 1px solid rgba(0,255,136,.3); color: var(--vcp-primary); }
.vcp-alert.error   { background: rgba(255,77,109,.08); border: 1px solid rgba(255,77,109,.3); color: var(--vcp-red); }
.vcp-alert.show    { display: block; }

/* ═══════════════════════════════════════════════
   DASHBOARD SIDEBAR NAV
═══════════════════════════════════════════════ */
.vcp-dashboard { display: grid; grid-template-columns: 240px 1fr; gap: 0; min-height: calc(100vh - 64px); }
.vcp-sidebar { background: var(--vcp-bg2); border-right: 1px solid var(--vcp-border); padding: 32px 16px; position: sticky; top: 64px; height: calc(100vh - 64px); overflow-y: auto; }
.vcp-sidebar-user { padding: 20px 12px 24px; border-bottom: 1px solid var(--vcp-border); margin-bottom: 16px; }
.vcp-sidebar-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--vcp-primary), var(--vcp-secondary));
  display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; color: #000; margin-bottom: 10px; }
.vcp-sidebar-name { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 4px; }
.vcp-sidebar-email { font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim); word-break: break-all; }
.vcp-sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.vcp-sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--vcp-text-dim); text-decoration: none; transition: all .2s; }
.vcp-sidebar-nav a .nav-icon { font-size: 16px; width: 20px; text-align: center; }
.vcp-sidebar-nav a:hover, .vcp-sidebar-nav a.active { background: rgba(0,255,136,.08); color: var(--vcp-primary); }
.vcp-sidebar-nav .nav-section { font-family: var(--vcp-font-mono); font-size: 10px; color: var(--vcp-text-dim);
  text-transform: uppercase; letter-spacing: 1px; padding: 16px 14px 6px; }

/* ── Dashboard Main ── */
.vcp-dash-main { padding: 32px; background: var(--vcp-bg); }
.vcp-dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.vcp-dash-title { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.vcp-dash-title span { color: var(--vcp-primary); }

/* Stat Cards */
.vcp-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.vcp-stat-card { background: var(--vcp-bg2); border: 1px solid var(--vcp-border); border-radius: var(--vcp-radius); padding: 24px; position: relative; overflow: hidden; }
.vcp-stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--vcp-primary), transparent); }
.vcp-stat-card.highlight::before { background: linear-gradient(90deg, var(--vcp-gold), transparent); }
.vcp-stat-label { font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.vcp-stat-value { font-family: var(--vcp-font-sans); font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.vcp-stat-value.green { color: var(--vcp-primary); text-shadow: var(--glow); }
.vcp-stat-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 36px; opacity: .15; }
.vcp-stat-change { font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim); margin-top: 6px; }

/* Cards */
.vcp-card { background: var(--vcp-bg2); border: 1px solid var(--vcp-border); border-radius: var(--vcp-radius); padding: 28px; margin-bottom: 24px; }
.vcp-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.vcp-card-title { font-weight: 700; font-size: 16px; color: #fff; display: flex; align-items: center; gap: 8px; }
.vcp-card-title::before { content: ''; width: 3px; height: 18px; background: var(--vcp-primary); border-radius: 2px; }

/* ═══════════════════════════════════════════════
   MARKETPLACE TABLE
═══════════════════════════════════════════════ */
.vcp-market-header { margin-bottom: 28px; }
.vcp-market-title { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.vcp-market-subtitle { font-family: var(--vcp-font-mono); font-size: 12px; color: var(--vcp-text-dim); }
.vcp-market-filters { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
.vcp-filter-btn { font-family: var(--vcp-font-mono); font-size: 11px; font-weight: 700; padding: 8px 16px;
  border-radius: 20px; border: 1px solid rgba(255,255,255,.1); background: none;
  color: var(--vcp-text-dim); cursor: pointer; transition: all .2s; text-transform: uppercase; letter-spacing: .5px; }
.vcp-filter-btn.active, .vcp-filter-btn:hover { border-color: var(--vcp-primary); color: var(--vcp-primary); background: rgba(0,255,136,.06); }
.vcp-market-search { margin-left: auto; }
.vcp-market-search .vcp-input { width: 220px; font-size: 13px; padding: 9px 14px; }
.vcp-table-wrap { overflow-x: auto; border-radius: var(--vcp-radius); border: 1px solid var(--vcp-border); }
.vcp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.vcp-table thead th { background: var(--vcp-bg3); font-family: var(--vcp-font-mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 1px; color: var(--vcp-text-dim); padding: 14px 16px;
  text-align: left; border-bottom: 1px solid var(--vcp-border); white-space: nowrap; }
.vcp-table tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: background .2s; }
.vcp-table tbody tr:last-child { border-bottom: none; }
.vcp-table tbody tr:hover { background: rgba(0,255,136,.03); }
.vcp-table td { padding: 14px 16px; vertical-align: middle; color: var(--vcp-text); }
.vcp-card-logo { width: 36px; height: 36px; border-radius: 8px; object-fit: cover; background: var(--vcp-bg3); border: 1px solid var(--vcp-border); }
.vcp-card-logo-placeholder { width: 36px; height: 36px; border-radius: 8px; background: linear-gradient(135deg, #0d1117, #111820);
  border: 1px solid var(--vcp-border); display: inline-flex; align-items: center; justify-content: center; font-size: 16px; }
.vcp-bin { font-family: var(--vcp-font-mono); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 1px; }
.vcp-price { font-family: var(--vcp-font-mono); font-weight: 700; font-size: 15px; color: var(--vcp-primary); }
.vcp-qty { font-family: var(--vcp-font-mono); font-size: 13px; }
.vcp-qty.low { color: var(--vcp-red); }
.vcp-qty.medium { color: var(--vcp-gold); }
.vcp-qty.good { color: var(--vcp-primary); }
.vcp-expiry { font-family: var(--vcp-font-mono); font-size: 12px; color: var(--vcp-text-dim); }
.vcp-badge { display: inline-block; font-family: var(--vcp-font-mono); font-size: 9px; font-weight: 700;
  padding: 3px 7px; border-radius: 4px; letter-spacing: 1px; text-transform: uppercase; }
.vcp-badge-new  { background: rgba(0,204,255,.1); color: var(--vcp-secondary); border: 1px solid rgba(0,204,255,.3); }
.vcp-badge-hot  { background: rgba(255,77,109,.1); color: var(--vcp-red); border: 1px solid rgba(255,77,109,.3); }
.vcp-badge-low  { background: rgba(255,215,0,.1); color: var(--vcp-gold); border: 1px solid rgba(255,215,0,.3); }
.vcp-stars { color: var(--vcp-gold); font-size: 12px; letter-spacing: 1px; }

/* Cart Sidebar */
.vcp-cart-sidebar {
  position: fixed; right: -380px; top: 64px; bottom: 0; width: 380px;
  background: var(--vcp-bg2); border-left: 1px solid var(--vcp-border);
  z-index: 900; transition: right .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.vcp-cart-sidebar.open { right: 0; }
.vcp-cart-head { padding: 24px; border-bottom: 1px solid var(--vcp-border); display: flex; align-items: center; justify-content: space-between; }
.vcp-cart-head-title { font-weight: 700; font-size: 18px; color: #fff; }
.vcp-cart-close { background: none; border: none; color: var(--vcp-text-dim); cursor: pointer; font-size: 22px; transition: color .2s; }
.vcp-cart-close:hover { color: #fff; }
.vcp-cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.vcp-cart-item { display: flex; align-items: center; gap: 12px; padding: 14px; background: var(--vcp-bg3); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--vcp-border); }
.vcp-cart-item-info { flex: 1; }
.vcp-cart-item-name { font-weight: 600; font-size: 13px; color: #fff; margin-bottom: 3px; }
.vcp-cart-item-price { font-family: var(--vcp-font-mono); font-size: 13px; color: var(--vcp-primary); }
.vcp-cart-item-remove { background: none; border: none; color: var(--vcp-text-dim); cursor: pointer; font-size: 16px; transition: color .2s; }
.vcp-cart-item-remove:hover { color: var(--vcp-red); }
.vcp-cart-footer { padding: 20px; border-top: 1px solid var(--vcp-border); }
.vcp-cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.vcp-cart-total-label { font-family: var(--vcp-font-mono); font-size: 12px; color: var(--vcp-text-dim); text-transform: uppercase; }
.vcp-cart-total-val { font-family: var(--vcp-font-mono); font-size: 22px; font-weight: 700; color: var(--vcp-primary); }
.vcp-cart-btn { position: fixed; bottom: 32px; right: 32px; background: var(--vcp-primary); color: #000;
  border: none; width: 56px; height: 56px; border-radius: 50%; font-size: 22px; cursor: pointer;
  z-index: 800; box-shadow: var(--glow-strong); transition: all .25s; display: flex; align-items: center; justify-content: center; }
.vcp-cart-btn:hover { transform: scale(1.1); }
.vcp-cart-count { position: absolute; top: -4px; right: -4px; background: var(--vcp-red); color: #fff;
  border-radius: 50%; width: 20px; height: 20px; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

/* ═══════════════════════════════════════════════
   PORTAL / DEPOSIT GATE
═══════════════════════════════════════════════ */
.vcp-portal-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.vcp-portal-box { max-width: 560px; width: 100%; }
.vcp-portal-icon { font-size: 56px; text-align: center; margin-bottom: 20px; }
.vcp-portal-title { font-size: 32px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 10px; letter-spacing: -1px; }
.vcp-portal-subtitle { text-align: center; color: var(--vcp-text-dim); margin-bottom: 32px; font-size: 15px; line-height: 1.6; }
.vcp-timer-ring { display: flex; justify-content: center; margin-bottom: 32px; }
.vcp-timer-svg { transform: rotate(-90deg); }
.vcp-timer-circle-bg { fill: none; stroke: var(--vcp-bg3); stroke-width: 4; }
.vcp-timer-circle { fill: none; stroke: var(--vcp-primary); stroke-width: 4; stroke-linecap: round;
  stroke-dasharray: 283; stroke-dashoffset: 0; transition: stroke-dashoffset 1s linear; filter: drop-shadow(0 0 8px var(--vcp-primary)); }
.vcp-timer-text { font-family: var(--vcp-font-mono); font-size: 13px; fill: var(--vcp-primary); text-anchor: middle; dominant-baseline: central; transform: rotate(90deg) translate(0, -50%); }
.vcp-timer-label { font-family: var(--vcp-font-mono); font-size: 10px; fill: var(--vcp-text-dim); text-anchor: middle; }
.vcp-payment-methods { margin-bottom: 24px; }
.vcp-payment-method { background: var(--vcp-bg3); border: 1px solid var(--vcp-border); border-radius: var(--vcp-radius); padding: 20px; margin-bottom: 12px; transition: border-color .2s; cursor: pointer; }
.vcp-payment-method:hover, .vcp-payment-method.selected { border-color: var(--vcp-primary); background: rgba(0,255,136,.03); }
.vcp-payment-method-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.vcp-payment-method-name { font-weight: 700; font-size: 15px; color: #fff; }
.vcp-payment-details { font-family: var(--vcp-font-mono); font-size: 13px; color: var(--vcp-text); background: var(--vcp-bg2); padding: 12px 14px; border-radius: 8px; word-break: break-all; }
.vcp-copy-btn { font-family: var(--vcp-font-mono); font-size: 11px; background: rgba(0,255,136,.1); color: var(--vcp-primary);
  border: 1px solid var(--vcp-border2); padding: 5px 12px; border-radius: 5px; cursor: pointer; transition: all .2s; white-space: nowrap; }
.vcp-copy-btn:hover { background: rgba(0,255,136,.2); }
.vcp-copy-btn.copied { color: #000; background: var(--vcp-primary); }
.vcp-status-pending { display: inline-flex; align-items: center; gap: 8px; font-family: var(--vcp-font-mono); font-size: 13px; color: var(--vcp-gold); background: rgba(255,215,0,.08); border: 1px solid rgba(255,215,0,.3); padding: 10px 18px; border-radius: 20px; }
.vcp-status-pending::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--vcp-gold); animation: vcp-pulse 1.5s infinite; }
@keyframes vcp-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

/* ═══════════════════════════════════════════════
   WALLET
═══════════════════════════════════════════════ */
.vcp-wallet-balance-card { background: linear-gradient(135deg, #0a1a10 0%, var(--vcp-bg2) 100%);
  border: 1px solid var(--vcp-border2); border-radius: 16px; padding: 36px; margin-bottom: 28px;
  position: relative; overflow: hidden; }
.vcp-wallet-balance-card::after { content: ''; position: absolute; right: -20px; top: -20px;
  width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(0,255,136,.08), transparent); pointer-events: none; }
.vcp-wallet-label { font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.vcp-wallet-amount { font-family: var(--vcp-font-sans); font-size: 52px; font-weight: 800; color: var(--vcp-primary); letter-spacing: -2px; text-shadow: var(--glow-strong); margin-bottom: 6px; }
.vcp-wallet-amount sup { font-size: 28px; vertical-align: top; margin-top: 8px; }

/* Transactions */
.vcp-tx-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.vcp-tx-row:last-child { border-bottom: none; }
.vcp-tx-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.vcp-tx-icon.credit { background: rgba(0,255,136,.1); }
.vcp-tx-icon.debit  { background: rgba(255,77,109,.1); }
.vcp-tx-info { flex: 1; }
.vcp-tx-note { font-size: 13px; color: #fff; font-weight: 600; margin-bottom: 3px; }
.vcp-tx-date { font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim); }
.vcp-tx-amount { font-family: var(--vcp-font-mono); font-weight: 700; font-size: 15px; }
.vcp-tx-amount.credit { color: var(--vcp-primary); }
.vcp-tx-amount.debit  { color: var(--vcp-red); }

/* Orders */
.vcp-order-row { background: var(--vcp-bg2); border: 1px solid var(--vcp-border); border-radius: var(--vcp-radius); padding: 20px; margin-bottom: 12px; }
.vcp-order-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.vcp-order-num { font-family: var(--vcp-font-mono); font-size: 13px; font-weight: 700; color: var(--vcp-primary); }
.vcp-order-status { font-family: var(--vcp-font-mono); font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 700; }
.vcp-order-status.processing { background: rgba(0,204,255,.1); color: var(--vcp-secondary); border: 1px solid rgba(0,204,255,.3); }
.vcp-order-status.completed  { background: rgba(0,255,136,.1); color: var(--vcp-primary);   border: 1px solid rgba(0,255,136,.3); }
.vcp-order-status.pending    { background: rgba(255,215,0,.1);  color: var(--vcp-gold);      border: 1px solid rgba(255,215,0,.3); }
.vcp-order-details { display: flex; gap: 24px; font-size: 13px; color: var(--vcp-text-dim); flex-wrap: wrap; }
.vcp-order-details span strong { color: var(--vcp-text); }
.vcp-rating-stars { display: flex; gap: 4px; margin-top: 10px; }
.vcp-rating-star { font-size: 20px; cursor: pointer; color: var(--vcp-text-dim); transition: color .2s; }
.vcp-rating-star.filled, .vcp-rating-star:hover { color: var(--vcp-gold); }

/* Success Overlay */
.vcp-success-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.vcp-success-overlay.show { opacity: 1; pointer-events: all; }
.vcp-success-box { text-align: center; max-width: 460px; padding: 60px 40px; }
.vcp-success-icon { font-size: 80px; margin-bottom: 24px; animation: vcp-bounce .6s cubic-bezier(.36,.07,.19,.97); }
@keyframes vcp-bounce { 0%{transform:scale(0)} 60%{transform:scale(1.2)} 100%{transform:scale(1)} }
.vcp-success-title { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -1px; }
.vcp-success-msg { color: var(--vcp-text-dim); font-size: 15px; line-height: 1.6; margin-bottom: 32px; }
.vcp-success-msg strong { color: var(--vcp-primary); }

/* Referral */
.vcp-ref-card { background: linear-gradient(135deg, rgba(0,255,136,.05), rgba(0,204,255,.03)); border: 1px solid var(--vcp-border2); border-radius: var(--vcp-radius); padding: 24px; }
.vcp-ref-code-display { font-family: var(--vcp-font-mono); font-size: 24px; font-weight: 700; color: var(--vcp-primary);
  letter-spacing: 4px; text-align: center; padding: 16px; background: var(--vcp-bg3); border-radius: 8px; margin: 12px 0; cursor: pointer; transition: all .2s; }
.vcp-ref-code-display:hover { background: rgba(0,255,136,.08); }

/* Responsive */
@media (max-width: 900px) {
  .vcp-dashboard { grid-template-columns: 1fr; }
  .vcp-sidebar { position: relative; height: auto; top: 0; }
  .vcp-features { grid-template-columns: 1fr; }
  .vcp-cart-sidebar { width: 100%; right: -100%; }
  .vcp-nav-links { display: none; }
  .vcp-nav-hamburger { display: flex; }
  .vcp-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .vcp-nav { padding: 0 16px; }
  .vcp-dash-main { padding: 20px 16px; }
  .vcp-modal { padding: 28px 20px; }
  .vcp-stats-grid { grid-template-columns: 1fr; }
}

/* ── Mobile nav ── */
@media (max-width: 900px) {
  .vcp-nav-links { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--vcp-bg2); border-bottom: 1px solid var(--vcp-border); flex-direction: column; padding: 12px 16px; gap: 4px; z-index: 999; }
  .vcp-nav-links.mobile-open { display: flex; }
  .vcp-nav-links a { padding: 12px 16px; border-radius: 8px; }
  .vcp-nav-hamburger { display: flex !important; }
}

/* ── Logout button as anchor ── */
a.vcp-btn-logout {
  font-family: var(--vcp-font-mono); font-size: 11px; color: var(--vcp-text-dim);
  background: none; border: 1px solid rgba(255,255,255,.1); padding: 7px 14px;
  border-radius: 6px; cursor: pointer; text-transform: uppercase; letter-spacing: .5px;
  transition: all .2s; text-decoration: none; display: inline-flex; align-items: center;
}
a.vcp-btn-logout:hover { border-color: var(--vcp-red); color: var(--vcp-red); }

/* ── Profile grid responsive ── */
@media (max-width: 700px) {
  .vcp-stats-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 500px) {
  .vcp-stats-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════ */
.vcp-pagination {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--vcp-border);
}
.vcp-pagination-info {
  font-family: var(--vcp-font-mono); font-size: 12px; color: var(--vcp-text-dim);
}
.vcp-pagination-pages { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.vcp-page-btn {
  font-family: var(--vcp-font-mono); font-size: 12px; font-weight: 700;
  padding: 8px 14px; border-radius: 7px; border: 1px solid var(--vcp-border);
  background: var(--vcp-bg2); color: var(--vcp-text-dim); text-decoration: none;
  transition: all .2s; display: inline-flex; align-items: center;
}
.vcp-page-btn:hover { border-color: var(--vcp-primary); color: var(--vcp-primary); background: rgba(0,255,136,.06); }
.vcp-page-btn.active { background: var(--vcp-primary); color: #000; border-color: var(--vcp-primary); font-weight: 700; }

/* ── Admin count badges ── */
.vcp-count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 6px;
  background: rgba(255,255,255,.08); border-radius: 10px;
  font-size: 10px; font-family: 'Space Mono', monospace; font-weight: 700;
  margin-left: 4px; color: var(--vcp-text-dim);
}
.vcp-tab-active { border-color: var(--vcp-primary) !important; color: var(--vcp-primary) !important; }

/* ── Card balance column ── */
.vcp-card-balance { font-family: var(--vcp-font-mono); font-weight: 700; font-size: 13px; color: var(--vcp-gold); }

/* ══════════════════════════════════════════════
   SHOP MODULE STYLES
══════════════════════════════════════════════ */

/* Layout toggle */
.vcp-layout-toggle { display:flex; border:1px solid var(--vcp-border); border-radius:8px; overflow:hidden; }
.vcp-layout-btn { background:none; border:none; padding:8px 14px; color:var(--vcp-text-dim); cursor:pointer; font-size:16px; transition:all .2s; }
.vcp-layout-btn.active { background:var(--vcp-primary); color:#000; }

/* Shop sidebar */
.vcp-shop-sidebar { width:200px; flex-shrink:0; }
.vcp-sidebar-link { display:block; padding:8px 12px; border-radius:7px; color:var(--vcp-text-dim); text-decoration:none; font-size:13px; transition:all .2s; margin-bottom:2px; }
.vcp-sidebar-link:hover { background:rgba(255,255,255,.05); color:#fff; }
.vcp-sidebar-link.active { background:rgba(0,255,136,.1); color:var(--vcp-primary); font-weight:600; }

/* Product Grid */
.vcp-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
/* Product List view */
.vcp-shop-list { display:flex; flex-direction:column; gap:12px; }
.vcp-shop-list .vcp-product-card { display:grid; grid-template-columns:140px 1fr; gap:0; }
.vcp-shop-list .vcp-product-img { height:140px; border-radius:12px 0 0 12px; }
.vcp-shop-list .vcp-product-body { padding:16px 20px; }

/* Product Card */
.vcp-product-card {
  background: var(--vcp-bg2);
  border: 1px solid var(--vcp-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.vcp-product-card:hover { transform:translateY(-3px); border-color:rgba(0,255,136,.25); box-shadow:0 8px 32px rgba(0,0,0,.4); }
.vcp-product-card.vcp-locked { opacity:.6; }

.vcp-product-img { position:relative; height:180px; background:var(--vcp-bg3); overflow:hidden; }
.vcp-product-img img { width:100%; height:100%; object-fit:cover; transition:transform .3s; }
.vcp-product-card:hover .vcp-product-img img { transform:scale(1.04); }
.vcp-product-img-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:48px; color:var(--vcp-border); }

/* Badges */
.vcp-product-badges { position:absolute; top:8px; left:8px; display:flex; flex-wrap:wrap; gap:4px; }
.vcp-pbadge { font-size:10px; font-weight:700; padding:3px 7px; border-radius:4px; font-family:var(--vcp-font-mono); text-transform:uppercase; letter-spacing:.3px; }
.vcp-pbadge-new     { background:rgba(0,204,255,.15);  color:#00ccff;  border:1px solid rgba(0,204,255,.3); }
.vcp-pbadge-sale    { background:rgba(255,100,0,.15);  color:#ff6400;  border:1px solid rgba(255,100,0,.3); }
.vcp-pbadge-hot     { background:rgba(255,50,50,.15);  color:#ff5555;  border:1px solid rgba(255,50,50,.3); }
.vcp-pbadge-limited { background:rgba(255,200,0,.15);  color:#ffc800;  border:1px solid rgba(255,200,0,.3); }
.vcp-pbadge-featured{ background:rgba(150,100,255,.15);color:#9664ff;  border:1px solid rgba(150,100,255,.3); }
.vcp-pbadge-digital { background:rgba(0,255,136,.1);   color:var(--vcp-primary); border:1px solid rgba(0,255,136,.25); }
.vcp-pbadge-lowstock{ background:rgba(255,150,0,.15);  color:#ffaa00;  border:1px solid rgba(255,150,0,.3); }
.vcp-pbadge-vip     { background:rgba(255,215,0,.1);   color:var(--vcp-gold);    border:1px solid rgba(255,215,0,.25); }

/* Wishlist button */
.vcp-wish-btn { position:absolute; top:8px; right:8px; background:rgba(0,0,0,.5); border:none; border-radius:50%; width:34px; height:34px; cursor:pointer; font-size:16px; transition:all .2s; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(4px); }
.vcp-wish-btn:hover { background:rgba(0,0,0,.75); transform:scale(1.1); }
.vcp-wish-btn.wished { background:rgba(255,50,100,.2); }

/* Product body */
.vcp-product-body { padding:16px; }
.vcp-product-cat { font-family:var(--vcp-font-mono); font-size:10px; color:var(--vcp-text-dim); text-transform:uppercase; letter-spacing:.5px; margin-bottom:4px; }
.vcp-product-name { font-weight:700; font-size:14px; color:#fff; margin-bottom:8px; line-height:1.4; }
.vcp-product-price-row { display:flex; align-items:center; gap:8px; margin-bottom:8px; flex-wrap:wrap; }
.vcp-product-price { font-family:var(--vcp-font-mono); font-size:18px; font-weight:700; color:var(--vcp-primary); }
.vcp-product-orig { font-family:var(--vcp-font-mono); font-size:13px; color:var(--vcp-text-dim); text-decoration:line-through; }
.vcp-product-locked-msg { font-size:12px; color:var(--vcp-gold); font-family:var(--vcp-font-mono); padding:10px; background:rgba(255,215,0,.06); border-radius:6px; border:1px solid rgba(255,215,0,.15); text-align:center; }

/* Flash Sale */
.vcp-flash-sale { display:flex; align-items:center; gap:8px; background:rgba(255,100,0,.08); border:1px solid rgba(255,100,0,.2); border-radius:6px; padding:6px 10px; margin-bottom:8px; }
.vcp-flash-label { font-family:var(--vcp-font-mono); font-size:10px; font-weight:700; color:#ff6400; text-transform:uppercase; letter-spacing:.5px; }
.vcp-flash-timer { font-family:var(--vcp-font-mono); font-size:13px; font-weight:700; color:#ffc800; margin-left:auto; }

/* Saved address picker */
.vcp-saved-addr-item { padding:10px 14px; border-radius:8px; cursor:pointer; transition:background .2s; border:1px solid var(--vcp-border); margin-bottom:6px; }
.vcp-saved-addr-item:hover { background:rgba(0,255,136,.06); border-color:rgba(0,255,136,.2); }

/* Form grid */
.vcp-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:600px) { .vcp-form-grid { grid-template-columns:1fr; } }

/* Shop Checkout responsive */
@media(max-width:900px) {
  .vcp-shop-sidebar { display:none; }
  .vcp-shop-grid { grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); }
}
@media(max-width:700px) {
  .vcp-shop-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .vcp-shop-grid { grid-template-columns: 1fr; }
  .vcp-shop-list .vcp-product-card { grid-template-columns:1fr; }
  .vcp-shop-list .vcp-product-img { height:160px; border-radius:12px 12px 0 0; }
}

/* Wallet balance link in nav */
a.vcp-nav-balance { text-decoration:none; }
a.vcp-nav-balance:hover { color:var(--vcp-primary) !important; }
