/* =========================================================
   NOVA — Component library
   ========================================================= */

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 42px;
  padding: 0 var(--space-5);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(155deg, var(--brand-400), var(--brand-600));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { filter: brightness(1.08); }

.btn-secondary {
  background: var(--surface-3);
  color: var(--text-primary);
  border-color: var(--border-hairline);
}
.btn-secondary:hover { background: var(--surface-2); border-color: var(--border-strong); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--surface-3); }

.btn-ghost { background: transparent; color: var(--text-secondary); height: 38px; padding: 0 var(--space-3); }
.btn-ghost:hover { color: var(--text-primary); background: var(--surface-3); }

.btn-danger { background: var(--status-critical-bg); color: var(--status-critical); }
.btn-danger:hover { filter: brightness(1.1); }

.btn-sm { height: 34px; padding: 0 var(--space-4); font-size: 12.5px; }
.btn-lg { height: 50px; padding: 0 var(--space-6); font-size: 14.5px; }
.btn-block { width: 100%; }
.btn-icon { width: 42px; height: 42px; padding: 0; flex-shrink: 0; }
.btn:disabled { opacity: 0.5; pointer-events: none; }

/* ---------------- Panels / cards ---------------- */
.panel {
  background: var(--surface-1);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.panel--tight { padding: var(--space-5); }
.panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.panel__head h3 { margin-bottom: 2px; }

.stat-card {
  background: var(--surface-1);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
a.stat-card { text-decoration: none; color: inherit; transition: border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
a.stat-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.stat-card__top { display: flex; align-items: center; justify-content: space-between; }
.stat-card__icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.stat-card__icon svg { width: 18px; height: 18px; }
.stat-card__value { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.stat-card__delta { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 600; }
.stat-card__delta svg { width: 13px; height: 13px; }
.delta-up { color: var(--status-good); }
.delta-down { color: var(--status-critical); }

/* ---------------- Bank card visual ---------------- */
.bank-card {
  position: relative;
  aspect-ratio: 1.586 / 1;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: linear-gradient(150deg, #021a26 0%, #2b56f3 55%, #7994f7 100%);
  box-shadow: var(--shadow-md);
}
.bank-card.is-gold { background: linear-gradient(150deg, #4a3800 0%, #a86f00 55%, #e8b64a 100%); }
.bank-card.is-dark { background: linear-gradient(150deg, #0a0a0d 0%, #1b1b22 55%, #35353f 100%); }
.bank-card.is-frozen { filter: grayscale(0.7) brightness(0.75); }
.bank-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 160px at 100% 0%, rgba(255,255,255,0.18), transparent 60%);
}
.bank-card__row { display: flex; align-items: center; justify-content: space-between; position: relative; }
.bank-card__brand { font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }
.bank-card__chip { width: 38px; height: 28px; border-radius: 6px; background: linear-gradient(140deg,#f4d47c,#c9962e); position: relative; }
.bank-card__number { font-family: var(--font-mono); font-size: 17px; letter-spacing: 0.12em; position: relative; }
.bank-card__meta { display: flex; justify-content: space-between; align-items: flex-end; position: relative; }
.bank-card__meta span { display: block; font-size: 9.5px; letter-spacing: 0.08em; color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 3px; }
.bank-card__meta strong { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.bank-card__network svg { width: 40px; height: 24px; }

/* ---------------- Badges & status ---------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge svg { width: 11px; height: 11px; }
.badge-good { background: var(--status-good-bg); color: var(--status-good); }
.badge-warning { background: var(--status-warning-bg); color: var(--status-warning); }
.badge-serious { background: var(--status-serious-bg); color: var(--status-serious); }
.badge-critical { background: var(--status-critical-bg); color: var(--status-critical); }
.badge-neutral { background: var(--surface-3); color: var(--text-secondary); }
.badge-count {
  min-width: 20px; height: 20px; padding: 0 6px;
  border-radius: var(--radius-pill);
  background: var(--brand-500); color: #fff;
  font-size: 10.5px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}

.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-good { background: var(--status-good); }
.dot-warning { background: var(--status-warning); }
.dot-critical { background: var(--status-critical); }
.dot-brand { background: var(--brand-400); }

/* ---------------- Avatars ---------------- */
.avatar {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(155deg, var(--brand-400), var(--brand-700));
  flex-shrink: 0;
}
.avatar-xs { width: 26px; height: 26px; font-size: 10.5px; }
.avatar-sm { width: 34px; height: 34px; font-size: 12px; }
.avatar-md { width: 42px; height: 42px; font-size: 14px; }
.avatar-lg { width: 64px; height: 64px; font-size: 20px; }
.avatar-group { display: flex; }
.avatar-group .avatar { border: 2px solid var(--surface-1); margin-left: -10px; }
.avatar-group .avatar:first-child { margin-left: 0; }

/* ---------------- Tables ---------------- */
.table-wrap { overflow-x: auto; }
.table { width: 100%; font-size: 13.5px; }
.table thead th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--border-hairline);
  white-space: nowrap;
}
.table tbody td {
  padding: var(--space-3) var(--space-3);
  border-bottom: 1px solid var(--border-hairline);
  color: var(--text-primary);
  vertical-align: middle;
}
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr { transition: background-color var(--dur-fast) var(--ease-out); }
.table tbody tr:hover { background: var(--surface-3); }
.table tbody tr.row-clickable { cursor: pointer; }
.table .cell-muted { color: var(--text-muted); }
.table .cell-merchant { display: flex; align-items: center; gap: var(--space-3); }
.merchant-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.merchant-icon svg { width: 17px; height: 17px; }
.amount-positive { color: var(--status-good); font-weight: 600; }
.amount-negative { color: var(--text-primary); font-weight: 600; }

.th-sort { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.th-sort svg { width: 11px; height: 11px; }

/* ---------------- Forms ---------------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
}
.field .hint { font-size: 12px; color: var(--text-muted); }
.field .error-text { font-size: 12px; color: var(--status-critical); }

.input, .select, .textarea {
  height: 46px;
  padding: 0 var(--space-4);
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  border: 1px solid var(--border-hairline);
  color: var(--text-primary);
  font-size: 14px;
  width: 100%;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.textarea { height: auto; padding: var(--space-3) var(--space-4); min-height: 100px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--brand-400);
  background: var(--surface-2);
  outline: none;
}
.input.has-error, .select.has-error { border-color: var(--status-critical); }

.input-group { position: relative; display: flex; align-items: center; }
.input-group .input { padding-left: 42px; }
.input-group__icon {
  position: absolute; left: 14px;
  color: var(--text-muted);
  display: grid; place-items: center;
}
.input-group__icon svg { width: 17px; height: 17px; }
.input-group__suffix {
  position: absolute; right: 14px;
  color: var(--text-muted); font-size: 12.5px;
}
.input-group__action {
  position: absolute; right: 8px;
  color: var(--text-muted);
}

.select-wrap { position: relative; }
.select { appearance: none; padding-right: 38px; }
.select-wrap svg {
  position: absolute; right: 14px; top: 50%; translate: 0 -50%;
  width: 15px; height: 15px; color: var(--text-muted);
  pointer-events: none;
}

/* ---------------- Rich text editor (admin response form) ---------------- */
.rte {
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-sm);
  background: var(--surface-3);
  overflow: hidden;
}
.rte__toolbar {
  display: flex;
  gap: 2px;
  padding: var(--space-2);
  border-bottom: 1px solid var(--border-hairline);
  background: var(--surface-2);
}
.rte__btn {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: var(--font-sans);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.rte__btn:hover { background: var(--surface-3); color: var(--text-primary); }
.rte__btn.is-active { background: var(--brand-600); color: var(--brand-on); }
.rte__editor {
  min-height: 220px;
  padding: var(--space-4);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  outline: none;
}
.rte__editor:focus { background: var(--surface-2); }
.rte__editor:empty:before {
  content: attr(data-placeholder);
  color: var(--text-muted);
}
.rte__editor b, .rte__editor strong { font-weight: 700; }
.rte__editor ul, .rte__editor ol { margin: 0 0 0 22px; padding: 0; }

.checkbox, .radio {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13.5px;
  color: var(--text-secondary);
  cursor: pointer;
}
.checkbox input, .radio input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--border-strong);
  background: var(--surface-3);
  flex-shrink: 0;
  display: grid; place-items: center;
  transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.checkbox input { border-radius: 5px; }
.radio input { border-radius: 50%; }
.checkbox input::after {
  content: "";
  width: 10px; height: 10px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 45% 68%);
  background: #fff;
  transform: scale(0);
  transition: transform var(--dur-fast) var(--ease-out);
}
.radio input::after {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  transform: scale(0);
  transition: transform var(--dur-fast) var(--ease-out);
}
.checkbox input:checked, .radio input:checked { background: var(--brand-500); border-color: var(--brand-500); }
.checkbox input:checked::after, .radio input:checked::after { transform: scale(1); }

.switch {
  width: 40px; height: 24px;
  border-radius: var(--radius-pill);
  background: var(--surface-3);
  border: 1px solid var(--border-hairline);
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out);
}
.switch__thumb {
  position: absolute; top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform var(--dur-base) var(--ease-out), background-color var(--dur-base) var(--ease-out);
}
.switch.is-on { background: rgba(144,133,233,0.25); border-color: var(--brand-400); }
.switch.is-on .switch__thumb { transform: translateX(16px); background: var(--brand-400); }

.option-tile {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-hairline);
  background: var(--surface-1);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.option-tile:hover { border-color: var(--border-strong); }
.option-tile.is-selected { border-color: var(--brand-400); background: rgba(144,133,233,0.08); }
.option-tile__icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--surface-3); display: grid; place-items: center; flex-shrink: 0;
}
.option-tile__icon svg { width: 20px; height: 20px; }

/* ---------------- Tabs ---------------- */
.tabs { display: flex; flex-wrap: wrap; gap: var(--space-1); border-bottom: 1px solid var(--border-hairline); }
.tab {
  padding: var(--space-3) var(--space-4);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.tab:hover { color: var(--text-primary); }
.tab.is-active { color: var(--text-primary); border-color: var(--brand-400); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.pill-tabs { display: inline-flex; padding: 4px; background: var(--surface-3); border-radius: var(--radius-pill); gap: 2px; }
.pill-tab { padding: 7px 16px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 600; color: var(--text-muted); }
.pill-tab.is-active { background: var(--surface-1); color: var(--text-primary); box-shadow: var(--shadow-sm); }

/* ---------------- Progress / meters ---------------- */
.meter { height: 8px; border-radius: var(--radius-pill); background: var(--surface-3); overflow: hidden; }
.meter__fill { height: 100%; border-radius: var(--radius-pill); background: linear-gradient(90deg, var(--brand-400), var(--brand-600)); }
/* Barre de progression du virement (transfer.php) : légèrement plus épaisse
   que les jauges standard (limite de carte, etc.) pour rester bien lisible
   sur une carte désormais pleine largeur. */
.meter--lg { height: 14px; }

/* ---------------- List rows ---------------- */
.list-row {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border-hairline);
}
.list-row:last-child { border-bottom: none; }
.list-row__body { flex: 1; min-width: 0; }
.list-row__title { font-size: 13.5px; font-weight: 600; }
.list-row__sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.list-row__end { text-align: right; flex-shrink: 0; }

/* ---------------- Modal ---------------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,8,0.6);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface-2);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 460px;
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  transform: translateY(12px) scale(0.98);
  transition: transform var(--dur-base) var(--ease-out);
  max-height: 88vh;
  overflow-y: auto;
}
.modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: var(--space-5); }
.modal__close { color: var(--text-muted); }
.modal__foot { display: flex; gap: var(--space-3); margin-top: var(--space-6); }
.modal__foot .btn { flex: 1; }

/* ---------------- Dropdown menu ---------------- */
.menu-anchor { position: relative; }
.menu-pop--tr { top: calc(100% + 10px); right: 0; left: auto; }
.menu-pop--tl { top: calc(100% + 10px); right: 0; left: auto; }
.menu-pop--wide { width: 328px; }

.user-menu-card {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  background: var(--surface-3);
}
.user-menu-card strong { font-size: 14px; display: block; }

.notif-item { display: flex; gap: var(--space-3); padding: var(--space-3); border-radius: var(--radius-sm); text-decoration: none; color: inherit; cursor: pointer; background: none; border: none; font: inherit; width: 100%; text-align: left; }
.notif-item:hover { background: var(--surface-3); }
.notif-item__icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.notif-item__icon svg { width: 16px; height: 16px; }
.notif-item__body { flex: 1; min-width: 0; }
.notif-item__title { font-size: 13px; font-weight: 600; }
.notif-item__title.is-unread::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-400);
  margin-left: 6px;
  vertical-align: middle;
}
.notif-item__time { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.menu-pop__foot { padding: var(--space-2) var(--space-3); text-align: center; }

.menu-pop {
  position: absolute;
  min-width: 220px;
  background: var(--surface-2);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  z-index: 60;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.menu-pop.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.menu-pop__item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  font-size: 13.5px; font-weight: 500;
  color: var(--text-secondary);
  width: 100%;
  text-align: left;
}
.menu-pop__item svg { width: 16px; height: 16px; }
.menu-pop__item:hover { background: var(--surface-3); color: var(--text-primary); }
.menu-pop__item.is-danger { color: var(--status-critical); }
.menu-pop__divider { height: 1px; background: var(--border-hairline); margin: var(--space-2) 0; }

/* ---------------- Alerts / toasts ---------------- */
.alert {
  display: flex; gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-hairline);
  font-size: 13px;
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }
.alert-info { background: rgba(57,135,229,0.1); border-color: rgba(57,135,229,0.25); color: var(--text-primary); }
.alert-good { background: var(--status-good-bg); color: var(--status-good); }
.alert-warning { background: var(--status-warning-bg); color: var(--status-warning); }
.alert-critical { background: var(--status-critical-bg); color: var(--status-critical); }

.toast-stack {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  z-index: 200;
}
.toast {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--surface-2);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  animation: toast-in var(--dur-slow) var(--ease-out);
}
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------- Empty state ---------------- */
.empty-state {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: var(--space-9) var(--space-6);
  gap: var(--space-3);
}
.empty-state__icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--surface-3); display: grid; place-items: center;
  color: var(--text-muted);
}
.empty-state__icon svg { width: 26px; height: 26px; }

/* ---------------- Auth pages ---------------- */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-shell__form {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--space-10);
}
.auth-shell__form-inner { max-width: 380px; margin-inline: auto; width: 100%; }
.auth-shell__aside {
  position: relative;
  background: linear-gradient(160deg, #021320 0%, #142870 55%, #2b56f3 100%);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: var(--space-9);
}
.auth-shell__aside::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(420px 320px at 85% 15%, rgba(43,86,243,0.28), transparent 60%);
}
.auth-shell__quote { position: relative; color: #fff; max-width: 420px; }
.auth-shell__quote p { color: rgba(255,255,255,0.88); font-size: 20px; line-height: 1.5; font-weight: 500; }
.auth-shell__quote footer { margin-top: var(--space-4); color: rgba(255,255,255,0.6); font-size: 13px; }
.auth-brand { display: flex; align-items: center; gap: var(--space-3); position: relative; color: #fff; }
.auth-brand__mark {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.14); display: grid; place-items: center;
}
.auth-brand__mark svg { width: 22px; height: 22px; }
.auth-brand__mark img { width: 74%; height: 74%; object-fit: contain; }

.auth-divider { display: flex; align-items: center; gap: var(--space-3); color: var(--text-muted); font-size: 12px; margin: var(--space-5) 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--border-hairline); }

.social-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-shell__aside { display: none; }
  .auth-shell__form { padding: var(--space-6); }
}

/* ---------------- Misc utilities ---------------- */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.w-full { width: 100%; }
