/* =====================================================
   PayBridge Pakistan — Main Stylesheet
   ===================================================== */

:root {
  --primary:       #1A4FD8;
  --primary-dark:  #1340B0;
  --primary-light: #EEF2FF;
  --secondary:     #0EA5E9;
  --success:       #10B981;
  --warning:       #F59E0B;
  --danger:        #EF4444;
  --bg:            #F0F4FF;
  --card:          #FFFFFF;
  --sidebar-bg:    #0F1F5C;
  --sidebar-text:  #A8B8E8;
  --text:          #0F172A;
  --muted:         #64748B;
  --border:        #E2E8F0;
  --shadow:        0 4px 24px rgba(26,79,216,0.08);
  --shadow-lg:     0 8px 40px rgba(26,79,216,0.14);
  --radius:        14px;
  --radius-sm:     8px;
  --sidebar-w:     250px;
  --header-h:      68px;
  --transition:    all 0.22s cubic-bezier(.4,0,.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'DM Sans',sans-serif; background:var(--bg); color:var(--text); min-height:100vh; display:flex; }
h1,h2,h3,h4,h5 { font-family:'Syne',sans-serif; }
a { text-decoration:none; color:inherit; }
button,input,select,textarea { font-family:'DM Sans',sans-serif; }

::-webkit-scrollbar { width:5px; height:5px; }
::-webkit-scrollbar-thumb { background:rgba(26,79,216,0.2); border-radius:10px; }

/* ─── SIDEBAR ───────────────────────────────────── */
.sidebar { width:var(--sidebar-w); background:var(--sidebar-bg); min-height:100vh; display:flex;
  flex-direction:column; position:fixed; left:0; top:0; z-index:100; overflow:hidden; transition:var(--transition); }
.sidebar-header { padding:22px 18px 18px; border-bottom:1px solid rgba(255,255,255,0.07); }
.sidebar-logo { display:flex; align-items:center; gap:11px; }
.sidebar-logo-icon { width:38px; height:38px; background:linear-gradient(135deg,#3B82F6,#60A5FA);
  border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sidebar-logo-icon svg { width:20px; height:20px; }
.sidebar-logo-text { font-family:'Syne',sans-serif; font-size:17px; font-weight:800; color:#fff; line-height:1.1; }
.sidebar-logo-text span { color:#60A5FA; display:block; font-size:11px; font-weight:500; letter-spacing:.8px; text-transform:uppercase; }
.sidebar-nav { flex:1; padding:14px 10px; overflow-y:auto; }
.nav-section-label { font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:rgba(168,184,232,0.4); padding:10px 8px 6px; margin-top:8px; }
.nav-item { display:flex; align-items:center; gap:11px; padding:11px 12px; border-radius:10px;
  color:var(--sidebar-text); font-size:14px; font-weight:500; transition:var(--transition); cursor:pointer; margin-bottom:3px; }
.nav-item:hover { background:rgba(255,255,255,0.07); color:#fff; }
.nav-item.active { background:linear-gradient(135deg,rgba(59,130,246,0.3),rgba(96,165,250,0.15)); color:#fff;
  box-shadow:inset 2px 0 0 #60A5FA; }
.nav-item svg { width:18px; height:18px; flex-shrink:0; }
.sidebar-footer { padding:14px 10px; border-top:1px solid rgba(255,255,255,0.07); }
.user-mini { display:flex; align-items:center; gap:10px; padding:10px; border-radius:10px;
  background:rgba(255,255,255,0.06); cursor:pointer; transition:var(--transition); }
.user-mini:hover { background:rgba(255,255,255,0.1); }
.user-avatar { width:34px; height:34px; background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:#fff; flex-shrink:0; }
.user-mini-name { font-size:13px; font-weight:600; color:#fff; }
.user-mini-role { font-size:11px; color:var(--sidebar-text); }

/* ─── MAIN CONTENT ──────────────────────────────── */
.main-content { margin-left:var(--sidebar-w); flex:1; display:flex; flex-direction:column; min-height:100vh; min-width:0; }

/* ─── HEADER ────────────────────────────────────── */
.header { height:var(--header-h); background:#fff; border-bottom:1px solid var(--border);
  display:flex; align-items:center; padding:0 28px; gap:14px; position:sticky; top:0; z-index:50;
  box-shadow:0 2px 8px rgba(26,79,216,0.04); }
.header-menu-btn { display:none; background:none; border:none; padding:8px; color:var(--muted); cursor:pointer; }
.header-title { font-family:'Syne',sans-serif; font-size:18px; font-weight:700; flex:1; }
.header-search { display:flex; align-items:center; gap:8px; background:var(--bg); border:1.5px solid var(--border);
  border-radius:10px; padding:8px 14px; width:230px; transition:var(--transition); }
.header-search:focus-within { border-color:var(--primary); background:#fff; }
.header-search input { border:none; background:none; outline:none; font-size:13px; color:var(--text); width:100%; }
.header-search input::placeholder { color:var(--muted); }
.header-actions { display:flex; align-items:center; gap:10px; }
.icon-btn { width:38px; height:38px; border-radius:10px; background:var(--bg); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; cursor:pointer; color:var(--muted); transition:var(--transition); position:relative; }
.icon-btn:hover { background:var(--primary-light); color:var(--primary); border-color:var(--primary); }
.icon-btn .dot { position:absolute; top:6px; right:6px; width:7px; height:7px; background:#EF4444;
  border-radius:50%; border:1.5px solid #fff; }
.header-avatar { width:36px; height:36px; background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; color:#fff; cursor:pointer; }

/* ─── NOTIFICATION PANEL ────────────────────────── */
.notif-panel { position:fixed; top:var(--header-h); right:0; width:320px; background:#fff;
  box-shadow:-4px 0 24px rgba(0,0,0,.08); z-index:150; transform:translateX(100%);
  transition:var(--transition); max-height:calc(100vh - var(--header-h)); overflow-y:auto; }
.notif-panel.open { transform:translateX(0); }
.notif-header { padding:18px 20px; border-bottom:1px solid var(--border); display:flex; align-items:center; justify-content:space-between; }
.notif-item { padding:12px 20px; border-bottom:1px solid #F8FAFC; cursor:pointer; transition:var(--transition); }
.notif-item:hover { background:#F8FAFC; }
.notif-dot { width:8px; height:8px; border-radius:50%; background:var(--primary); margin-top:4px; flex-shrink:0; }
.notif-text { font-size:13px; color:var(--text); font-weight:500; }
.notif-time { font-size:11px; color:var(--muted); margin-top:2px; }

/* ─── PAGE CONTENT ──────────────────────────────── */
.page-content { flex:1; padding:26px 28px; }
.page-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:26px; flex-wrap:wrap; gap:12px; }
.page-header-left h2 { font-size:22px; font-weight:700; }
.page-header-left p { font-size:13px; color:var(--muted); margin-top:3px; }

/* ─── BUTTONS ───────────────────────────────────── */
.btn { padding:11px 22px; border-radius:var(--radius-sm); border:none; font-size:14px; font-weight:600;
  transition:var(--transition); display:inline-flex; align-items:center; justify-content:center; gap:8px; cursor:pointer; }
.btn-primary { background:linear-gradient(135deg,var(--primary),#2563EB); color:#fff; box-shadow:0 4px 14px rgba(26,79,216,0.3); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(26,79,216,0.4); }
.btn-outline { background:transparent; border:1.5px solid var(--border); color:var(--text); }
.btn-outline:hover { border-color:var(--primary); color:var(--primary); background:var(--primary-light); }
.btn-sm { padding:7px 14px; font-size:12px; border-radius:6px; }
.btn-danger { background:#FEE2E2; color:var(--danger); border:none; }
.btn-danger:hover { background:var(--danger); color:#fff; }
.btn-success { background:linear-gradient(135deg,#059669,var(--success)); color:#fff; }
.btn-success:hover { transform:translateY(-2px); box-shadow:0 4px 14px rgba(16,185,129,0.3); }
.btn-warning { background:#FEF3C7; color:#D97706; border:none; }
.btn-warning:hover { background:var(--warning); color:#fff; }

/* ─── CARDS ─────────────────────────────────────── */
.card { background:var(--card); border-radius:var(--radius); box-shadow:var(--shadow);
  border:1px solid rgba(226,232,240,0.8); overflow:hidden; }
.card-header { padding:18px 22px; border-bottom:1px solid var(--border); display:flex;
  align-items:center; justify-content:space-between; flex-wrap:wrap; gap:10px; }
.card-title { font-family:'Syne',sans-serif; font-size:16px; font-weight:700; }
.card-body { padding:22px; }
.card-footer { padding:14px 22px; border-top:1px solid var(--border); background:#FAFBFF; }

/* ─── STAT CARDS ────────────────────────────────── */
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px; }
.stat-card { background:var(--card); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow);
  border:1px solid rgba(226,232,240,0.8); position:relative; overflow:hidden; transition:var(--transition); }
.stat-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.stat-card::before { content:''; position:absolute; top:-20px; right:-20px; width:80px; height:80px; border-radius:50%; opacity:0.07; }
.stat-card.blue::before { background:var(--primary); }
.stat-card.cyan::before { background:var(--secondary); }
.stat-card.green::before { background:var(--success); }
.stat-card.orange::before { background:#F59E0B; }
.stat-icon { width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.stat-icon.blue { background:var(--primary-light); color:var(--primary); }
.stat-icon.cyan { background:#E0F2FE; color:var(--secondary); }
.stat-icon.green { background:#D1FAE5; color:var(--success); }
.stat-icon.orange { background:#FEF3C7; color:#F59E0B; }
.stat-icon svg { width:20px; height:20px; }
.stat-label { font-size:11px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:.6px; margin-bottom:5px; }
.stat-value { font-family:'Syne',sans-serif; font-size:24px; font-weight:800; line-height:1; }
.stat-change { display:inline-flex; align-items:center; gap:4px; font-size:11px; font-weight:600;
  padding:3px 8px; border-radius:20px; margin-top:8px; }
.stat-change.up { background:#D1FAE5; color:#059669; }
.stat-change.down { background:#FEE2E2; color:var(--danger); }

/* ─── TABLES ────────────────────────────────────── */
.table-wrap { overflow-x:auto; }
table { width:100%; border-collapse:collapse; }
thead th { padding:11px 14px; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.7px;
  color:var(--muted); background:#FAFBFF; border-bottom:1px solid var(--border); text-align:left; white-space:nowrap; }
tbody td { padding:13px 14px; font-size:13px; color:var(--text); border-bottom:1px solid #F1F5F9; vertical-align:middle; }
tbody tr:hover { background:#FAFBFF; }
tbody tr:last-child td { border-bottom:none; }

/* ─── BADGES ────────────────────────────────────── */
.badge { display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:20px; font-size:11px; font-weight:700; white-space:nowrap; }
.badge::before { content:''; width:5px; height:5px; border-radius:50%; }
.badge-completed { background:#D1FAE5; color:#059669; }
.badge-completed::before { background:#059669; }
.badge-pending   { background:#FEF3C7; color:#D97706; }
.badge-pending::before { background:#F59E0B; }
.badge-processing{ background:#DBEAFE; color:#2563EB; }
.badge-processing::before { background:#3B82F6; }
.badge-failed    { background:#FEE2E2; color:var(--danger); }
.badge-failed::before { background:var(--danger); }
.badge-active    { background:#D1FAE5; color:#059669; }
.badge-active::before { background:#059669; }
.badge-kyc       { background:#E0F2FE; color:var(--secondary); }
.badge-kyc::before { background:var(--secondary); }

/* ─── FORMS ─────────────────────────────────────── */
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:12px; font-weight:700; color:var(--text); margin-bottom:6px; letter-spacing:.3px; text-transform:uppercase; }
.form-control { width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:var(--radius-sm);
  font-size:14px; color:var(--text); transition:var(--transition); background:#fff; outline:none; }
.form-control:focus { border-color:var(--primary); box-shadow:0 0 0 3px rgba(26,79,216,0.1); }
.form-control::placeholder { color:#B0BEC5; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.input-group { display:flex; align-items:center; }
.input-group-text { padding:11px 12px; background:var(--bg); border:1.5px solid var(--border); border-right:none; border-radius:var(--radius-sm) 0 0 var(--radius-sm); font-size:14px; font-weight:700; color:var(--primary); white-space:nowrap; }
.input-group .form-control { border-radius:0 var(--radius-sm) var(--radius-sm) 0; }
select.form-control { appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 12px center; }

/* ─── ALERTS ────────────────────────────────────── */
.alert { padding:14px 18px; border-radius:var(--radius-sm); margin-bottom:18px; display:flex; align-items:center; gap:10px; font-size:14px; font-weight:500; }
.alert-icon { font-size:16px; flex-shrink:0; }
.alert-success { background:#D1FAE5; color:#065F46; border-left:4px solid var(--success); }
.alert-error   { background:#FEE2E2; color:#991B1B; border-left:4px solid var(--danger); }
.alert-info    { background:#DBEAFE; color:#1E40AF; border-left:4px solid var(--primary); }
.alert-warning { background:#FEF3C7; color:#92400E; border-left:4px solid var(--warning); }

/* ─── TABS ──────────────────────────────────────── */
.tabs { display:flex; gap:4px; background:var(--bg); border-radius:10px; padding:4px; margin-bottom:18px; flex-wrap:wrap; }
.tab-btn { padding:8px 16px; border-radius:7px; font-size:13px; font-weight:600; color:var(--muted);
  cursor:pointer; border:none; background:none; transition:var(--transition); }
.tab-btn.active { background:#fff; color:var(--primary); box-shadow:0 2px 8px rgba(0,0,0,.08); }

/* ─── MODAL ─────────────────────────────────────── */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(15,31,92,0.5);
  z-index:200; align-items:center; justify-content:center; backdrop-filter:blur(4px); }
.modal-overlay.open { display:flex; }
.modal { background:#fff; border-radius:20px; padding:30px; width:100%; max-width:500px;
  box-shadow:0 32px 80px rgba(0,0,0,0.2); animation:modalIn .3s ease; max-height:90vh; overflow-y:auto; }
@keyframes modalIn { from{transform:scale(0.93)translateY(16px);opacity:0} to{transform:scale(1)translateY(0);opacity:1} }
.modal-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.modal-title { font-family:'Syne',sans-serif; font-size:19px; font-weight:700; }
.modal-close { width:32px; height:32px; border-radius:8px; border:none; background:var(--bg);
  display:flex; align-items:center; justify-content:center; color:var(--muted); cursor:pointer; transition:var(--transition); }
.modal-close:hover { background:#FEE2E2; color:var(--danger); }

/* ─── PAYMENT LINK CARDS ────────────────────────── */
.pl-card { background:var(--card); border-radius:var(--radius); padding:22px; box-shadow:var(--shadow);
  border:1px solid rgba(226,232,240,.8); margin-bottom:14px; display:flex; align-items:center; gap:18px; transition:var(--transition); flex-wrap:wrap; }
.pl-card:hover { transform:translateY(-2px); box-shadow:var(--shadow-lg); }
.pl-icon { width:48px; height:48px; background:var(--primary-light); border-radius:12px;
  display:flex; align-items:center; justify-content:center; color:var(--primary); flex-shrink:0; }
.pl-icon svg { width:22px; height:22px; }
.pl-info { flex:1; min-width:200px; }
.pl-name { font-family:'Syne',sans-serif; font-size:15px; font-weight:700; }
.pl-desc { font-size:12px; color:var(--muted); margin:3px 0; }
.pl-url { font-size:12px; color:var(--primary); background:var(--primary-light); padding:4px 10px;
  border-radius:6px; display:inline-block; margin-top:5px; font-weight:500; word-break:break-all; }
.pl-price { font-family:'Syne',sans-serif; font-size:20px; font-weight:800; color:var(--primary); white-space:nowrap; }
.pl-actions { display:flex; gap:7px; flex-wrap:wrap; }

/* ─── BANK CARDS ────────────────────────────────── */
.bank-card { background:var(--card); border-radius:var(--radius); padding:20px; box-shadow:var(--shadow);
  border:1px solid rgba(226,232,240,.8); margin-bottom:12px; display:flex; align-items:center; gap:16px; transition:var(--transition); flex-wrap:wrap; }
.bank-card:hover { box-shadow:var(--shadow-lg); }
.bank-logo-box { width:46px; height:46px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  font-family:'Syne',sans-serif; font-size:11px; font-weight:800; color:#fff; flex-shrink:0; }
.bank-info { flex:1; min-width:180px; }
.bank-name-text { font-weight:700; font-size:14px; }
.bank-title-text { font-size:12px; color:var(--muted); }
.bank-num-text { font-size:11px; color:var(--muted); margin-top:2px; font-family:monospace; }

/* ─── WITHDRAW BALANCE CARD ─────────────────────── */
.balance-hero { background:linear-gradient(135deg,var(--primary),#2563EB); border-radius:var(--radius);
  padding:26px; color:#fff; margin-bottom:22px; position:relative; overflow:hidden; }
.balance-hero::after { content:''; position:absolute; top:-30px; right:-30px; width:130px; height:130px;
  border-radius:50%; background:rgba(255,255,255,0.1); }
.balance-hero::before { content:''; position:absolute; bottom:-40px; left:40px; width:100px; height:100px;
  border-radius:50%; background:rgba(255,255,255,0.06); }
.bh-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; opacity:.7; }
.bh-amount { font-family:'Syne',sans-serif; font-size:38px; font-weight:800; margin:6px 0; position:relative; z-index:1; }
.bh-sub { font-size:12px; opacity:.7; }
.fee-note { background:var(--primary-light); border-radius:var(--radius-sm); padding:12px 15px;
  display:flex; align-items:center; gap:9px; font-size:13px; color:var(--primary); margin-bottom:16px; }

/* ─── SETTINGS ROWS ─────────────────────────────── */
.settings-row { display:flex; align-items:center; justify-content:space-between; padding:14px 0;
  border-bottom:1px solid #F8FAFC; gap:16px; }
.settings-row-label { font-size:14px; font-weight:600; }
.settings-row-desc { font-size:12px; color:var(--muted); margin-top:2px; }
.toggle { position:relative; width:44px; height:24px; flex-shrink:0; }
.toggle input { opacity:0; width:0; height:0; position:absolute; }
.toggle-slider { position:absolute; inset:0; background:#E2E8F0; border-radius:12px; transition:var(--transition); cursor:pointer; }
.toggle-slider::before { content:''; position:absolute; width:18px; height:18px; left:3px; top:3px;
  background:#fff; border-radius:50%; transition:var(--transition); box-shadow:0 1px 4px rgba(0,0,0,.15); }
.toggle input:checked + .toggle-slider { background:var(--primary); }
.toggle input:checked + .toggle-slider::before { transform:translateX(20px); }

/* ─── ADMIN BANNER ──────────────────────────────── */
.admin-banner { background:linear-gradient(135deg,var(--sidebar-bg),var(--primary)); border-radius:var(--radius);
  padding:22px 26px; margin-bottom:22px; color:#fff; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.admin-banner h3 { font-size:17px; font-weight:700; }
.admin-banner p { font-size:12px; opacity:.7; margin-top:3px; }

/* ─── PAGINATION ────────────────────────────────── */
.pagination { display:flex; gap:7px; align-items:center; flex-wrap:wrap; }
.page-btn { padding:7px 14px; border-radius:7px; border:1.5px solid var(--border); font-size:13px;
  font-weight:600; color:var(--text); background:#fff; cursor:pointer; transition:var(--transition); }
.page-btn:hover { border-color:var(--primary); color:var(--primary); }
.page-btn.active { background:var(--primary); color:#fff; border-color:var(--primary); }

/* ─── FILTER BAR ────────────────────────────────── */
.filter-bar { display:flex; gap:10px; margin-bottom:18px; flex-wrap:wrap; }
.filter-bar .form-control { flex:1; min-width:180px; padding:9px 13px; font-size:13px; }
.filter-bar select.form-control { flex:0; min-width:140px; }

/* ─── AUTH PAGES ────────────────────────────────── */
.auth-page { min-height:100vh; width:100%; background:linear-gradient(135deg,#0F1F5C 0%,#1A4FD8 50%,#0EA5E9 100%);
  display:flex; align-items:center; justify-content:center; padding:24px; position:relative; overflow:hidden; }
.auth-page::before { content:''; position:absolute; width:400px; height:400px; border-radius:50%;
  background:rgba(255,255,255,0.06); top:-120px; left:-120px; }
.auth-page::after { content:''; position:absolute; width:300px; height:300px; border-radius:50%;
  background:rgba(255,255,255,0.04); bottom:-80px; right:-80px; }
.auth-box { background:#fff; border-radius:20px; padding:44px 38px; width:100%; max-width:460px;
  box-shadow:0 32px 80px rgba(0,0,0,0.22); position:relative; z-index:2; animation:fadeUp .5s ease; }
@keyframes fadeUp { from{transform:translateY(24px);opacity:0} to{transform:translateY(0);opacity:1} }
.auth-logo { display:flex; align-items:center; gap:11px; justify-content:center; margin-bottom:28px; }
.auth-logo-icon { width:44px; height:44px; background:linear-gradient(135deg,var(--primary),var(--secondary));
  border-radius:12px; display:flex; align-items:center; justify-content:center; }
.auth-logo-icon svg { width:22px; height:22px; }
.auth-logo-name { font-family:'Syne',sans-serif; font-size:21px; font-weight:800; color:var(--primary); }
.auth-logo-name span { color:var(--secondary); }
.auth-title { font-size:24px; font-weight:700; text-align:center; margin-bottom:5px; }
.auth-sub { font-size:13px; color:var(--muted); text-align:center; margin-bottom:26px; }
.auth-footer { text-align:center; margin-top:20px; font-size:13px; color:var(--muted); }
.auth-footer a { color:var(--primary); font-weight:600; }

/* ─── PAY PAGE ──────────────────────────────────── */
.pay-page { min-height:100vh; width:100%; background:linear-gradient(135deg,#0F1F5C 0%,#1A4FD8 60%,#0EA5E9 100%);
  display:flex; align-items:center; justify-content:center; padding:24px; }
.pay-card { background:#fff; border-radius:20px; padding:40px 36px; width:100%; max-width:420px;
  box-shadow:0 32px 80px rgba(0,0,0,0.25); text-align:center; animation:fadeUp .5s ease; }
.pay-merchant { font-size:11px; color:var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; }
.pay-product { font-family:'Syne',sans-serif; font-size:22px; font-weight:800; margin-bottom:8px; }
.pay-desc { font-size:13px; color:var(--muted); margin-bottom:22px; }
.pay-amount-lbl { font-size:11px; color:var(--muted); font-weight:700; text-transform:uppercase; letter-spacing:.8px; }
.pay-amount-val { font-family:'Syne',sans-serif; font-size:44px; font-weight:800; color:var(--primary); line-height:1; margin:6px 0 26px; }
.pay-amount-val sup { font-size:22px; vertical-align:super; }
.paypal-btn { background:#0070BA; color:#fff; border:none; border-radius:12px; padding:15px 24px; width:100%;
  font-size:15px; font-weight:700; display:flex; align-items:center; justify-content:center; gap:10px; cursor:pointer;
  transition:var(--transition); margin-bottom:12px; }
.paypal-btn:hover { background:#005EA6; transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,112,186,0.35); }
.paypal-logo { font-family:Arial,sans-serif; font-size:17px; font-weight:800; }
.paypal-logo span { color:#009CDE; }
.pay-secure { font-size:11px; color:var(--muted); display:flex; align-items:center; justify-content:center; gap:5px; }

/* ─── SIDEBAR OVERLAY (mobile) ──────────────────── */
.sidebar-overlay { display:none; position:fixed; inset:0; background:rgba(15,31,92,0.5); z-index:99; backdrop-filter:blur(2px); }

/* ─── RESPONSIVE ────────────────────────────────── */
@media (max-width:1200px) { .stats-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:900px)  { .form-row { grid-template-columns:1fr; } }
@media (max-width:768px) {
  .sidebar { transform:translateX(-260px); width:260px; }
  .sidebar.open { transform:translateX(0); }
  .sidebar-overlay { display:block; opacity:0; pointer-events:none; transition:var(--transition); }
  .sidebar-overlay.active { opacity:1; pointer-events:all; }
  .main-content { margin-left:0; }
  .header { padding:0 16px; }
  .header-search { display:none; }
  .header-menu-btn { display:flex; }
  .page-content { padding:16px; }
  .stats-grid { grid-template-columns:1fr 1fr; gap:12px; }
  .pl-card,.bank-card { flex-direction:column; align-items:flex-start; }
  .admin-banner { flex-direction:column; }
  .notif-panel { width:100%; }
}
@media (max-width:480px) {
  .stats-grid { grid-template-columns:1fr; }
  .auth-box { padding:30px 22px; }
}
