/* ============================================================
   JANAKI KOMERC — Customer Account (Login + Dashboard)
   Professional, minimal-animation UI. Reuses tokens from style.css.
   All transitions kept fast (150–200ms), no decorative animations.
   ============================================================ */

:root {
  --cs-sidebar-bg:   #0f172a;
  --cs-sidebar-hi:   #182236;
  --cs-sidebar-text: #cbd5e1;
  --cs-sidebar-mute: #64748b;
  --cs-green:        #16a34a;
  --cs-amber:        #d97706;
  --cs-blue:         #2563eb;
}

/* ── Shared page shell ─────────────────────────────────────── */
.cust-body { background: var(--bg); min-height: 100vh; }

/* ══════════════════════ AUTH (login / register) ══════════════════════ */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-brand { display: none; }
}

.auth-brand {
  background: linear-gradient(150deg, #0f172a 0%, #1e293b 60%, var(--red-dk) 140%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
}
.auth-brand img { height: 42px; width: auto; max-width: 220px; object-fit: contain; align-self: flex-start; margin-bottom: auto; flex-shrink: 0; }
.auth-brand h2 { font-size: 1.9rem; font-weight: 800; line-height: 1.25; margin-bottom: 14px; letter-spacing: -.02em; }
.auth-brand p  { color: #cbd5e1; max-width: 380px; font-size: .95rem; line-height: 1.7; }
.auth-brand-foot { font-size: .78rem; color: #64748b; }

.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}
.auth-form-card { width: 100%; max-width: 420px; }
.auth-form-card .logo-mobile { display: none; height: 36px; width: auto; max-width: 190px; object-fit: contain; margin-bottom: 22px; }
@media (max-width: 900px) {
  .auth-form-card .logo-mobile { display: block; }
}

.auth-tabs {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  font-size: .86rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 6px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: background .15s ease, color .15s ease;
}
.auth-tab.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

.auth-title { font-size: 1.5rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; letter-spacing: -.02em; }
.auth-sub   { color: var(--muted); font-size: .88rem; margin-bottom: 24px; }

.field-group { margin-bottom: 16px; }
.field-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink2);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.field-group input,
.field-group select {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: .92rem;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field-group input:focus,
.field-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-lt);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-hint { font-size: .74rem; color: var(--muted); margin-top: 5px; }
.field-error { font-size: .78rem; color: var(--red); margin-top: 5px; display: none; }
.field-error.show { display: block; }

.acct-type-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.acct-type-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); color: var(--muted); font-size: .86rem; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.acct-type-btn:hover { border-color: var(--red); color: var(--ink); }
.acct-type-btn.active { border-color: var(--red); color: var(--red); background: var(--red-lt); }

.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 40px; }
.pw-eye {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border: none; background: none; color: var(--muted);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* step indicator */
.step-indicator { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.step-dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: var(--muted);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  flex-shrink: 0;
}
.step-dot.active { background: var(--red); border-color: var(--red); color: #fff; }
.step-dot.done    { background: var(--ink); border-color: var(--ink); color: #fff; }
.step-line { flex: 1; height: 2px; background: var(--border); transition: background .15s ease; }
.step-line.done { background: var(--ink); }

.auth-step { display: none; }
.auth-step.active { display: block; }

.auth-actions { display: flex; gap: 10px; margin-top: 22px; }
.auth-actions .btn { flex: 1; justify-content: center; }
.btn-ghost {
  background: var(--bg); color: var(--ink); border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--border); }

.auth-summary { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 6px; }
.auth-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .86rem; border-bottom: 1px dashed var(--border); }
.auth-summary-row:last-child { border-bottom: none; }
.auth-summary-row span:first-child { color: var(--muted); }
.auth-summary-row span:last-child { font-weight: 700; color: var(--ink); }

.auth-terms { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--muted); margin-top: 14px; }
.auth-terms input { margin-top: 3px; }

.auth-alert {
  background: rgba(204,31,47,.08); border: 1px solid rgba(204,31,47,.25); color: var(--red-dk);
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: .84rem; margin-bottom: 16px; display: none;
}
.auth-alert.show { display: block; }
.auth-switch { text-align: center; margin-top: 20px; font-size: .86rem; color: var(--muted); }
.auth-switch a { color: var(--red); font-weight: 700; cursor: pointer; }

/* ══════════════════════ DASHBOARD ══════════════════════ */
/* Sidebar is fixed to the viewport; main column scrolls with the page.
   (Deliberately position:fixed, not sticky — html has overflow-x:clip
   site-wide, which breaks position:sticky for descendants in Chromium.) */
.cust-shell { min-height: 100vh; }

.cust-sidebar {
  background: var(--cs-sidebar-bg);
  color: var(--cs-sidebar-text);
  display: flex;
  flex-direction: column;
  padding: 22px 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}
@media (max-width: 860px) {
  .cust-sidebar { left: -280px; width: 260px; z-index: 500; transition: left .18s ease; box-shadow: var(--shadow-lg); }
  .cust-sidebar.open { left: 0; }
}

.cs-brand { display: flex; align-items: center; gap: 10px; padding: 6px 10px 22px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 16px; }
.cs-brand img { height: 30px; }
.cs-brand span { font-weight: 800; color: #fff; font-size: .95rem; letter-spacing: -.01em; }

.cs-nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.cs-nav-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--cs-sidebar-mute); font-weight: 700; padding: 10px 12px 6px; }
.cs-link {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: 9px;
  color: var(--cs-sidebar-text); font-weight: 600; font-size: .88rem;
  cursor: pointer; border: none; background: none; text-align: left; font-family: inherit;
  transition: background .15s ease, color .15s ease;
}
.cs-link i { width: 18px; text-align: center; color: var(--cs-sidebar-mute); transition: color .15s ease; }
.cs-link:hover { background: rgba(255,255,255,.06); color: #fff; }
.cs-link.active { background: var(--red); color: #fff; }
.cs-link.active i { color: #fff; }

.cs-foot { border-top: 1px solid rgba(255,255,255,.08); padding-top: 10px; margin-top: 10px; display: flex; flex-direction: column; gap: 3px; }
.cs-link.danger:hover { background: rgba(204,31,47,.18); color: #ff8080; }
.cs-link.danger:hover i { color: #ff8080; }

.cust-main { margin-left: 260px; padding: 26px 32px 60px; max-width: 1100px; width: 100%; }
@media (max-width: 860px) { .cust-main { margin-left: 0; } }
@media (max-width: 640px) { .cust-main { padding: 20px 16px 48px; } }


.cust-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 12px; }
.cust-topbar h1 { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.cust-topbar p { color: var(--muted); font-size: .88rem; margin-top: 2px; }
.cs-mobile-toggle { display: none; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); align-items: center; justify-content: center; cursor: pointer; }
@media (max-width: 860px) { .cs-mobile-toggle { display: inline-flex; } }

.cust-panel { display: none; }
.cust-panel.active { display: block; }

/* stat cards (profile) */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 16px; margin-bottom: 26px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.stat-card .stat-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1rem; }
.stat-card .stat-val { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.stat-card .stat-lbl { font-size: .8rem; color: var(--muted); margin-top: 2px; }

.profile-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.profile-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 18px; }

/* ── JK Wallet loyalty card ── */
.wallet-section { margin-top: 26px; max-width: 420px; }
.wallet-section h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.wallet-card {
  position: relative;
  background: linear-gradient(135deg, #16202e 0%, #0f172a 55%, #050b16 100%);
  border-radius: 20px;
  padding: 22px 22px 20px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.35);
  overflow: hidden;
}
.wallet-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(204,31,47,.35), transparent 55%);
  pointer-events: none;
}
.wallet-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; position: relative; }
.wallet-brand { display: flex; align-items: center; gap: 9px; }
.wallet-brand img { width: 26px; height: 26px; border-radius: 6px; object-fit: cover; }
.wallet-brand span { font-size: .82rem; font-weight: 700; letter-spacing: .02em; color: #e5e7eb; }
.wallet-tag {
  font-size: .64rem; font-weight: 800; letter-spacing: .08em; color: #fbbf24;
  background: rgba(251,191,36,.12); border: 1px solid rgba(251,191,36,.3);
  padding: 4px 9px; border-radius: 100px;
}
.wallet-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -.01em; position: relative; margin-bottom: 16px; }
.wallet-stats { display: flex; gap: 30px; margin-bottom: 20px; position: relative; }
.wallet-stats span { display: block; font-size: 1.3rem; font-weight: 800; }
.wallet-stats label { display: block; font-size: .68rem; color: #94a3b8; text-transform: uppercase; letter-spacing: .05em; margin-top: 1px; }
.wallet-barcode-wrap {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 10px 12px; text-align: center; position: relative;
}
.wallet-barcode-wrap svg { width: 100%; height: 46px; }
.wallet-code { font-family: 'Fira Code', 'Consolas', monospace; font-size: .74rem; letter-spacing: .12em; color: #cbd5e1; margin-top: 4px; }
.btn-wallet-add {
  width: 100%; margin-top: 14px; background: #000; color: #fff; border: none; border-radius: 10px;
  padding: 12px; font-size: .9rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .15s ease, transform .15s ease;
}
.btn-wallet-add:hover { background: #1a1a1a; }
.btn-wallet-add:active { transform: scale(.98); }
.btn-wallet-add i { font-size: 1.1rem; }
.wallet-hint { font-size: .78rem; color: var(--muted); margin-top: 10px; line-height: 1.6; }


/* vehicles grid */
.vehicles-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; gap: 12px; flex-wrap: wrap; }
.btn-lime {
  background: #84cc16; color: #0f2005; font-weight: 800; border: none; border-radius: var(--radius-sm);
  padding: 11px 22px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-size: .88rem;
  transition: background .15s ease, transform .15s ease;
}
.btn-lime:hover { background: #a3e635; }
.btn-lime:active { transform: scale(.98); }

.empty-state { text-align: center; padding: 60px 24px; background: var(--surface); border: 1px dashed var(--border); border-radius: var(--radius); color: var(--muted); }
.empty-state i { font-size: 2.4rem; color: var(--border); margin-bottom: 14px; display: block; }
.empty-state p { font-size: .95rem; max-width: 380px; margin: 0 auto; line-height: 1.7; }

.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 16px; }
.vehicle-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.vehicle-card:hover { box-shadow: var(--shadow); border-color: #d1d5db; }
.vc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vc-logo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.vc-logo img { width: 100%; height: 100%; object-fit: cover; }
.vc-logo img.real-logo { width: 68%; height: 68%; object-fit: contain; }
.vc-title strong { display: block; font-size: .98rem; color: var(--ink); font-weight: 800; }
.vc-title span { font-size: .78rem; color: var(--muted); }

.eu-plate {
  display: inline-flex; align-items: stretch; height: 26px; border-radius: 4px; overflow: hidden;
  border: 1px solid #94a3b8; font-family: 'Arial Narrow', Arial, sans-serif;
}
.eu-plate .band { background: #1d4ed8; color: #fbbf24; font-size: .5rem; font-weight: 800; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 0 4px; line-height: 1.1; }
.eu-plate .num { background: #fff; color: #0f172a; font-weight: 800; font-size: .82rem; padding: 0 8px; display: flex; align-items: center; letter-spacing: .03em; }

.vc-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: .78rem; color: var(--muted); margin: 12px 0; }
.vc-meta b { color: var(--ink); font-weight: 700; }

.reg-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.reg-badge.green  { background: rgba(22,163,74,.12);  color: var(--cs-green); }
.reg-badge.yellow { background: rgba(217,119,6,.14);  color: var(--cs-amber); }
.reg-badge.red    { background: rgba(204,31,47,.12);  color: var(--red); }
.reg-badge.gray   { background: var(--bg); color: var(--muted); }

/* ══════════════════════ MODALS ══════════════════════ */
.cust-modal-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.55);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  z-index: 1000; opacity: 0; visibility: hidden; transition: opacity .15s ease, visibility .15s ease;
}
.cust-modal-backdrop.show { opacity: 1; visibility: visible; }
.cust-modal {
  background: var(--surface); border-radius: var(--radius); width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  transform: translateY(8px); transition: transform .15s ease;
}
.cust-modal-backdrop.show .cust-modal { transform: translateY(0); }
.cust-modal.wide { max-width: 920px; }
.cm-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--surface); z-index: 2; }
.cm-header h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.cm-close { width: 32px; height: 32px; border-radius: 8px; border: none; background: var(--bg); color: var(--muted); font-size: 1.1rem; cursor: pointer; }
.cm-close:hover { background: var(--border); }
.cm-body { padding: 22px; }
.cm-footer { padding: 16px 22px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }

/* Forced password-change modal */
.pw-modal-header { flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 30px 24px 12px; border-bottom: none; }
.pw-modal-header h3 { font-size: 1.15rem; }
.pw-modal-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red-lt); color: var(--red);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.pw-modal-note { color: var(--muted); font-size: .86rem; line-height: 1.5; margin: 0 0 18px; text-align: center; }

/* ══════════════════════ VEHICLE DETAIL LAYOUT ══════════════════════ */
.vd-layout { display: grid; grid-template-columns: 260px 1fr; gap: 0; min-height: 420px; }
@media (max-width: 700px) { .vd-layout { grid-template-columns: 1fr; } }
.vd-side { background: var(--bg); border-right: 1px solid var(--border); padding: 22px; }
@media (max-width: 700px) { .vd-side { border-right: none; border-bottom: 1px solid var(--border); } }
.vd-logo { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; box-shadow: var(--shadow-sm); background: var(--bg); display: flex; align-items: center; justify-content: center; }
.vd-logo img { width: 100%; height: 100%; object-fit: cover; }
.vd-logo img.real-logo { width: 68%; height: 68%; object-fit: contain; }
.vd-name { text-align: center; font-weight: 800; color: var(--ink); font-size: 1rem; margin-bottom: 4px; }
.vd-plate-wrap { display: flex; justify-content: center; margin-bottom: 16px; }
.vd-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: .82rem; border-bottom: 1px solid var(--border); }
.vd-row span:first-child { color: var(--muted); }
.vd-row span:last-child { font-weight: 700; color: var(--ink); text-align: right; }

.vd-main { padding: 22px; }
.vd-main-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; flex-wrap: wrap; }
.vd-main-head h4 { font-size: 1rem; font-weight: 800; color: var(--ink); }

.group-list { display: flex; flex-direction: column; gap: 10px; }
.group-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.group-item-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; cursor: pointer; background: var(--bg); font-weight: 700; color: var(--ink); font-size: .88rem;
  transition: background .15s ease;
}
.group-item-head:hover { background: var(--border); }
.group-item-body { display: none; padding: 12px 14px; border-top: 1px solid var(--border); }
.group-item.open .group-item-body { display: block; }
.group-item.open .group-chevron { transform: rotate(90deg); }
.group-chevron { transition: transform .15s ease; }

.part-row { display: grid; grid-template-columns: 1fr 1fr 1fr 60px 32px; gap: 8px; align-items: center; padding: 7px 0; font-size: .82rem; border-bottom: 1px dashed var(--border); }
.part-row:last-child { border-bottom: none; }
.part-row .part-del { color: var(--red); cursor: pointer; text-align: center; background: none; border: none; }
.part-row-head { font-size: .68rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); font-weight: 700; }

.btn-sm { padding: 7px 14px; font-size: .8rem; border-radius: 7px; }
.btn-outline-ink { background: var(--surface); color: var(--ink); border: 1px solid var(--border); }
.btn-outline-ink:hover { background: var(--bg); }
.btn-red-sm { background: var(--red); color: #fff; border: none; }
.btn-red-sm:hover { background: var(--red-dk); }

.km-calc-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 14px; font-size: .85rem; }
.km-calc-box strong { color: var(--ink); }

/* ══════════════════════ SERVICE LOG split panel + history/detail ══════════════════════ */
.svc-log-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 320px; }
@media (max-width: 620px) { .svc-log-layout { grid-template-columns: 1fr; } }
.svc-log-form { padding: 22px; border-right: 1px solid var(--border); }
@media (max-width: 620px) { .svc-log-form { border-right: none; border-bottom: 1px solid var(--border); } }
.svc-log-parts { padding: 22px; max-height: 420px; overflow-y: auto; }
.svc-log-parts h4 { font-size: .88rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.svc-part-check {
  display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 8px; cursor: pointer; font-size: .85rem; color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.svc-part-check:hover { border-color: var(--red); background: var(--red-lt); }
.svc-part-check input { margin-top: 3px; accent-color: var(--red); cursor: pointer; }
.svc-part-meta { color: var(--muted); font-size: .76rem; }

.svc-history-row {
  display: flex; align-items: center; justify-content: space-between; padding: 13px 4px; cursor: pointer;
  border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--ink); transition: background .15s ease;
}
.svc-history-row:last-child { border-bottom: none; }
.svc-history-row:hover { background: var(--bg); }
.svc-points-badge {
  background: rgba(132,204,22,.14); color: #4d7c0f; font-size: .72rem; font-weight: 800;
  padding: 3px 9px; border-radius: 100px;
}

/* Toast (reuse simple variant) */
.cust-toast-container { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 8px; z-index: 2000; }
.cust-toast {
  background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 9px; font-size: .85rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
  animation: cust-toast-in .15s ease;
}
.cust-toast.error { background: var(--red-dk); }
@keyframes cust-toast-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
