:root {
  --ink: #172026;
  --muted: #5b6670;
  --line: #d8e0e6;
  --panel: #ffffff;
  --paper: #f0f3f4;
  --accent: #d94f34;
  --accent-dark: #a83725;
  --green: #1f7a5a;
  --blue: #21607a;
  --shadow-sm: 0 1px 3px rgba(23, 32, 38, 0.08), 0 4px 12px rgba(23, 32, 38, 0.06);
  --shadow-md: 0 4px 16px rgba(23, 32, 38, 0.12);
  --radius: 6px;
}

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

[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

h2, p {
  margin: 0;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ── Header ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px clamp(12px, 3vw, 36px);
  background: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.brand-text {
  font-size: 21px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.brand-text em {
  font-style: normal;
  color: var(--accent);
}

/* ── Header search ──────────────────────────────────────── */

.header-search {
  display: flex;
  gap: 6px;
  align-items: center;
}

.header-search input[type="search"],
.header-search select {
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.header-search select option {
  background: var(--ink);
  color: #fff;
}

.header-search select:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.header-search input[type="search"] {
  flex: 1;
  min-width: 0;
}

.header-search input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-search select {
  width: auto;
}

.header-search input:focus,
.header-search select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

.search-btn {
  height: 38px;
  padding: 0 18px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: background 140ms;
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--accent-dark);
}

/* ── Header account ─────────────────────────────────────── */

.account-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-name-btn {
  font-size: 13px;
  font-weight: 700;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.account-name-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ── Buttons ────────────────────────────────────────────── */

.primary-button,
.ghost-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: background 140ms, border-color 140ms, transform 100ms;
}

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

.primary-button:hover {
  background: var(--accent-dark);
}

.primary-button:active {
  transform: scale(0.97);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ghost-button:active {
  transform: scale(0.97);
}

/* Ghost buttons outside the dark header */
.filters .ghost-button,
.modal-card .ghost-button,
.results-toolbar .ghost-button {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.filters .ghost-button:hover,
.modal-card .ghost-button:hover {
  background: var(--paper);
  border-color: var(--muted);
}

.icon-button {
  width: 36px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.modal-card .icon-button {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

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

/* ── Category strip ─────────────────────────────────────── */

.quick-tabs {
  display: flex;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0 clamp(12px, 3vw, 36px);
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  padding: 11px 16px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 140ms, border-color 140ms;
}

.tab:hover {
  color: var(--ink);
}

.tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
  font-weight: 700;
}

/* Auth mode tabs in modal */
.auth-mode .tab {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 14px;
  color: var(--muted);
  background: #fff;
}

.auth-mode .tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ── Page layout ────────────────────────────────────────── */

.page-wrap {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px clamp(12px, 3vw, 36px) 48px;
}

/* ── Filters sidebar ────────────────────────────────────── */

.filters {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: start;
  position: sticky;
  top: 102px;
}

.filter-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.filter-heading span {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.reset-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
}

.reset-btn:hover {
  text-decoration: underline;
}

.filter-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: unset;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 79, 52, 0.12);
}

input[type="range"] {
  min-height: unset;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--accent);
}

.range-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
}

fieldset {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: none;
}

legend {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 4px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.check-row input[type="checkbox"] {
  width: 15px;
  min-height: 15px;
  flex-shrink: 0;
}

/* Seller panel in filters */
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.status-row span {
  color: var(--muted);
  font-weight: 600;
}

.status-row strong {
  font-size: 12px;
  font-weight: 700;
}

.seller-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.seller-actions .ghost-button {
  font-size: 12px;
  min-height: 30px;
}

.seller-reg-btn {
  width: 100%;
  font-size: 13px;
}

/* ── Results area ───────────────────────────────────────── */

.results {
  min-width: 0;
}

.results-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.results-toolbar h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
}

/* ── Listing grid ───────────────────────────────────────── */

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.listing-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.part-art {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 8px;
  height: 130px;
  background: var(--art-bg);
}

.part-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.06) 0,
    rgba(255, 255, 255, 0.06) 1px,
    transparent 0,
    transparent 9px
  );
}

.art-badge {
  position: relative;
  z-index: 1;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.listing-body {
  display: grid;
  gap: 8px;
  padding: 12px;
}

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

.listing-head h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
  flex-shrink: 0;
}

.meta {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag {
  border-radius: 999px;
  padding: 2px 8px;
  background: var(--paper);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.verified-tag {
  background: rgba(31, 122, 90, 0.1);
  color: var(--green);
}

.card-seller {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.card-actions .primary-button {
  font-size: 13px;
  min-height: 32px;
}

.card-actions .ghost-button {
  font-size: 13px;
  min-height: 32px;
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.card-actions .ghost-button:hover {
  background: var(--paper);
  border-color: var(--muted);
}

/* ── Modals ─────────────────────────────────────────────── */

.modal {
  width: min(700px, calc(100vw - 24px));
  padding: 0;
  border: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(23, 32, 38, 0.6);
}

.modal-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(23, 32, 38, 0.2);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-title h2 {
  font-size: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid.single {
  grid-template-columns: 1fr;
}

.form-grid label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.wide {
  grid-column: 1 / -1;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.modal-context {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.form-error {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

.auth-mode {
  display: flex;
  gap: 6px;
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  background: #111a21;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: clamp(28px, 5vw, 72px);
  padding: 40px clamp(12px, 3vw, 36px) 36px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-link {
  width: fit-content;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col strong {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 140ms;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(12px, 3vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 500;
}

/* ── Toast ──────────────────────────────────────────────── */

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  max-width: min(400px, calc(100vw - 32px));
  transform: translateY(120%);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr;
    flex-wrap: wrap;
  }

  .header-search {
    grid-column: 1 / -1;
    order: 3;
  }

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

  .page-wrap {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

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

  .form-grid {
    grid-template-columns: 1fr;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .results-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ── Wide modal ─────────────────────────────────────────── */

.modal-wide {
  width: min(900px, calc(100vw - 24px));
}

/* ── Listing detail page ────────────────────────────────── */

#detailPage {
  background: var(--paper);
  min-height: calc(100vh - 60px);
}

.detail-page-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.detail-page-topbar {
  padding: 20px 0 16px;
}

.detail-back-btn {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  font-size: 13px;
}

.detail-back-btn:hover {
  border-color: var(--muted);
  background: var(--paper);
}

.detail-art {
  height: 340px;
  border-radius: 10px;
  background: var(--art-bg, #ccc);
  position: relative;
  margin-bottom: 28px;
}

.detail-art::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.06) 0, rgba(255,255,255,0.06) 1px, transparent 0, transparent 9px);
}

.detail-page-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.detail-page-main h1 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}

.detail-page-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.detail-page-actions .ghost-button,
.detail-page-actions .primary-button {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.detail-page-actions .primary-button {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.detail-page-actions .primary-button:hover {
  background: var(--accent-dark);
}

.detail-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.detail-oem {
  font-size: 13px;
  color: var(--blue);
  font-weight: 700;
  font-family: monospace;
}

.detail-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

.detail-seller-box {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-size: 13px;
}

.detail-seller-box strong {
  display: block;
  margin-bottom: 3px;
}

/* ── Dashboard ──────────────────────────────────────────── */

.dash-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.dash-tabs .tab {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 14px;
  color: var(--muted);
  background: #fff;
}

.dash-tabs .tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.dash-empty {
  padding: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

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

.dash-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 6px 10px;
}

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

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

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.status-dot.published { color: var(--green); }
.status-dot.paused { color: var(--blue); }
.status-dot.sold { color: var(--muted); }
.status-dot.pending { color: var(--yellow, #e9b949); }
.status-dot.accepted { color: var(--green); }
.status-dot.declined { color: var(--accent); }

.dash-actions {
  display: flex;
  gap: 6px;
}

.dash-actions button {
  font-size: 12px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: background 120ms;
}

.dash-actions button:hover {
  background: var(--paper);
}

/* ── Settings tab ───────────────────────────────────────── */

.settings-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.settings-section:last-child {
  border-bottom: none;
}

.settings-section h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--ink);
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
}

.settings-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.settings-form input {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 10px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 120ms;
}

.settings-form input:focus {
  border-color: var(--accent);
}

.settings-form .primary-button {
  align-self: flex-start;
  min-height: 36px;
}

/* ── Messaging ──────────────────────────────────────────── */

.msg-thread {
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  scrollbar-width: thin;
}

.msg-bubble {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.msg-bubble.is-mine {
  align-self: flex-end;
  background: var(--ink);
  color: #fff;
  border-bottom-right-radius: 3px;
}

.msg-bubble.is-theirs {
  align-self: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom-left-radius: 3px;
}

.msg-bubble .msg-meta {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 4px;
}

.msg-empty {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding: 20px 0;
}

.msg-compose {
  display: grid;
  gap: 8px;
}

.msg-compose button {
  justify-self: end;
}

/* ── Price range inputs ─────────────────────────────────── */

.price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ── Toolbar controls ───────────────────────────────────── */

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toolbar-right select {
  min-height: 36px;
  width: auto;
  font-size: 13px;
}

@media (max-width: 700px) {
  .detail-page-body {
    grid-template-columns: 1fr;
  }

  .detail-art {
    height: 200px;
  }

  .detail-page-wrap {
    padding: 0 16px 40px;
  }
}

/* ── Seller type switch (register modal) ─────────────────── */

.seller-type-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.seller-type-btn {
  flex: 1;
  padding: 10px 16px;
  background: #fff;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background 120ms, color 120ms;
}

.seller-type-btn + .seller-type-btn {
  border-left: 1px solid var(--line);
}

.seller-type-btn.is-active {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
