/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #f2f2f7;
  --bg2:         #ffffff;
  --bg3:         #f7f7fa;
  --sidebar-bg:  #ffffff;
  --card-bg:     #ffffff;
  --border:      #e0e0e8;
  --border-light:#f0f0f5;
  --pink:        #e91e8c;
  --pink-light:  #ff4fa8;
  --pink-dim:    rgba(233,30,140,.08);
  --teal:        #00b89c;
  --teal-dim:    rgba(0,184,156,.08);
  --text:        #1c1c1e;
  --text-muted:  #6e6e73;
  --text-dim:    #aeaeb2;
  --green:       #34c759;
  --green-bg:    rgba(52,199,89,.1);
  --red:         #ff3b30;
  --red-bg:      rgba(255,59,48,.1);
  --gold:        #ff9500;
  --gold-bg:     rgba(255,149,0,.1);
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10), 0 1px 3px rgba(0,0,0,.06);
}

html, body {
  height: 100%;
  font-family: -apple-system, 'PingFang SC', 'Microsoft YaHei', BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pink); text-decoration: none; }
a:hover { color: var(--pink-light); }

img { max-width: 100%; }

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d1d6; border-radius: 3px; }

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 0 32px; height: 58px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.navbar-brand {
  display: flex; align-items: center; gap: 9px;
  font-size: 18px; font-weight: 700; color: var(--text);
  letter-spacing: -.3px;
}
.navbar-brand .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #00b89c, #e91e8c);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: #fff;
}

.navbar-links { display: flex; gap: 2px; }
.navbar-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: 14px; font-weight: 500;
  transition: all .15s;
}
.navbar-links a:hover { background: var(--bg3); color: var(--text); }
.navbar-links a.active { background: var(--pink-dim); color: var(--pink); }

.navbar-search { flex: 1; max-width: 280px; position: relative; }
.navbar-search input {
  width: 100%; padding: 7px 14px 7px 36px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; color: var(--text); font-size: 13px;
  outline: none; transition: border .15s;
}
.navbar-search input:focus { border-color: var(--pink); background: #fff; }
.navbar-search .search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); font-size: 13px;
}

.navbar-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }

.user-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 5px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 20px; cursor: pointer; color: var(--text);
  font-size: 13px; font-weight: 500; transition: all .15s;
}
.user-pill:hover { border-color: var(--pink); }
.user-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #00b89c, #e91e8c);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
}
.user-balance { color: var(--pink); font-size: 12px; font-weight: 600; }

.btn-nav-login {
  padding: 7px 18px; border-radius: 20px;
  background: var(--pink); color: #fff; font-size: 13px; font-weight: 600;
  transition: all .15s; display: inline-block;
}
.btn-nav-login:hover { background: var(--pink-light); color: #fff; }

/* ── Notice bar ──────────────────────────────────────────────────────────────── */
.wallet-notice {
  background: linear-gradient(90deg, #fff5f5, #fff0e8);
  border-bottom: 1px solid #ffd0b0;
  padding: 9px 32px;
  font-size: 13px; color: #c0540a;
  display: flex; align-items: center; gap: 8px;
}
.wallet-notice strong { color: #1c1c1e; font-weight: 600; }

/* ── User layout ─────────────────────────────────────────────────────────────── */
.user-layout { display: flex; min-height: calc(100vh - 58px); }

.sidebar {
  width: 210px; flex-shrink: 0;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--border);
  padding: 12px 8px;
  position: sticky; top: 58px; height: calc(100vh - 58px);
  overflow-y: auto;
}
.sidebar-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s; margin-bottom: 2px;
}
.sidebar-item:hover { background: var(--bg3); color: var(--text); }
.sidebar-item.active {
  background: var(--pink-dim); color: var(--pink); font-weight: 600;
}
.sidebar-item .icon { width: 18px; text-align: center; font-size: 15px; }

.user-content { flex: 1; padding: 28px 36px; overflow-x: hidden; }

/* ── Page title ──────────────────────────────────────────────────────────────── */
.page-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 700; margin-bottom: 20px; color: var(--text);
}
.page-title::before {
  content: ''; display: block; width: 4px; height: 18px;
  background: var(--pink); border-radius: 2px;
}

/* ── Cards ───────────────────────────────────────────────────────────────────── */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  margin-bottom: 16px; box-shadow: var(--shadow);
}
.card-header {
  font-size: 14px; font-weight: 600; margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  color: var(--text);
}

/* ── Info rows ───────────────────────────────────────────────────────────────── */
.info-row {
  display: flex; align-items: flex-start;
  padding: 11px 0; border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}
.info-row:last-child { border-bottom: none; }
.info-label { width: 130px; color: var(--text-muted); flex-shrink: 0; }
.info-value { color: var(--text); flex: 1; word-break: break-all; }
.info-value.highlight { color: var(--pink); font-weight: 500; }
.info-value.warning  { color: var(--gold); }

/* ── Stat tiles ──────────────────────────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 20px; }
.stat-tile {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  box-shadow: var(--shadow);
}
.stat-tile .stat-label {
  font-size: 12px; color: var(--text-muted); margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.stat-tile .stat-value { font-size: 22px; font-weight: 700; color: var(--pink); }

/* ── Announce ────────────────────────────────────────────────────────────────── */
.announce-box {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.announce-title {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.announce-item {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 5px 0; font-size: 13px; line-height: 1.5; color: var(--text);
}
.announce-dot {
  width: 18px; height: 18px; border-radius: 4px;
  background: var(--green); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; margin-top: 1px;
}
.announce-dot.warn { background: var(--pink); }

/* ── Category tabs ───────────────────────────────────────────────────────────── */
.cat-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.cat-tab {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--card-bg); color: var(--text-muted);
  font-size: 13px; font-weight: 500; cursor: pointer; transition: all .15s;
  box-shadow: var(--shadow);
}
.cat-tab:hover { border-color: var(--pink); color: var(--pink); }
.cat-tab.active { background: var(--pink); border-color: var(--pink); color: #fff; }
.cat-tab .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ── Product grid ────────────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: all .2s;
  box-shadow: var(--shadow);
}
.product-card:hover {
  border-color: var(--pink); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233,30,140,.12);
}
.product-card-img {
  width: 100%; height: 148px; object-fit: cover;
  background: #f7f7fa; display: block;
}
.product-card-img-placeholder {
  width: 100%; height: 148px;
  background: linear-gradient(135deg, #f5f5f7, #ebebf0);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--text-dim);
}
.product-card-body { padding: 12px 14px; }
.product-card-badges { display: flex; gap: 4px; margin-bottom: 7px; flex-wrap: wrap; }
.badge {
  padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 600;
  letter-spacing: .2px;
}
.badge-auto  { background: rgba(0,184,156,.12); color: var(--teal); }
.badge-rec   { background: var(--pink-dim); color: var(--pink); }
.badge-paid  { background: var(--green-bg); color: var(--green); }
.badge-unpaid { background: var(--red-bg); color: var(--red); }
.badge-delivered { background: var(--green-bg); color: var(--green); }

.product-card-name {
  font-size: 13px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; line-height: 1.4;
}
.product-card-price { font-size: 19px; font-weight: 700; color: var(--pink); }
.product-card-price span { font-size: 13px; font-weight: 400; }
.product-card-meta {
  display: flex; justify-content: space-between;
  margin-top: 6px; font-size: 11px; color: var(--text-dim);
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer;
  border: none; transition: all .15s; text-align: center;
}
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { background: var(--pink-light); color: #fff; }
.btn-outline {
  background: transparent; border: 1.5px solid var(--border); color: var(--text);
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { opacity: .9; }
.btn-sm { padding: 5px 12px; font-size: 12px; }
.btn-danger { background: var(--red); color: #fff; }
.btn-success { background: var(--green); color: #fff; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; margin-bottom: 6px; font-size: 13px;
  color: var(--text-muted); font-weight: 500;
}
.form-control {
  width: 100%; padding: 9px 14px;
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 13px; outline: none; transition: border .15s;
}
.form-control:focus { border-color: var(--pink); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { resize: vertical; min-height: 80px; }
.form-hint { font-size: 11px; color: var(--text-dim); margin-top: 4px; }

/* ── Alerts ──────────────────────────────────────────────────────────────────── */
.alert {
  padding: 11px 16px; border-radius: var(--radius-sm);
  font-size: 13px; margin-bottom: 16px;
  border-left: 4px solid; font-weight: 500;
}
.alert-info    { background: rgba(0,184,156,.08); border-color: var(--teal); color: #008068; }
.alert-warn    { background: var(--gold-bg); border-color: var(--gold); color: #b36000; }
.alert-error   { background: var(--red-bg); border-color: var(--red); color: var(--red); }
.alert-success { background: var(--green-bg); border-color: var(--green); color: #0a7a2e; }
.alert-pink    { background: var(--pink-dim); border-color: var(--pink); color: var(--pink); }

/* ── Table ───────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead tr { background: var(--bg3); }
th {
  padding: 10px 14px; text-align: left;
  color: var(--text-muted); font-weight: 600;
  border-bottom: 1.5px solid var(--border); white-space: nowrap;
}
td {
  padding: 11px 14px; border-bottom: 1px solid var(--border-light);
  color: var(--text); vertical-align: middle;
}
tr:hover td { background: var(--bg3); }
.text-green { color: var(--green) !important; }
.text-red   { color: var(--red) !important; }
.text-pink  { color: var(--pink) !important; }
.text-teal  { color: var(--teal) !important; }
.text-muted { color: var(--text-muted) !important; }

/* ── Tabs ────────────────────────────────────────────────────────────────────── */
.tabs {
  display: flex; gap: 4px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 20px;
}
.tab-btn {
  padding: 8px 18px; font-size: 13px; font-weight: 500;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -1.5px; transition: all .15s;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--pink); border-bottom-color: var(--pink); }

/* ── Plan cards ──────────────────────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 20px 0; }
.plan-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px; text-align: center;
  box-shadow: var(--shadow);
}
.plan-card.featured { border-color: var(--gold); }
.plan-icon { font-size: 24px; margin-bottom: 10px; }
.plan-name { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.plan-price { font-size: 24px; font-weight: 700; color: var(--pink); margin-bottom: 16px; }
.plan-features { list-style: none; font-size: 13px; color: var(--text-muted); }
.plan-features li {
  padding: 5px 0; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.feat-yes { color: var(--green); } .feat-no { color: var(--red); }

/* ── VIP badges ──────────────────────────────────────────────────────────────── */
.vip-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
}
.vip-1  { background: #f2f2f7; color: #8e8e93; }
.vip-2  { background: var(--green-bg); color: var(--green); }
.vip-3  { background: var(--gold-bg); color: var(--gold); }
.vip-4  { background: var(--red-bg); color: var(--red); }
.vip-99 { background: var(--pink-dim); color: var(--pink); }

/* ── Pay method chips ────────────────────────────────────────────────────────── */
.pay-methods { display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0; }
.pay-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 10px;
  border: 1.5px solid var(--border); cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  background: var(--card-bg); transition: all .15s; box-shadow: var(--shadow);
}
.pay-chip:hover { border-color: var(--pink); color: var(--pink); }
.pay-chip.selected { border-color: var(--pink); color: var(--pink); background: var(--pink-dim); }

/* ── Order card ──────────────────────────────────────────────────────────────── */
.order-card {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
  font-size: 13px; box-shadow: var(--shadow);
}
.order-card table td:first-child {
  width: 120px; color: var(--text-muted); background: none;
}
.order-card table td { border: none; padding: 7px 0; }
.keys-box {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px; font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 12px; line-height: 1.9; color: #0a6e60;
  white-space: pre-wrap; word-break: break-all;
  max-height: 200px; overflow-y: auto;
}
.dl-btn {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--text-muted); margin-top: 8px;
}
.dl-btn:hover { color: var(--pink); }

/* ── Pagination ──────────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 4px; margin-top: 20px; justify-content: center; }
.page-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-size: 13px;
  background: var(--card-bg); border: 1.5px solid var(--border);
  color: var(--text-muted); cursor: pointer; transition: all .15s;
}
.page-btn:hover { border-color: var(--pink); color: var(--pink); }
.page-btn.active { background: var(--pink); border-color: var(--pink); color: #fff; }

/* ── Auth page ───────────────────────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f5f0ff 0%, #f0f8ff 50%, #fff0f5 100%);
  padding: 20px;
}
.auth-box {
  width: 400px; background: #fff;
  border: 1px solid var(--border); border-radius: 18px;
  padding: 36px; box-shadow: var(--shadow-md);
}
.auth-logo {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 28px;
}
.auth-logo .logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, #00b89c, #e91e8c);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 17px; color: #fff;
}
.auth-logo h1 { font-size: 22px; font-weight: 700; color: var(--text); }

/* ── Address box ─────────────────────────────────────────────────────────────── */
.address-box {
  background: var(--bg3); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 12px; color: var(--teal); word-break: break-all; margin: 8px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.copy-btn {
  flex-shrink: 0; padding: 4px 10px; border-radius: 6px;
  background: var(--pink-dim); border: 1px solid rgba(233,30,140,.3);
  color: var(--pink); font-size: 12px; cursor: pointer;
}
.copy-btn:hover { background: var(--pink); color: #fff; }

/* ── Filter bar ──────────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end;
  margin-bottom: 20px;
}
.filter-bar .form-control { width: auto; min-width: 140px; }

/* ── Key field ───────────────────────────────────────────────────────────────── */
.key-field { display: flex; align-items: center; gap: 8px; }
.key-field code {
  font-family: 'SF Mono', 'Consolas', monospace; font-size: 13px;
  background: var(--bg3); padding: 5px 10px;
  border-radius: 5px; border: 1.5px solid var(--border); color: #0a6e60;
}
.regen-btn {
  padding: 4px 10px; border-radius: 5px;
  background: rgba(0,184,156,.1); border: 1.5px solid rgba(0,184,156,.3);
  color: var(--teal); font-size: 12px; cursor: pointer;
}
.regen-btn:hover { background: var(--teal); color: #fff; }

/* ── Modal ───────────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px); z-index: 999;
  display: none; align-items: center; justify-content: center;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px; width: 460px; max-width: 90vw;
  box-shadow: var(--shadow-md);
}
.modal-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.modal-close { float: right; cursor: pointer; color: var(--text-muted); font-size: 20px; line-height: 1; }
.modal-close:hover { color: var(--text); }

/* ── Admin layout ────────────────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px; background: var(--sidebar-bg);
  border-right: 1px solid var(--border); padding: 16px 8px;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-sidebar .brand {
  padding: 4px 10px 16px; font-size: 15px; font-weight: 700;
  border-bottom: 1px solid var(--border); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px; color: var(--text);
}
.admin-sidebar .logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: linear-gradient(135deg, #00b89c, #e91e8c);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: #fff;
}
.admin-content { flex: 1; padding: 28px 32px; overflow-x: hidden; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; margin-bottom: 24px; }
.admin-stat {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px; text-align: center;
  box-shadow: var(--shadow);
}
.admin-stat .s-value { font-size: 24px; font-weight: 700; color: var(--pink); }
.admin-stat .s-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ── Misc ────────────────────────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }
.flex { display: flex; } .flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-20{margin-top:20px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px}
.fw-600{font-weight:600} .fs-12{font-size:12px} .fs-13{font-size:13px}
.fs-18{font-size:18px} .w-full{width:100%}

.empty-state { text-align: center; padding: 60px 20px; color: var(--text-dim); font-size: 13px; }
.empty-state .empty-icon { font-size: 40px; margin-bottom: 12px; color: var(--text-dim); }
