/* ==========================================================================
   ZIZO — flat dark-gray theme. No blur, no backdrop-filter, no animations.
   Structure/classes unchanged; visual layer only (low CPU).
   ========================================================================== */

:root {
  --bg: #101615;
  --bg-2: #151e1b;
  --surface: #18221f;
  --surface-2: #1d2a26;
  --surface-3: #263530;
  --line: #2b3a35;
  --line-2: #3a4b45;
  --ink: #edf4f0;
  --muted: #9aa9a2;
  --accent: #73dfa9;
  --accent-2: #47be82;
  --accent-soft: rgba(115, 223, 169, 0.12);
  --ok: #3ecf8f;
  --warn: #d9a441;
  --danger: #e2706f;

  --r-sm: 8px;
  --r: 11px;
  --r-lg: 14px;
  --r-xl: 16px;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow-2: 0 12px 30px -16px rgba(0, 0, 0, 0.7);

  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, Menlo, monospace;

  --focus: var(--accent);

  color-scheme: dark;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

code.mono {
  font-family: var(--mono);
}

h1 {
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.ok {
  color: var(--ok);
}

.muted {
  color: var(--muted);
}

::selection {
  background: rgba(46, 207, 159, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #3a3d41;
  border: 3px solid var(--bg);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a4e53;
}

/* ---- app shell ---- */

.app {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}

.sidebar {
  width: 248px;
  flex: 0 0 248px;
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
}

.sidebar-brand {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.brand img {
  display: block;
}

.nav-links {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  overflow-y: auto;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.12s ease, background 0.12s ease;
}

.nav-link svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.nav-link:hover {
  color: var(--ink);
  background: var(--surface);
}

.nav-link:hover svg {
  color: var(--ink);
}

.nav-link.active {
  color: #fff;
  font-weight: 600;
  background: var(--surface-2);
}

.nav-link.active svg {
  color: var(--accent);
}

.sidebar-foot {
  padding: 16px 20px 18px;
  border-top: 1px solid var(--line);
}

.sidebar-foot .user-line {
  font-size: 12px;
  color: var(--muted);
}

.sidebar-foot .user-line strong {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
}

.panel-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ---- topbar ---- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 30px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}

.topbar-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
}

.topbar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.balance {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 14px 7px 9px;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  background: var(--surface);
}

.balance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #08261b;
  background: var(--accent);
}

.balance-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.2;
}

.balance-amt {
  display: block;
  font-size: 16px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1.25;
}

/* ---- profile dropdown ---- */

.profile {
  position: relative;
}

.profile-summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px 5px 5px;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  background: var(--surface);
  cursor: pointer;
  color: var(--muted);
  transition: border-color 0.12s ease, color 0.12s ease;
}

.profile-summary::-webkit-details-marker {
  display: none;
}

.profile-summary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent);
  color: #08261b;
  font-size: 13px;
  font-weight: 800;
}

.profile-pop {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 268px;
  padding: 10px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  box-shadow: var(--shadow-2);
}

.profile-pop-head {
  padding: 8px 10px 12px;
  border-bottom: 1px solid var(--line);
}

.profile-pop-head strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
}

.profile-pop-head span {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-pop-bal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--r-sm);
  background: var(--surface-3);
  margin: 8px 0;
}

.profile-pop-bal span {
  color: var(--muted);
  font-size: 13.5px;
}

.profile-pop-bal strong {
  color: var(--accent);
  font-size: 15.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.profile-pop .btn-ghost {
  width: 100%;
  justify-content: flex-start;
  padding: 9px 10px;
  border-radius: var(--r-sm);
}

/* ---- content ---- */

.content {
  flex: 1;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 38px 38px 72px;
}

.page-head {
  margin-bottom: 24px;
}

.page-head h1 {
  margin-bottom: 5px;
}

.page-head .sub {
  color: var(--muted);
  font-size: 14px;
}

.eyebrow {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}

.empty {
  padding: 60px 0;
  text-align: center;
  color: var(--muted);
}

/* ---- buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 17px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.12s ease, border-color 0.12s ease;
}

.btn:hover {
  background: var(--surface-3);
  border-color: var(--muted);
}

.btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #08261b;
  font-weight: 800;
}

.btn-primary:hover {
  background: #3adfae;
  border-color: #3adfae;
}

.btn-sm {
  padding: 7px 13px;
  font-size: 13px;
  border-radius: 7px;
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  background: var(--surface-3);
  border-color: transparent;
  color: var(--ink);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  color: var(--muted);
  cursor: pointer;
  flex: 0 0 auto;
  transition: color 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.icon-btn:hover {
  background: var(--surface-3);
  border-color: var(--muted);
  color: var(--ink);
}

/* ---- chips ---- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- forms ---- */

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 15px;
}

.field label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}

.field input,
.field select {
  padding: 11px 13px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.12s ease;
}

.field input::placeholder {
  color: #6a6d72;
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
}

.field select option {
  background: var(--surface);
  color: var(--ink);
}

.error {
  color: var(--danger);
  font-size: 13px;
  margin: 6px 0 12px;
}

.form-actions {
  margin-top: 8px;
}

.form-link {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

.form-link a {
  color: var(--accent);
  font-weight: 700;
}

.form-link a:hover {
  text-decoration: underline;
}

/* ---- auth ---- */

.auth-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg);
}

.auth-bg {
  display: none;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  border-bottom: 1px solid var(--line);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.auth-body {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 34px 20px 70px;
}

.auth-wrap {
  width: 100%;
  max-width: 440px;
}

.auth-card.glass {
  width: 100%;
  padding: 34px 34px 26px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-2);
  background: var(--surface);
  box-shadow: var(--shadow-2);
}

.auth-card-head {
  text-align: center;
  margin-bottom: 22px;
}

.auth-mark {
  display: block;
  margin: 0 auto 14px;
}

.auth-card h1 {
  font-size: 24px;
}

.auth-card .sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 7px;
}

.input-wrap {
  position: relative;
}

.input-wrap .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.input-wrap input {
  width: 100%;
  padding-left: 41px;
  padding-right: 44px;
}

.pw-toggle {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.pw-toggle:hover {
  color: var(--accent);
}

.pw-toggle .eye-off {
  display: none;
}

.pw-toggle.on .eye-open {
  display: none;
}

.pw-toggle.on .eye-off {
  display: block;
}

.btn-block {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
}

.auth-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 22px;
}

.auth-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--muted);
}

.auth-trust svg {
  color: var(--accent);
}

/* ---- gift card grid ---- */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  color: inherit;
  transition: border-color 0.12s ease, background 0.12s ease;
}

.card:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

.card-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--surface-2);
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 14px 16px 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.card-price {
  font-size: 15.5px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.card-buy,
.card-hint {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.card-hint {
  color: var(--muted);
  font-weight: 600;
}

/* ---- breadcrumbs ---- */

.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.crumbs a:hover {
  color: var(--accent);
}

.crumb-sep {
  color: #565a5f;
}

.crumb-current {
  color: var(--ink);
  font-weight: 600;
}

/* ---- product ---- */

.product {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product-img {
  flex: 0 0 540px;
  max-width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.product-img img {
  display: block;
  width: 100%;
}

.product-info {
  flex: 1;
  min-width: 300px;
}

.price {
  font-size: 34px;
  font-weight: 800;
  margin: 6px 0 10px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.product-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 18px 0 24px;
  font-size: 13px;
  color: var(--muted);
}

.product-meta li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-meta svg {
  flex: 0 0 auto;
}

.buy-box {
  max-width: 460px;
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}

.buy-box .btn-primary {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
}

/* ---- toolbar ---- */

.toolbar {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}

.toolbar .field {
  margin-bottom: 0;
}

.tool-search {
  flex: 1;
  min-width: 240px;
}

/* ---- tables ---- */

.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th {
  text-align: left;
  padding: 13px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}

.table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.table tbody tr:hover {
  background: var(--surface-2);
}

.table tbody tr:last-child td {
  border-bottom: none;
}

/* ---- code cell ---- */

.code-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mask,
.code-mask {
  font-family: var(--mono);
  letter-spacing: 2px;
  color: var(--muted);
}

.code-cell code {
  min-width: 150px;
  display: inline-block;
}

.code-revealed {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  padding: 8px 11px;
  border: 1px solid rgba(126, 169, 235, .25);
  border-radius: 11px;
  background: rgba(7, 14, 25, .72);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.code-revealed[hidden] { display: none; }
.code-revealed code { min-width: 0; overflow-wrap: anywhere; white-space: pre-wrap; }
.copy-feedback { color: var(--muted); font-size: 10px; white-space: nowrap; }
.code-revealed:hover { border-color: rgba(126, 169, 235, .48); background: rgba(20, 35, 58, .8); }
.code-revealed.is-copied { border-color: rgba(75, 214, 161, .5); }
.code-revealed.is-copied .copy-feedback { color: var(--ok); }

/* ---- badges ---- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
  white-space: nowrap;
}

.badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.badge-completed {
  background: rgba(62, 207, 143, 0.12);
  border-color: rgba(62, 207, 143, 0.3);
  color: var(--ok);
}

.badge-pending {
  background: rgba(217, 164, 65, 0.12);
  border-color: rgba(217, 164, 65, 0.3);
  color: var(--warn);
}

.badge-cancelled {
  background: rgba(226, 112, 111, 0.12);
  border-color: rgba(226, 112, 111, 0.3);
  color: var(--danger);
}

/* ---- load more ---- */

.load-more {
  display: flex;
  justify-content: center;
  padding: 24px 0 6px;
}

.counter {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

/* ---- dashboard stats ---- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  border-top: 2px solid transparent;
}

.stat:hover {
  border-top-color: var(--accent);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 11px;
  color: var(--accent);
  background: var(--accent-soft);
}

.stat-body {
  min-width: 0;
}

.stat-num {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1.15;
}

.stat-label {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 4px;
}

/* ---- client workspace ---- */

.client-hero {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  min-height: 238px;
  padding: 34px 36px;
  margin-bottom: 38px;
  border: 1px solid #385047;
  border-radius: 18px;
  background: #18251f;
}

.client-hero h1 { max-width: 600px; font-size: clamp(28px, 3vw, 40px); }
.client-hero > div > p:not(.eyebrow) { max-width: 590px; margin-top: 10px; color: var(--muted); font-size: 15px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-balance { align-self: center; width: 255px; padding: 19px 20px; border: 1px solid #42584f; border-radius: 13px; background: #12201a; }
.hero-balance span { display: block; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-balance strong { display: block; margin: 6px 0 13px; font-size: 29px; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.hero-balance a { color: var(--accent); font-size: 13px; font-weight: 700; }
.hero-balance a span { display: inline; color: inherit; font-size: inherit; }
.client-section-heading { margin-bottom: 14px; }
.client-guide { margin-top: 42px; border-top: 1px solid var(--line); padding-top: 24px; }
.guide-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.guide-head span { color: var(--muted); font-size: 12px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.guide-grid > div { min-height: 136px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.guide-grid b { color: var(--accent); font-size: 12px; letter-spacing: .08em; }
.guide-grid h3 { margin: 10px 0 4px; font-size: 14px; }
.guide-grid p { color: var(--muted); font-size: 12.5px; }
.catalog-empty { padding: 54px 30px; border: 1px dashed var(--line-2); border-radius: var(--r-lg); background: var(--surface); text-align: center; }
.catalog-empty p { margin-top: 6px; color: var(--muted); font-size: 14px; }

/* ---- admin ---- */

.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.supplier-state {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 7px 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.supplier-state span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warn);
}

.admin-stats .stat { padding: 17px 19px; }
.admin-stats .stat-num { font-size: 25px; }

.admin-section { margin-top: 38px; }

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 13px;
}

.section-heading p { color: var(--muted); font-size: 13px; margin-top: 3px; }
.table-note { color: var(--muted); font-size: 12px; white-space: nowrap; }
.admin-table { min-width: 920px; }
.admin-table td { font-size: 13px; }
.fulfilment-form { display: grid; grid-template-columns: 112px 155px 165px auto; gap: 7px; align-items: center; }
.fulfilment-form input, .fulfilment-form select, .table-input {
  width: 100%; min-height: 34px; padding: 7px 9px; border: 1px solid var(--line-2);
  border-radius: 7px; background: var(--bg); color: var(--ink); font: inherit;
}
.fulfilment-form input:focus, .fulfilment-form select:focus, .table-input:focus { outline: none; border-color: var(--accent); }
.money-input { min-width: 86px; }
.switch-label { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 600; white-space: nowrap; }
.switch-label input { accent-color: var(--accent); }

/* ---- skeleton loading ---- */

.skeleton {
  display: block;
  height: 12px;
  width: 100%;
  border-radius: 6px;
  background: var(--surface-3);
}

.sk-row td:nth-child(1) .skeleton {
  width: 40%;
}

.sk-row td:nth-child(2) .skeleton {
  width: 72%;
}

/* ---- 404 ---- */

.nf {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bg);
}

.nf-code {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.nf-text {
  color: var(--muted);
  font-size: 15px;
}

/* ---- responsive ---- */

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-img {
    flex-basis: 100%;
  }
  .sidebar {
    width: 208px;
    flex-basis: 208px;
  }
  .topbar {
    padding: 0 20px;
  }
  .content {
    padding: 24px 20px 52px;
  }
  .client-hero { padding: 26px; }
  .hero-balance { width: 220px; }
}

@media (max-width: 640px) {
  .app { display: block; }
  .sidebar { position: static; width: 100%; height: auto; min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .sidebar-brand { height: 58px; padding: 0 16px; border-bottom: 0; }
  .nav-links { flex: none; flex-direction: row; gap: 5px; overflow-x: auto; padding: 0 10px 10px; }
  .nav-link { flex: 0 0 auto; padding: 8px 10px; font-size: 13px; }
  .nav-link svg { width: 16px; height: 16px; }
  .sidebar-foot { display: none; }
  .panel-main { min-width: 0; }
  .topbar { height: 58px; padding: 0 16px; }
  .content { padding: 22px 16px 42px; }
  .client-hero { display: block; min-height: 0; padding: 24px 20px; margin-bottom: 30px; }
  .client-hero h1 { font-size: 28px; }
  .hero-balance { width: 100%; margin-top: 24px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-head { align-items: flex-start; flex-direction: column; gap: 3px; }
  .cards {
    grid-template-columns: 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .partner-hide {
    display: none;
  }
  .topbar-status {
    display: none;
  }
  .balance {
    padding: 6px 10px 6px 8px;
  }
  .admin-head { flex-direction: column; }
}

/* ========================================================================
   ZIZO workspace — compact supplier-cabinet layout
   ======================================================================== */
:root {
  --bg: #171717;
  --bg-2: #202020;
  --surface: #232323;
  --surface-2: #292929;
  --surface-3: #303030;
  --line: #393939;
  --line-2: #4a4a4a;
  --ink: #f2f2ef;
  --muted: #a5a5a1;
  --accent: #2f7df5;
  --accent-2: #1b62d1;
  --accent-soft: rgba(47, 125, 245, .14);
  --ok: #36cb86;
  --r-sm: 8px;
  --r-lg: 13px;
}

body { background: var(--bg); font-size: 14px; }
.sidebar { width: 246px; flex-basis: 246px; background: #202020; border-color: var(--line); }
.sidebar-brand { height: 68px; padding: 0 27px; }
.brand { font-size: 21px; letter-spacing: -.04em; }
.brand img { width: 31px; height: 31px; }
.nav-links { padding: 20px 14px; gap: 4px; }
.nav-label { padding: 0 12px; color: #858580; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.nav-label-account { margin-top: 20px; }
.nav-link { min-height: 40px; padding: 9px 12px; border: 1px solid transparent; color: #c2c2bd; font-weight: 600; }
.nav-link svg { color: #b1b1ac; }
.nav-link:hover { background: #292929; color: #fff; }
.nav-link.active { border-color: #444; background: #292929; color: #fff; box-shadow: inset 3px 0 0 var(--accent); }
.nav-link.active svg { color: var(--accent); }
.sidebar-foot { padding: 14px; }
.side-balance { display: flex; justify-content: space-between; align-items: center; padding: 10px 11px; border: 1px solid #37475f; border-radius: 8px; background: #1b2634; color: #a7b9cf; font-size: 12px; }
.side-balance strong { color: #74b1ff; font-size: 14px; font-variant-numeric: tabular-nums; }
.user-line { display: flex; align-items: center; gap: 9px; margin-top: 10px; padding: 8px 7px; }
.user-line > span:last-child { min-width: 0; overflow: hidden; }
.sidebar-foot .user-line strong { display: block; color: #f1f1ed; font-size: 13px; }
.sidebar-foot .user-line span:last-child { display: block; overflow: hidden; color: #92928e; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.side-avatar { display: grid; width: 29px; height: 29px; place-items: center; flex: 0 0 auto; border-radius: 50%; background: #355b9a; color: #fff; font-size: 12px; font-weight: 800; }
.topbar { height: 68px; padding: 0 34px; background: #202020; border-color: var(--line); }
.topbar-title { font-size: 22px; font-weight: 800; letter-spacing: -.03em; }
.balance { border-color: #3d4e69; background: #1d2734; }
.balance-icon, .avatar { background: var(--accent); color: #fff; }
.profile-summary { border-color: var(--line); background: #292929; }
.content { max-width: 1540px; padding: 34px 40px 72px; }
h1 { font-size: 30px; letter-spacing: -.035em; }
h2 { font-size: 16px; }
.page-head { margin-bottom: 22px; }
.page-head .sub, .section-heading p { color: #9b9b96; }
.eyebrow { color: #73a9ff; }
.btn { min-height: 38px; border-color: #444; background: #2a2a2a; font-weight: 700; }
.btn:hover { border-color: #5d5d5b; background: #333; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: #478cf6; border-color: #478cf6; }
.field input, .field select, .fulfilment-form input, .fulfilment-form select, .table-input { border-color: #454545; background: #202020; }
.field input:focus, .field select:focus, .fulfilment-form input:focus, .fulfilment-form select:focus, .table-input:focus { border-color: var(--accent); }

/* Dashboard */
.welcome { margin: 4px 0 26px; }
.welcome h1 { margin: 3px 0 6px; }
.welcome > p:last-child { color: var(--muted); font-size: 15px; }
.dashboard-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.dashboard-stats .stat { min-height: 128px; padding: 20px; border: 1px solid var(--line); border-top: 1px solid var(--line); background: #242424; }
.dashboard-stats .stat:hover { border-top-color: var(--accent); }
.dashboard-stats .stat-label { color: #aaa9a4; font-size: 10.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.dashboard-stats .stat-num { margin-top: 11px; font-size: 28px; }
.stat-sub { margin-top: 3px; color: #888883; font-size: 12px; }
.accent-value, .positive { color: var(--ok) !important; }
.quick-section { margin-top: 31px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.quick-card { min-height: 160px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r-lg); background: #232323; }
.quick-card:hover { border-color: #537bbc; background: #292929; }
.quick-icon { display: grid; width: 34px; height: 34px; place-items: center; margin-bottom: 16px; border-radius: 9px; background: rgba(47,125,245,.16); color: #78adff; font-size: 18px; font-weight: 700; }
.quick-violet { background: rgba(150, 94, 255, .16); color: #bc96ff; }
.quick-green { background: rgba(54,203,134,.14); color: #61e7a0; }
.quick-card b { display: block; color: #f5f5f1; font-size: 15px; }
.quick-card p { min-height: 42px; margin: 5px 0 10px; color: var(--muted); font-size: 12.5px; }
.quick-card i { color: #75aaff; font-size: 12px; font-style: normal; font-weight: 700; }
.activity-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 30px; }
.activity-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: #232323; }
.activity-title { display: flex; align-items: center; justify-content: space-between; padding: 18px 19px 12px; }
.activity-title a { color: #75aaff; font-size: 12px; font-weight: 700; }
.activity-row { display: flex; align-items: center; gap: 11px; min-height: 61px; padding: 10px 19px; border-top: 1px solid #363636; }
.activity-row > span:nth-child(2) { min-width: 0; flex: 1; }
.activity-row b, .activity-row small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.activity-row b { color: #eeeeeb; font-size: 13px; }
.activity-row small { margin-top: 2px; color: #969692; font-size: 11px; }
.activity-row strong { color: #ff7f7f; font-size: 13px; font-variant-numeric: tabular-nums; }
.activity-mark { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; background: rgba(47,125,245,.14); color: #77adff; font-weight: 800; }
.payment-mark { background: rgba(54,203,134,.14); color: #61e7a0; }
.activity-empty { padding: 28px 19px; color: var(--muted); font-size: 13px; }

/* Catalog */
.chips { gap: 8px; margin: 0 0 20px; }
.chip { padding: 8px 13px; border-radius: 8px; border-color: #414141; background: #242424; }
.chip:hover { border-color: var(--accent); background: #27334a; }
.cards { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.card { border-color: #3b3b3b; border-radius: 13px; background: #252525; }
.card:hover { border-color: #5b91e8; background: #292929; }
.card-image { aspect-ratio: 1.65 / 1; background: #171717; }
.card-body { padding: 13px 14px 14px; }
.card-title { color: #f1f1ed; font-size: 13.5px; }
.card-price { color: #79adff; }
.card-buy { color: #7cadff; }
.catalog-empty { border-color: #444; background: #242424; }

/* Catalog tiles: the outer edge picks up a restrained shade from each image. */
.card {
  position: relative;
  overflow: hidden;
  padding: 7px;
  border: 1px solid transparent;
  border-radius: 15px;
  background: #292929;
  box-shadow: none;
  transition: background .16s ease, border-color .12s ease .12s, transform .16s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  border: 1px solid #fff;
  background: transparent;
}
.card:hover {
  border-color: #6d6d6d;
  background: #303030;
  transform: translateY(-2px);
}
.card:hover::before { animation: card-hover-flash .15s ease-out both; }
@keyframes card-hover-flash {
  from { opacity: .92; }
  to { opacity: 0; }
}
.card-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.86 / 1;
  border: 0;
  border-radius: 10px;
  background: #171717;
}
.card-body { position: relative; z-index: 1; padding: 11px 7px 0; gap: 9px; }
.card-title { color: #f8f8f5; font-size: 14px; }
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  margin: 0 -1px;
  padding: 0 9px;
  border: 1px solid #363636;
  border-radius: 8px;
  background: #222;
  color: #9da4a9;
  font-size: 12px;
}
.card-meta b { color: #d9e2e6; font-size: 14px; }
.product-unavailable { border-color: #4a4a4a; background: #272727; }
.product-unavailable strong { display: block; color: #f2f2ef; margin-bottom: 6px; }
.product-unavailable p { margin: 0; color: #9fa5aa; line-height: 1.5; }
.product-list-wrap { overflow-x: auto; border: 1px solid #3d3d3d; border-radius: 14px; background: #242424; }
.product-list-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.product-list-table th { padding: 15px 20px; background: #2a2a2a; border-bottom: 1px solid #3d3d3d; color: #9ca5aa; font-size: 11px; letter-spacing: .04em; text-align: left; text-transform: uppercase; }
.product-list-table td { padding: 17px 20px; border-bottom: 1px solid #373737; color: #f1f1ed; font-size: 14px; }
.product-list-table tbody tr:last-child td { border-bottom: 0; }
.product-list-table tbody tr:hover { background: #292929; }
.stock { font-size: 12px; font-weight: 700; }
.stock-yes { color: #62d79a; }
.stock-pending { color: #b6bdc2; }
.qty-placeholder { display: inline-block; min-width: 88px; padding: 7px 10px; border: 1px solid #444; border-radius: 8px; color: #929a9f; text-align: center; }
.product-select { padding: 7px 12px; font-size: 12px; }
.product-pending { color: #8e969b; font-size: 12px; font-weight: 700; }
.product { gap: 26px; }
.product-img { flex-basis: 48%; border-color: #424242; border-radius: 14px; }
.product-info { max-width: 500px; }
.price { color: #7eb1ff; }
.buy-box { border-color: #424242; border-radius: 14px; background: #242424; }
.toolbar, .table-wrap { border-color: #3d3d3d; background: #242424; }
.toolbar { padding: 15px; }
.table th { background: #2a2a2a; border-color: #3d3d3d; }
.table td { border-color: #373737; }
.table tbody tr:hover { background: #292929; }

@media (max-width: 1240px) { .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 920px) { .dashboard-stats, .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } .content { padding: 28px 24px 56px; } }
@media (max-width: 640px) { .sidebar { background: #202020; } .nav-label { display: none; } .nav-links { padding-top: 0; } .nav-link { min-height: 35px; } .topbar-title { font-size: 18px; } .content { padding: 24px 16px 48px; } .dashboard-stats, .quick-grid, .activity-grid { grid-template-columns: 1fr; } .cards { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; } .card-body { padding: 10px; } .card-title { font-size: 12.5px; } }

/* Final client workspace theme: deep navy glass surfaces with quiet accents. */
:root { --bg: #070b14; --surface: rgba(15, 24, 42, .7); --surface-2: rgba(24, 37, 62, .78); --ink: #f3f6ff; --muted: #a7b2c8; --line: rgba(166, 193, 255, .14); --accent: #6698ff; --ok: #4bd6a1; }
body { background: radial-gradient(900px 580px at 88% -8%, rgba(89, 95, 230, .19), transparent 62%), radial-gradient(760px 520px at 22% 105%, rgba(40, 191, 206, .13), transparent 62%), #070b14; color: var(--ink); }
.app { background: transparent; }
.sidebar { background: rgba(10, 16, 29, .72); border-right: 1px solid var(--line); backdrop-filter: blur(18px) saturate(135%); }
.topbar { background: rgba(10, 16, 29, .52); border-bottom-color: var(--line); backdrop-filter: blur(18px) saturate(135%); }
.content { background: transparent; }
.nav-link { color: #aebbd2; border: 1px solid transparent; }
.nav-link:hover { background: rgba(89, 143, 255, .09); color: #f5f8ff; }
.nav-link.active { background: rgba(87, 143, 255, .13); border-color: rgba(137, 176, 255, .24); color: #f6f9ff; box-shadow: inset 2px 0 #72d8eb; }
.nav-label { color: #6e82a4; letter-spacing: .1em; }
.side-balance, .balance, .profile-pop { background: rgba(20, 32, 55, .66); border-color: var(--line); box-shadow: inset 0 1px rgba(255,255,255,.05); }
.balance { border-radius: 12px; }
.glass-panel { background: linear-gradient(135deg, rgba(24, 37, 63, .76), rgba(12, 19, 34, .65)); border: 1px solid var(--line); box-shadow: inset 0 1px rgba(255,255,255,.055), 0 16px 42px rgba(0,0,0,.15); backdrop-filter: blur(14px) saturate(125%); }
.welcome { display: flex; align-items: center; justify-content: space-between; min-height: 156px; padding: 27px 31px; border-radius: 18px; overflow: hidden; }
.welcome h1 { margin: 5px 0 7px; color: #f7f9ff; }
.welcome p { color: #b2bfd5; }
.welcome-art { width: 170px; color: rgba(99, 211, 236, .36); }
.dashboard-stats .stat { position: relative; display: flex; gap: 13px; min-height: 128px; padding: 20px; border-radius: 15px; overflow: hidden; }
.dashboard-stats .stat::before { content: ""; position: absolute; top: 0; left: 20px; right: 20px; height: 2px; background: var(--stat-color); opacity: .82; }
.stat-blue { --stat-color: #6498ff; }.stat-violet { --stat-color: #a48aff; }.stat-green { --stat-color: #52d5a1; }.stat-cyan { --stat-color: #48d5e6; }
.stat-icon, .quick-icon, .activity-mark { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; border-radius: 10px; background: rgba(100, 152, 255, .13); color: #91b6ff; }
.stat-icon svg, .quick-icon svg, .activity-mark svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.stat-violet .stat-icon, .quick-violet { background: rgba(164,138,255,.14); color: #b8a7ff; }.stat-green .stat-icon, .quick-green { background: rgba(82,213,161,.13); color: #74e0b6; }.stat-cyan .stat-icon { background: rgba(72,213,230,.13); color: #74deea; }
.stat-label, .stat-sub { color: #aebbd2; }.stat-num { color: #f6f8ff; }.accent-value { color: #80b4ff; }
.quick-card, .activity-card { border-radius: 15px; }
.quick-card { border-color: var(--line); color: var(--ink); }.quick-card:hover { transform: translateY(-2px); border-color: rgba(141,182,255,.35); background: rgba(25, 42, 73, .8); }.quick-card p, .quick-card i { color: #aebbd2; }
.activity-card { border-color: var(--line); }.activity-row { border-color: rgba(166,193,255,.11); }.activity-mark { width: 31px; height: 31px; }.payment-mark { background: rgba(82,213,161,.13); color: #71deb4; }.activity-row small { color: #9dabC5; }
.card, .product-list-wrap, .toolbar, .table-wrap { background: rgba(16, 26, 45, .7); border-color: var(--line); }.card-meta { background: rgba(5, 10, 20, .28); border-color: rgba(166,193,255,.11); }.card:hover { border-color: rgba(194, 207, 221, .58); background: rgba(26, 39, 64, .86); }.product-list-table th, .table th { background: rgba(31, 47, 77, .7); border-color: var(--line); }.product-list-table td, .table td { border-color: rgba(166,193,255,.1); }
.btn-primary { background: linear-gradient(135deg, #35cde0, #4d78ef); border-color: transparent; box-shadow: inset 0 1px rgba(255,255,255,.28), 0 8px 22px rgba(53, 175, 224, .18); }.btn-primary:hover { background: linear-gradient(135deg, #54daeb, #618af7); }
@supports not (backdrop-filter: blur(1px)) { .sidebar, .topbar, .glass-panel { background: #101a2c; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ---- separate administration workspace ---- */
.admin-app { display: flex; min-height: 100vh; background: #171717; color: var(--ink); }
.admin-sidebar { display: flex; width: 240px; flex: 0 0 240px; min-height: 100vh; flex-direction: column; background: #202020; border-right: 1px solid #393939; }
.admin-brand { display: flex; align-items: center; gap: 9px; height: 68px; padding: 0 24px; border-bottom: 1px solid #393939; color: #f3f3ef; font-size: 20px; font-weight: 800; letter-spacing: -.04em; }
.admin-brand small { margin-left: 2px; padding: 3px 5px; border: 1px solid #4067a1; border-radius: 4px; color: #80aefd; font-size: 9px; letter-spacing: .08em; }
.admin-nav { display: flex; flex-direction: column; gap: 5px; padding: 24px 14px; }
.admin-nav > span { padding: 0 11px 7px; color: #898985; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.admin-nav a { display: flex; align-items: center; gap: 10px; min-height: 40px; padding: 9px 11px; border: 1px solid transparent; border-radius: 8px; color: #c5c5c0; font-size: 14px; font-weight: 700; }
.admin-nav a:hover { background: #292929; color: #fff; }
.admin-nav a.active { border-color: #414141; background: #292929; box-shadow: inset 3px 0 0 #2f7df5; color: #fff; }
.admin-nav a.active svg { color: #6fa8ff; }
.admin-user { display: flex; align-items: center; gap: 9px; margin-top: auto; padding: 16px; border-top: 1px solid #393939; }
.admin-user > span { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: #315c9e; color: #fff; font-size: 13px; font-weight: 800; }
.admin-user div { min-width: 0; flex: 1; }
.admin-user b, .admin-user small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-user b { color: #eee; font-size: 13px; }.admin-user small { color: #949490; font-size: 11px; }
.admin-user button { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid #404040; border-radius: 7px; background: transparent; color: #aaa; cursor: pointer; }
.admin-user button:hover { color: #fff; border-color: #626262; }
.admin-main { min-width: 0; flex: 1; }.admin-topbar { display: flex; height: 68px; align-items: center; justify-content: space-between; padding: 0 34px; border-bottom: 1px solid #393939; background: #202020; }
.admin-topbar span { display: block; color: #888; font-size: 11px; }.admin-topbar strong { display: block; margin-top: 1px; font-size: 18px; letter-spacing: -.02em; }.admin-back { padding: 8px 10px; border: 1px solid #444; border-radius: 7px; color: #9cc2ff; font-size: 12px; font-weight: 700; }
.admin-content { max-width: 1550px; padding: 36px 40px 70px; }.admin-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }.admin-page-head h1 { margin: 3px 0 5px; }.admin-page-head p:last-child { color: #a4a4a0; }.admin-count { padding: 7px 10px; border: 1px solid #414141; border-radius: 7px; background: #242424; color: #aaa; font-size: 12px; white-space: nowrap; }
.admin-data-table { overflow: auto; border: 1px solid #3c3c3c; border-radius: 12px; background: #242424; }.admin-data-table table { width: 100%; min-width: 880px; border-collapse: collapse; }.admin-data-table th { padding: 13px 16px; border-bottom: 1px solid #3c3c3c; background: #2a2a2a; color: #aaa9a4; font-size: 10.5px; font-weight: 800; letter-spacing: .07em; text-align: left; text-transform: uppercase; white-space: nowrap; }.admin-data-table td { padding: 14px 16px; border-bottom: 1px solid #383838; color: #d7d7d2; font-size: 13px; white-space: nowrap; }.admin-data-table tr:last-child td { border-bottom: 0; }.admin-data-table tbody tr:hover { background: #292929; }.admin-data-table td strong { display: block; color: #f0f0ec; font-weight: 700; }.admin-data-table td small { display: block; margin-top: 2px; color: #91918d; font-size: 11px; }.admin-data-table .money { color: #79adff; font-weight: 800; font-variant-numeric: tabular-nums; }.admin-data-table .positive { color: #54d89a !important; }.admin-empty { padding: 48px !important; color: #999 !important; text-align: center; }.admin-badge { display: inline-flex; align-items: center; padding: 4px 9px; border: 1px solid #454545; border-radius: 999px; background: #2b2b2b; color: #bfbfba; font-size: 11px; font-weight: 700; }.admin-badge-completed { border-color: rgba(54,203,134,.35); background: rgba(54,203,134,.12); color: #60dfa1; }.admin-badge-pending, .admin-badge-processing { border-color: rgba(231,176,69,.35); background: rgba(231,176,69,.1); color: #eec66e; }.admin-badge-cancelled { border-color: rgba(233,95,95,.35); background: rgba(233,95,95,.1); color: #f18787; }
@media (max-width: 700px) { .admin-app { display: block; }.admin-sidebar { width: 100%; min-height: 0; }.admin-brand { height: 56px; }.admin-nav { flex-direction: row; padding: 9px 10px; overflow-x: auto; }.admin-nav > span { display: none; }.admin-nav a { flex: 0 0 auto; min-height: 36px; }.admin-user { display: none; }.admin-topbar { height: 56px; padding: 0 16px; }.admin-content { padding: 24px 16px 48px; }.admin-page-head { align-items: flex-start; flex-direction: column; gap: 12px; } }
