/* Кабинет БОКС — тёмный B2B, оранжевый акцент */

:root {
  --bg-deep: #0a0a0b;
  --bg-panel: #121417;
  --bg-card: #1a1e23;
  --bg-card-hover: #222830;
  --border: #2a313b;
  --text: #f4f5f7;
  --text-muted: #9aa3af;
  --accent: #e85d2c;
  --accent-dim: #c94e26;
  --accent-glow: rgba(232, 93, 44, 0.22);
  --radius: 10px;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
  --container: min(1120px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 100;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.brand-text {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-left: auto;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

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

.header-actions {
  display: flex;
  gap: 10px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dim);
  border-color: var(--accent-dim);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

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

.btn-ghost {
  padding: 9px 14px;
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

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

/* ── Hero ── */

.hero {
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 0%, var(--accent-glow), transparent 55%),
    var(--bg-deep);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    width: 100%;
    margin-left: 0;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 28px;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ── Preview mock ── */

.hero-preview {
  position: relative;
}

.preview-shell {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(165deg, var(--bg-panel) 0%, #0f1216 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
}

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

.preview-dot:first-child {
  background: #ff5f56;
}

.preview-dot:nth-child(2) {
  background: #ffbd2e;
}

.preview-dot:nth-child(3) {
  background: #27c93f;
}

.preview-title {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 280px;
}

@media (max-width: 520px) {
  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }
}

.preview-sidebar {
  padding: 16px;
  border-right: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.ph-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 10px;
}

.ph-line.short {
  width: 60%;
}

.preview-main {
  padding: 16px;
}

.preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.pill.accent {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 93, 44, 0.08);
}

.pill.muted {
  opacity: 0.65;
}

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

.preview-table th,
.preview-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.preview-table th {
  color: var(--text-muted);
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
}

.badge.ok {
  background: rgba(56, 161, 105, 0.18);
  color: #63d892;
}

.badge.wait {
  background: rgba(232, 93, 44, 0.15);
  color: var(--accent);
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 520px) {
  .preview-cards {
    grid-template-columns: 1fr;
  }
}

.mini-card {
  padding: 10px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.mini-label {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.mini-card strong {
  font-size: 14px;
}

/* ── Sections ── */

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
}

.section-sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.tile-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.15s, background 0.15s;
}

.tile-card:hover {
  border-color: rgba(232, 93, 44, 0.35);
  background: var(--bg-card-hover);
}

.tile-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.tile-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  background: var(--accent);
  color: #fff;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
}

.steps p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Cabinet split */

.cabinet-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 820px) {
  .cabinet-split {
    grid-template-columns: 1fr;
  }
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
}

.cabinet-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.cabinet-caption {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

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

.dot.accent {
  background: var(--accent);
}

/* Benefits */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.benefit {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.benefit-icon {
  display: block;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 10px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.benefit p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

/* Final CTA */

.cta-final {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 120%, var(--accent-glow), transparent 55%),
    var(--bg-deep);
  border-top: 1px solid var(--border);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
}

.cta-inner > p {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--border);
  background: #070708;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-logo {
  opacity: 0.95;
}

.footer-note {
  margin: 0;
  flex: 1 1 220px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* ---------- Дилерский кабинет ---------- */

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

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.dealer-shell {
  min-height: 100vh;
  background: radial-gradient(ellipse 70% 45% at 50% 0%, rgba(232, 93, 44, 0.08), transparent),
    var(--bg, #0a0a0b);
}

.dealer-topbar {
  border-bottom: 1px solid var(--border, #2a313b);
  background: rgba(26, 30, 35, 0.92);
  backdrop-filter: blur(8px);
}

.dealer-topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
}

.dealer-brand-link {
  display: flex;
  align-items: center;
  margin-right: auto;
  text-decoration: none;
  line-height: 0;
}

.dealer-brand-link:hover .dealer-header-logo {
  opacity: 0.88;
}

.dealer-header-logo {
  display: block;
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.dealer-email {
  font-size: 13px;
}

.dealer-logout-form {
  margin: 0;
}

.dealer-main {
  padding: 32px 16px 48px;
}

.dealer-page-title {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.dealer-page-lead {
  margin: 0 0 28px;
  max-width: 520px;
}

.dealer-order-subtitle {
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.dealer-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin-bottom: 28px;
}

.dealer-product-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--border, #2a313b);
  background: var(--surface, #1a1e23);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.dealer-product-card:hover {
  border-color: rgba(232, 93, 44, 0.45);
  transform: translateY(-2px);
}

.dealer-product-card-img-wrap {
  background: #f4f6f8;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.dealer-product-card-img-wrap img {
  width: 100%;
  max-height: 200px;
  height: auto;
  object-fit: contain;
}

.dealer-product-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.dealer-karniz-hint {
  margin-top: 8px;
  font-size: 14px;
}

.dealer-mono-layout {
  max-width: 640px;
}

.dealer-form-section {
  margin: 0 0 28px;
}

.dealer-form-section-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
}

.dealer-form-help {
  margin: -4px 0 14px;
  font-size: 13px;
  line-height: 1.45;
}

.mono-length-hint {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.mono-field-error {
  margin-top: 10px;
}

.dealer-order-form.mono-order-form .dealer-input-narrow,
.dealer-order-form.mono-order-form .dealer-select-narrow {
  max-width: 220px;
}

.dealer-radio-tiles-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px;
}

.dealer-radio-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.dealer-radio-tile {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border, #2a313b);
  background: var(--surface, #1a1e23);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dealer-radio-tile-body {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  padding-left: 28px;
}

.dealer-radio-tile input[type="radio"] {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.dealer-radio-tile:hover {
  border-color: rgba(232, 93, 44, 0.35);
}

.dealer-radio-tile:has(input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.dealer-radio-tile:has(input:checked) {
  border-color: rgba(232, 93, 44, 0.65);
  background: rgba(232, 93, 44, 0.08);
}

.dealer-radio-tile:has(input:checked) .dealer-radio-tile-body {
  color: var(--text);
}

.dealer-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.mono-order-line-card {
  margin-bottom: 0;
}

.mono-order-lines-root > .mono-order-line-card + .mono-order-line-card {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border, #2a313b);
}

.mono-order-line-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.mono-order-line-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 56px;
  height: 56px;
  padding: 0 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #121212;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.mono-remove-line-btn {
  margin-left: auto;
  padding: 0;
  appearance: none;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 3px;
}

.mono-remove-line-btn:hover {
  color: var(--accent);
}

.mono-remove-line-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  color: var(--accent);
}

.mono-remove-line-btn[hidden] {
  display: none !important;
}

.mono-add-line-wrap {
  margin: 8px 0 24px;
}

.mono-add-line-btn {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  text-align: left;
  padding: 12px 16px;
  line-height: 1.35;
  border-style: dashed;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.mono-add-line-btn:hover:not(:disabled) {
  border-color: rgba(232, 93, 44, 0.45);
  color: var(--accent);
}

.mono-add-line-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mono-add-line-plus {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  background: rgba(232, 93, 44, 0.15);
  color: var(--accent);
}

.mono-add-line-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.mono-next-line-block {
  padding-top: 4px;
}

.mono-next-line-block-offset {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.mono-next-line-block p:last-child {
  margin-bottom: 0;
}

.dealer-next-actions {
  margin-top: 20px;
}

.dealer-draft-summary {
  padding: 16px 18px;
  margin: 16px 0 20px;
  border-radius: 10px;
  border: 1px solid var(--border, #2a313b);
  font-size: 14px;
  line-height: 1.55;
}

.dealer-draft-summary p {
  margin: 0 0 8px;
}

.dealer-draft-summary p:last-child {
  margin-bottom: 0;
}

.mono-summary-label {
  color: var(--text);
  font-weight: 600;
}

.dealer-breadcrumb {
  margin-bottom: 16px;
  font-size: 13px;
}

.dealer-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.dealer-breadcrumb a:hover {
  text-decoration: underline;
}

.dealer-action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.dealer-action-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 12px;
  border: 1px solid var(--border, #2a313b);
  background: var(--surface, #1a1e23);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.dealer-action-card:hover {
  border-color: rgba(232, 93, 44, 0.55);
  transform: translateY(-2px);
}

.dealer-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 93, 44, 0.18);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dealer-action-label {
  font-weight: 700;
  font-size: 17px;
}

.dealer-action-hint {
  font-size: 13px;
}

.dealer-placeholder-badge {
  display: inline-block;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(232, 93, 44, 0.18);
  color: var(--accent);
}

.dealer-auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232, 93, 44, 0.15), transparent), #0a0a0b;
}

.dealer-auth-card {
  width: 100%;
  max-width: 420px;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #2a313b;
  background: #1a1e23;
}

.dealer-auth-card-wide {
  max-width: 460px;
}

.dealer-auth-logo {
  display: block;
  margin: 0 auto 12px;
}

.dealer-auth-logo-link {
  display: block;
  text-align: center;
}

.dealer-auth-title {
  margin: 12px 0 8px;
  font-size: 22px;
  text-align: center;
}

.dealer-auth-lead {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.dealer-banner {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.dealer-banner-success {
  background: rgba(52, 168, 83, 0.15);
  border: 1px solid rgba(52, 168, 83, 0.35);
  color: #b6ebc6;
}

.dealer-banner-error {
  background: rgba(232, 93, 44, 0.12);
  border: 1px solid rgba(232, 93, 44, 0.35);
  color: #fdba74;
}

.dealer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dealer-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
}

.dealer-input {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #2a313b;
  background: #101317;
  color: var(--text);
  font-size: 15px;
}

.dealer-input:focus {
  outline: none;
  border-color: rgba(232, 93, 44, 0.55);
}

.dealer-form-submit {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

.dealer-auth-footer {
  margin: 20px 0 0;
  text-align: center;
  font-size: 14px;
}

.dealer-auth-footer a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.dealer-auth-footer a:hover {
  text-decoration: underline;
}

.dealer-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
