/* ═══════════════════════════════════════════════
   APP LAYOUT
═══════════════════════════════════════════════ */
.app-layout { display: flex; height: 100%; overflow: hidden; }

/* ── SIDEBAR ──────────────────────────────────── */
.sidebar {
  width: var(--sb-w); flex-shrink: 0; height: 100%;
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--b1);
  display: flex; flex-direction: column;
  position: relative; z-index: 20;
  transition: width .22s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
/* Discord-style compact */
.sidebar.compact { width: 64px; }
.sidebar.compact .sb-label,
.sidebar.compact .sb-brand-name,
.sidebar.compact .sb-section-label,
.sidebar.compact .sb-user-info,
.sidebar.compact .sb-upgrade-btn span,
.sidebar.compact .update-dot { display: none; }
.sidebar.compact .sb-item { justify-content: center; padding: 9px 0; }
.sidebar.compact .sb-brand { justify-content: center; padding: 18px 0 14px; }
.sidebar.compact .sb-user-card { justify-content: center; }
.sidebar.compact .sb-upgrade-btn { justify-content: center; padding: 8px 0; }
.sidebar.compact .sb-badge { position: absolute; top: 4px; right: 6px; }

.sb-brand {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 14px 14px; border-bottom: 1px solid var(--b1); flex-shrink: 0;
}
.sb-logo {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--acc), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #fff; font-weight: 900;
}
.sb-brand-name { font-size: 15px; font-weight: 900; letter-spacing: -.3px; white-space: nowrap; }

.sb-nav { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 6px 8px; }
.sidebar.compact .sb-nav { padding: 6px 4px; }

.sb-section-label {
  font-size: 9px; font-weight: 800; color: var(--t4);
  text-transform: uppercase; letter-spacing: 1.2px; padding: 10px 8px 4px;
  white-space: nowrap; overflow: hidden;
}
.sb-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px;
  border-radius: var(--r-sm); cursor: pointer; font-size: 13px; font-weight: 500;
  color: var(--t2); transition: all .12s; position: relative; user-select: none;
}
.sb-item:hover  { background: var(--hover); color: var(--t1); }
.sb-item.active { background: rgba(139,92,246,.1); color: #c4b5fd; font-weight: 600; }
.sb-item.active .sb-item-icon { color: var(--acc); }
.sb-item-icon {
  width: 30px; height: 30px; border-radius: var(--r-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  background: rgba(255,255,255,.05); color: var(--t3); transition: all .12s;
}
.sb-label { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sb-badge {
  display: flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; border-radius: 99px;
  background: var(--acc); color: #fff; font-size: 9px; font-weight: 800; padding: 0 4px; flex-shrink: 0;
}
.sb-divider { height: 1px; background: var(--b1); margin: 6px 8px; }
.sb-footer { padding: 10px; border-top: 1px solid var(--b1); flex-shrink: 0; }
.sidebar.compact .sb-footer { padding: 10px 4px; }
.sb-user-card { display: flex; align-items: center; gap: 9px; padding: 6px 8px; border-radius: var(--r); margin-bottom: 6px; }
.sb-avatar { width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0; overflow: hidden; background: linear-gradient(135deg,var(--acc),var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; }
.sb-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sb-user-info { flex: 1; min-width: 0; }
.sb-user-name { font-size: 12px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sb-user-role { font-size: 10px; color: var(--t3); text-transform: capitalize; }
.sb-upgrade-btn {
  width: 100%; padding: 8px 10px; border-radius: var(--r-sm);
  background: rgba(139,92,246,.08); border: 1px solid rgba(139,92,246,.16);
  color: #c4b5fd; font-size: 12px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 6px; transition: all .15s;
}
.sb-upgrade-btn:hover { background: rgba(139,92,246,.16); }

/* ── MAIN ─────────────────────────────────────── */
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; overflow: hidden; }

/* ── TOPBAR ───────────────────────────────────── */
.topbar {
  height: var(--top-h); flex-shrink: 0;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 10px;
  padding: 0 14px; border-bottom: 1px solid var(--b1);
  background: var(--glass-bg); backdrop-filter: var(--glass-blur);
  z-index: 15; position: relative;
}
.topbar-left  { display: flex; align-items: center; }
.topbar-center{ min-width: 0; max-width: 480px; width: 100%; margin: 0 auto; position: relative; }
.topbar-right { display: flex; align-items: center; gap: 2px; }

.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg3); border: 1.5px solid var(--b2); border-radius: var(--r);
  padding: 7px 12px; transition: all .15s;
}
.search-box:focus-within { border-color: var(--ba); background: var(--bg4); }
.search-box i { color: var(--t3); font-size: 12px; flex-shrink: 0; }
.search-input { background: none; border: none; outline: none; color: var(--t1); font-size: 13px; width: 100%; }
.search-input::placeholder { color: var(--t3); }

.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--bg2); border: 1px solid var(--b2); border-radius: var(--r-lg);
  box-shadow: var(--shadow); z-index: 100; overflow: hidden; display: none;
}
.search-tabs { display: flex; gap: 2px; padding: 8px; border-bottom: 1px solid var(--b1); }
.search-tab { padding: 5px 11px; border-radius: 7px; font-size: 12px; font-weight: 600; background: none; border: none; color: var(--t3); cursor: pointer; transition: all .12s; display: flex; align-items: center; gap: 5px; }
.search-tab:hover { background: var(--hover); color: var(--t2); }
.search-tab.active { background: rgba(139,92,246,.1); color: #c4b5fd; }
.search-result-list { max-height: 340px; overflow-y: auto; padding: 6px 0; }
.search-row { display: flex; align-items: center; gap: 10px; padding: 9px 14px; cursor: pointer; transition: background .1s; }
.search-row:hover { background: var(--hover); }
.search-av { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg,var(--acc),var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; overflow: hidden; position: relative; }
.search-av img { width: 100%; height: 100%; object-fit: cover; }
.search-empty { padding: 20px; text-align: center; font-size: 13px; color: var(--t3); }

/* ── NOTIFICATIONS POPUP ──────────────────────── */
.notif-popup {
  position: fixed; top: calc(var(--top-h) + 8px); right: 14px;
  width: 340px; max-height: 480px;
  background: var(--bg2); border: 1px solid var(--b2); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); z-index: 200; display: flex; flex-direction: column; overflow: hidden;
  animation: scaleIn .15s;
}
.notif-popup-hdr { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; font-size: 14px; font-weight: 800; border-bottom: 1px solid var(--b1); flex-shrink: 0; }
#notif-list-inner { overflow-y: auto; flex: 1; }
.notif-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; transition: background .1s; border-bottom: 1px solid var(--b1); }
.notif-item:hover { background: var(--hover); }
.notif-unread { background: rgba(139,92,246,.04); }
.notif-av { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; overflow: hidden; background: linear-gradient(135deg,var(--acc),var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; color: #fff; position: relative; }
.notif-dot-badge { position: absolute; bottom: -1px; right: -1px; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--bg2); display: flex; align-items: center; justify-content: center; }
.notif-empty { padding: 32px 16px; text-align: center; font-size: 13px; color: var(--t3); }

/* ── USER POPUP ───────────────────────────────── */
.user-popup { position: fixed; min-width: 210px; background: var(--bg2); border: 1px solid var(--b2); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); z-index: 200; overflow: hidden; animation: scaleIn .15s; }
.user-popup-hdr { padding: 14px 16px; border-bottom: 1px solid var(--b1); }
.user-popup-item { display: flex; align-items: center; gap: 9px; padding: 10px 16px; font-size: 13px; color: var(--t2); cursor: pointer; transition: background .1s; }
.user-popup-item:hover { background: var(--hover); color: var(--t1); }
.user-popup-danger:hover { background: rgba(244,63,94,.08); color: #fb7185; }

/* ── MODAL ────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); display: flex; align-items: center; justify-content: center; z-index: 300; opacity: 0; transition: opacity .2s; padding: 16px; }
.modal-overlay.in { opacity: 1; }
.modal-box { background: var(--bg2); border: 1px solid var(--b2); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); width: 100%; max-width: 460px; max-height: 90vh; display: flex; flex-direction: column; transform: translateY(14px); transition: transform .2s; overflow: hidden; }
.modal-overlay.in .modal-box { transform: none; }
.modal-wide { max-width: 760px; }
.modal-hdr { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--b1); flex-shrink: 0; }
.modal-hdr h3 { font-size: 15px; font-weight: 800; }
.modal-body { padding: 20px; overflow-y: auto; flex: 1; }
.modal-footer { padding: 12px 20px; border-top: 1px solid var(--b1); display: flex; justify-content: flex-end; gap: 8px; flex-shrink: 0; }

/* ── TOAST ────────────────────────────────────── */
#toast-wrap { position: fixed; bottom: 90px; right: 16px; z-index: 999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: var(--bg2); border: 1px solid var(--b2); border-radius: var(--r-lg); box-shadow: var(--shadow); font-size: 13px; max-width: 320px; opacity: 0; transform: translateX(20px); transition: all .25s; pointer-events: auto; }
.toast.in { opacity: 1; transform: none; }
.toast-success i { color: #34d399; }
.toast-error   i { color: #fb7185; }
.toast-info    i { color: var(--cyan); }
.toast-warn    i { color: #fbbf24; }

/* ── FLOATING BOTTOM BAR (Instagram style) ────── */
#bottom-bar {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 300px;
  max-width: 520px;
  height: 62px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--b2);
  border-radius: 99px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(139,92,246,.08);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 12px;
  gap: 4px;
}
.bb-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; border: none; background: none; color: var(--t3); font-size: 9px; font-weight: 600;
  cursor: pointer; padding: 8px 6px; border-radius: 99px; transition: all .15s;
  position: relative; min-width: 50px;
}
.bb-btn i { font-size: 20px; line-height: 1; transition: transform .15s; }
.bb-btn:hover { color: var(--t2); background: var(--hover); }
.bb-btn.active { color: var(--acc); }
.bb-btn.active i { transform: scale(1.1); }
.bb-dot {
  position: absolute; top: 6px; right: 10px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose); border: 2px solid var(--bg2);
}

/* ── MAIN CONTENT ─────────────────────────────── */
.main-content { flex: 1; overflow-y: auto; padding-bottom: 90px; }
.page { padding: 24px; }

/* ── DASHBOARD WIDGET GRID ────────────────────── */
.widget-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row dense;
  gap: 14px;
  min-height: 200px;
  align-items: start;
}
.widget-empty-state {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; padding: 60px 24px; text-align: center;
}
.widget-empty-icon { width: 80px; height: 80px; border-radius: 20px; background: var(--bg3); border: 1px dashed var(--b3); display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--t4); margin: 0 auto 4px; }
.widget-cell { background: var(--bg2); border: 1px solid var(--b1); border-radius: var(--r-xl); overflow: hidden; position: relative; transition: box-shadow .2s, border-color .15s; display: flex; flex-direction: column; min-width: 0; }
.widget-cell:hover { box-shadow: var(--shadow-sm); }
.widget-cell.dragging { opacity: .4; z-index: 10; box-shadow: var(--shadow-lg); }
.widget-cell.drag-over { border-color: var(--acc); border-style: dashed; background: rgba(139,92,246,.06); transform: scale(1.01); }
.edit-mode .widget-cell:hover { border-color: var(--ba); }
.widget-header { display: flex; align-items: center; gap: 7px; padding: 10px 12px 6px; flex-shrink: 0; }
.widget-body { flex: 1; padding: 4px 12px 12px; overflow: hidden; min-height: 60px; }
.widget-remove-btn { width: 20px; height: 20px; border-radius: 50%; background: var(--bg4); border: 1px solid var(--b2); color: var(--t3); font-size: 10px; cursor: pointer; display: none; align-items: center; justify-content: center; flex-shrink: 0; transition: all .12s; margin-left: auto; }
.widget-remove-btn:hover { background: rgba(244,63,94,.2); color: #fb7185; }
.edit-mode .widget-remove-btn { display: flex; }
.widget-resize-handle { position: absolute; bottom: 4px; right: 4px; width: 16px; height: 16px; cursor: nwse-resize; opacity: 0; transition: opacity .2s; }
.widget-resize-handle::before,.widget-resize-handle::after { content:''; position:absolute; background: var(--t3); border-radius: 1px; }
.widget-resize-handle::before { right:0; bottom:6px; width:8px; height:2px; }
.widget-resize-handle::after  { bottom:0; right:6px; width:2px; height:8px; }
.edit-mode .widget-resize-handle { opacity: 1; }
.widget-drag-handle { width: 20px; height: 20px; border-radius: 6px; color: var(--t4); font-size: 11px; cursor: grab; display: none; align-items: center; justify-content: center; flex-shrink: 0; transition: color .12s; }
.widget-drag-handle:hover { color: var(--t2); }
.edit-mode .widget-drag-handle { display: flex; }
.dash-stats-bar { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; margin-bottom: 24px; }
.dash-stat { background: var(--bg2); border: 1px solid var(--b1); border-radius: var(--r-lg); padding: 14px 16px; }
.dash-stat-val { font-size: 24px; font-weight: 900; letter-spacing: -1px; }
.dash-stat-lbl { font-size: 11px; color: var(--t3); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-top: 2px; }

/* ── STORE ────────────────────────────────────── */
.store-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.store-tab { padding: 7px 14px; border-radius: 99px; font-size: 12px; font-weight: 600; background: var(--bg3); border: 1px solid var(--b1); color: var(--t3); cursor: pointer; transition: all .12s; }
.store-tab:hover { border-color: var(--b2); color: var(--t2); }
.store-tab.active { background: rgba(139,92,246,.1); border-color: rgba(139,92,246,.25); color: #c4b5fd; }
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 16px; }
.store-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; transition: box-shadow .2s, transform .15s; }
.store-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.store-card-top { padding: 16px 16px 0; display: flex; align-items: flex-start; justify-content: space-between; }
.store-card-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.store-card-body { padding: 10px 16px 14px; flex: 1; }
.store-card-name { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.store-card-desc { font-size: 12px; color: var(--t3); line-height: 1.6; margin-bottom: 10px; }
.store-card-meta { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.store-card-action { padding: 10px 16px 14px; border-top: 1px solid var(--b1); }

/* ── ADMIN ────────────────────────────────────── */
.admin-tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--b1); flex-wrap: wrap; }
.admin-tab { padding: 10px 16px; font-size: 13px; font-weight: 600; background: none; border: none; color: var(--t3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .12s; display: flex; align-items: center; gap: 7px; }
.admin-tab:hover { color: var(--t2); }
.admin-tab.active { color: #c4b5fd; border-bottom-color: var(--acc); }
.adm-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.adm-table thead th { padding: 10px 14px; font-size: 11px; font-weight: 700; color: var(--t3); text-transform: uppercase; letter-spacing: .5px; text-align: left; border-bottom: 1px solid var(--b1); background: var(--bg1); }
.adm-table tbody td { padding: 11px 14px; border-bottom: 1px solid var(--b1); vertical-align: middle; }
.adm-table tbody tr:last-child td { border-bottom: none; }
.adm-table tbody tr:hover td { background: var(--hover); }

/* Module editor overlay */
.med-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 250; display: flex; align-items: center; justify-content: center; padding: 20px; animation: fadeIn .15s; }
.med-box { background: var(--bg1); border: 1px solid var(--b2); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); width: 100%; max-width: 1040px; height: calc(100vh - 80px); max-height: 780px; display: flex; flex-direction: column; overflow: hidden; }
.med-header { display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border-bottom: 1px solid var(--b1); flex-shrink: 0; background: var(--bg2); }
.med-tabs { display: flex; gap: 2px; padding: 8px 14px 0; border-bottom: 1px solid var(--b1); flex-shrink: 0; }
.med-tab { padding: 8px 16px; font-size: 13px; font-weight: 600; background: none; border: none; color: var(--t3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .12s; display: flex; align-items: center; gap: 6px; }
.med-tab:hover { color: var(--t2); }
.med-tab.active { color: #c4b5fd; border-bottom-color: var(--acc); }
.med-body { flex: 1; overflow: hidden; display: flex; flex-direction: column; }
.med-content { flex: 1; overflow: auto; }
.med-file-list { width: 220px; min-width: 220px; border-right: 1px solid var(--b1); overflow-y: auto; background: var(--bg1); }
.med-file-item { display: flex; align-items: center; gap: 7px; padding: 7px 12px; cursor: pointer; font-size: 12px; color: var(--t2); transition: background .1s; }
.med-file-item:hover { background: var(--hover); }
.med-file-item.active { background: rgba(139,92,246,.08); color: #c4b5fd; }
.med-code-area { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.med-code-bar { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-bottom: 1px solid var(--b1); flex-shrink: 0; background: var(--bg2); }
.med-textarea { flex: 1; width: 100%; border: none; background: var(--bg1); color: var(--t1); font-family: var(--mono); font-size: 13px; padding: 14px; line-height: 1.7; resize: none; outline: none; overflow-y: auto; }

/* ── PROFILE ──────────────────────────────────── */
.post-card { padding: 14px; margin-bottom: 0; }

/* ── SETTINGS TABS ─────────────────────────────── */
.settings-tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--b1); margin-bottom: 24px; flex-wrap: wrap; }
.settings-tab { padding: 10px 16px; font-size: 13px; font-weight: 600; background: none; border: none; color: var(--t3); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .12s; display: flex; align-items: center; gap: 7px; }
.settings-tab:hover { color: var(--t2); }
.settings-tab.active { color: #c4b5fd; border-bottom-color: var(--acc); }

/* ── MODULE SETTINGS SPLIT ─────────────────────── */
.mset-layout { display: flex; height: 100%; overflow: hidden; }
.mset-list { width: 260px; min-width: 260px; border-right: 1px solid var(--b1); overflow-y: auto; background: var(--bg1); }
.mset-item { display: flex; align-items: center; gap: 9px; padding: 10px 14px; cursor: pointer; transition: background .1s; }
.mset-item:hover { background: var(--hover); }
.mset-item.active { background: rgba(139,92,246,.08); color: #c4b5fd; }
.mset-content { flex: 1; overflow-y: auto; }

/* ── LANDING ──────────────────────────────────── */
.landing {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 16px;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(139,92,246,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.12) 0%, transparent 50%),
    var(--bg);
}
.landing-card { position: relative; width: 100%; max-width: 420px; padding: 44px 40px; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--b2); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); }
.landing-logo { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(135deg,var(--acc),var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin: 0 auto 18px; }
.landing-title { font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 6px; }
.landing-sub { font-size: 14px; color: var(--t3); text-align: center; margin-bottom: 30px; }

/* ── ONLINE DOT ───────────────────────────────── */
.online-dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; border: 2px solid var(--bg); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .sidebar { position: fixed; left: 0; top: 0; bottom: 0; transform: translateX(-100%); z-index: 50; }
  .sidebar.open { transform: none; box-shadow: var(--shadow-lg); }
  .page { padding: 16px; }
  .store-grid { grid-template-columns: 1fr; }
  #bottom-bar { min-width: 280px; max-width: calc(100vw - 32px); }
}
@media (max-width: 600px) {
  .landing-card { padding: 28px 22px; }
  .dash-stats-bar { grid-template-columns: 1fr 1fr; }
  .bb-btn span { display: none; }
  #bottom-bar { height: 54px; }
}