/* ==========================================================================
   Mercatto — Main stylesheet
   Mobile-first. All values come from tokens.css.
   ========================================================================== */

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-1);
  background: var(--surface-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

::selection { background: var(--brand-100); color: var(--brand-800); }

/* ── Utilities ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: var(--sp-4);
  z-index: calc(var(--z-header) + 1);
  padding: var(--sp-3) var(--sp-5);
  background: var(--brand-600); color: var(--text-inverse);
  border-radius: var(--r-md); font-weight: 600;
}
.skip-link:focus { top: var(--sp-4); }

.section { padding-block: var(--section-y); }
.section--muted { background: var(--surface-2); }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-8);
}
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-h2); line-height: var(--lh-snug); letter-spacing: -0.02em;
}
.section-link {
  color: var(--brand-600); font-weight: 600; font-size: var(--fs-sm);
  display: inline-flex; align-items: center; gap: var(--sp-2);
}
.section-link:hover { color: var(--brand-700); }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2);
  padding: 0.8rem 1.35rem;
  border-radius: var(--r-md);
  font-weight: 600; font-size: var(--fs-sm);
  line-height: 1.2; white-space: nowrap;
  border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn--primary { background: var(--brand-600); color: var(--text-inverse); box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-700); }

.btn--secondary { background: var(--surface-1); color: var(--text-1); border-color: var(--border-1); box-shadow: var(--shadow-sm); }
.btn--secondary:hover { border-color: var(--brand-300); background: var(--brand-50); }

.btn--ghost { color: var(--text-2); }
.btn--ghost:hover { color: var(--text-1); background: var(--surface-3); }

.btn--lg { padding: 1rem 1.75rem; font-size: var(--fs-body); border-radius: var(--r-lg); }
.btn--block { width: 100%; }

/* ── Brand mark ──────────────────────────────────────────────────────── */
.brand { display: inline-flex; align-items: center; gap: var(--sp-2); }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.375rem; letter-spacing: -0.03em;
}

/* ── Header ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: var(--ink-900); color: var(--text-inverse);
}
.header-inner {
  display: flex; align-items: center; gap: var(--sp-6);
  min-height: 64px;
}
.header-nav { display: none; flex: 1; }
.header-actions { display: none; align-items: center; gap: var(--sp-2); margin-left: auto; }

.nav-list { display: flex; align-items: center; gap: var(--sp-1); }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-sm); font-weight: 500;
  color: var(--text-inverse-2); border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease);
}
.nav-link:hover { color: var(--text-inverse); }
.nav-link[aria-current="page"] { color: var(--text-inverse); font-weight: 600; }
.nav-link[aria-current="page"]::after {
  content: ''; position: absolute; left: var(--sp-3); right: var(--sp-3); bottom: -2px;
  height: 2px; border-radius: 2px; background: var(--brand-gradient);
}
.nav-link svg { width: 14px; height: 14px; }

.header-cta { color: var(--text-inverse-2); }
.header-cta:hover { color: var(--text-inverse); background: rgba(255, 255, 255, 0.08); }

/* Mobile menu toggle */
.nav-toggle {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-md); color: var(--text-inverse);
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }

.mobile-nav {
  display: none;
  padding: var(--sp-4) 0 var(--sp-6);
  border-top: 1px solid var(--border-inverse);
}
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
.mobile-nav .nav-link { padding: var(--sp-4) var(--sp-2); font-size: var(--fs-body); }
.mobile-nav .nav-link[aria-current="page"]::after { display: none; }
.mobile-nav-actions { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }
.mobile-nav-actions .btn--ghost { color: var(--text-inverse); border: 1px solid var(--border-inverse); }
.mobile-nav-actions .btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }

@media (min-width: 900px) {
  .header-nav { display: flex; justify-content: center; }
  .header-actions { display: flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) var(--section-y);
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--brand-50) 0%, transparent 62%),
    var(--surface-1);
}
.hero-grid { display: grid; gap: var(--sp-10); align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4); margin-bottom: var(--sp-5);
  background: var(--brand-100); color: var(--brand-700);
  border-radius: var(--r-pill); font-size: var(--fs-sm); font-weight: 600;
}
.hero-badge svg { width: 16px; height: 16px; }

.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-display); line-height: var(--lh-tight);
  letter-spacing: -0.035em; margin-bottom: var(--sp-5);
}
.hero-title em {
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead {
  font-size: var(--fs-lead); color: var(--text-2);
  max-width: 46ch; margin-bottom: var(--sp-6);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.hero-actions .btn { flex: 1 1 auto; }

.hero-trust {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--text-2); font-size: var(--fs-sm);
}
.hero-trust svg { width: 18px; height: 18px; color: var(--text-1); flex-shrink: 0; }

@media (min-width: 400px) { .hero-actions .btn { flex: 0 0 auto; } }
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--sp-12); }
}

/* ── Search (routes to the matching marketplace) ─────────────────────── */
.search {
  background: var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.search-row { display: grid; gap: var(--sp-2); }
.search-field {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: var(--r-md);
}
.search-field:focus-within { border-color: var(--brand-400); background: var(--surface-1); }
.search-field svg { width: 20px; height: 20px; color: var(--text-3); flex-shrink: 0; }
.search-field input {
  flex: 1; min-width: 0; border: none; background: none; outline: none;
  font-size: var(--fs-body); color: var(--text-1);
}
.search-field input::placeholder { color: var(--text-3); }

.search-geo {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3); border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 600; color: var(--text-2);
  border: 1px dashed var(--border-1);
}
.search-geo:hover { color: var(--brand-600); border-color: var(--brand-300); background: var(--brand-50); }
.search-geo[data-state="on"] { color: var(--brand-700); background: var(--brand-50); border-style: solid; border-color: var(--brand-300); }
.search-geo[data-state="loading"] { opacity: 0.6; pointer-events: none; }
.search-geo svg { width: 16px; height: 16px; }

.search-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); flex-wrap: wrap; padding: var(--sp-3) var(--sp-2) var(--sp-1);
}
.search-hint { font-size: var(--fs-xs); color: var(--text-3); }

.search-suggestions { display: none; padding: var(--sp-2) var(--sp-2) var(--sp-3); }
.search-suggestions[data-open="true"] { display: block; }
.search-suggestions-title {
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: var(--sp-3);
}
.suggestion-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.suggestion {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3); border-radius: var(--r-pill);
  border: 1px solid var(--border-1); background: var(--surface-1);
  font-size: var(--fs-sm); font-weight: 500;
}
.suggestion:hover { border-color: var(--brand-300); background: var(--brand-50); color: var(--brand-700); }
.suggestion svg { width: 16px; height: 16px; }

@media (min-width: 640px) {
  .search-row { grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; }
}

/* ── Phone showcase (pure CSS, stays in sync with the registry) ──────── */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual::before {
  content: ''; position: absolute; inset: 6% -4% 2%;
  border: 1.5px dashed var(--brand-200); border-radius: 50%;
  opacity: 0.9;
}
.hero-orb {
  position: absolute; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--text-inverse); box-shadow: var(--shadow-md);
}
.hero-orb svg { width: 20px; height: 20px; }
.hero-orb--brand { top: 4%; left: 4%; background: var(--brand-gradient); }
.hero-orb--check { bottom: 22%; right: 2%; background: var(--surface-1); color: var(--brand-600); border: 1px solid var(--border-1); }
.hero-orb--star { bottom: 6%; right: 14%; background: var(--danger); }

/* Decorations need room to breathe; below tablet they collide with the phone. */
@media (max-width: 719px) {
  .hero-visual::before, .hero-orb { display: none; }
}

.phone {
  position: relative; width: min(320px, 82vw);
  background: var(--ink-900); border-radius: 44px;
  padding: 10px; box-shadow: var(--shadow-lg);
}
.phone-screen {
  position: relative; overflow: hidden;
  background: var(--surface-1); border-radius: 36px;
  padding: var(--sp-3) var(--sp-4) var(--sp-5);
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px; background: var(--ink-900); border-radius: var(--r-pill);
}
.phone-status {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 600; color: var(--text-1);
  padding-bottom: var(--sp-4);
}
.phone-status svg { width: 42px; height: 12px; }

.phone-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-1); }
.phone-topbar .brand-name { font-size: 1.05rem; }
.phone-topbar .brand-mark { width: 22px; height: 22px; }
.phone-location {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; color: var(--text-2); margin-bottom: var(--sp-3);
}
.phone-location svg { width: 11px; height: 11px; }

.phone-label { font-size: 11px; font-weight: 600; margin-bottom: var(--sp-2); }
.phone-search {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 10px; margin-bottom: var(--sp-4);
  border: 1px solid var(--border-1); border-radius: var(--r-pill);
  font-size: 10px; color: var(--text-3);
}
.phone-search svg { width: 12px; height: 12px; }

.phone-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-3);
}
.phone-section-head span:first-child { font-size: 11px; font-weight: 600; }
.phone-section-head span:last-child { font-size: 9px; color: var(--brand-600); font-weight: 600; }

.phone-categories {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3) var(--sp-2); margin-bottom: var(--sp-4);
}
.phone-category { display: grid; justify-items: center; gap: 4px; text-align: center; }
.phone-category-icon {
  width: 34px; height: 34px; border-radius: var(--r-md);
  display: grid; place-items: center;
}
.phone-category-icon svg { width: 17px; height: 17px; }
.phone-category span { font-size: 8px; color: var(--text-2); line-height: 1.25; }

.phone-promo {
  background: var(--brand-gradient); color: var(--text-inverse);
  border-radius: var(--r-lg); padding: var(--sp-4);
}
.phone-promo strong { display: block; font-size: 11px; }
.phone-promo small { display: block; font-size: 9px; opacity: 0.82; margin-bottom: var(--sp-3); }
.phone-promo em {
  display: inline-block; font-style: normal;
  background: var(--surface-1); color: var(--brand-700);
  font-size: 9px; font-weight: 600;
  padding: 5px 10px; border-radius: var(--r-pill);
}

/* ── Marketplace cards ───────────────────────────────────────────────── */
.marketplace-grid {
  display: grid; gap: var(--sp-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 560px) {
  .marketplace-grid {
    gap: var(--sp-4);
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .mp-card { padding: var(--sp-5); }
}

.mp-card {
  display: flex; flex-direction: column;
  gap: var(--sp-3); height: 100%;
  padding: var(--sp-3);
  background: var(--surface-1);
  border: 1px solid var(--border-1); border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  text-align: left;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.mp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }

.mp-card-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-2);
}
.mp-card-icon {
  width: 42px; height: 42px; border-radius: var(--r-md); flex-shrink: 0;
  display: grid; place-items: center;
}
.mp-card-icon svg { width: 22px; height: 22px; }

.mp-card-name {
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--fs-h3); line-height: var(--lh-snug); letter-spacing: -0.01em;
}
.mp-card-tagline { font-size: var(--fs-sm); color: var(--text-2); flex: 1; }

.mp-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-2); margin-top: var(--sp-1);
  font-size: var(--fs-sm); font-weight: 600; color: var(--brand-600);
}
/* Below tablet the card is too narrow for both the domain and the affordance
   icon; the domain wins because it is the campaign cue. */
.mp-card-foot svg { display: none; width: 16px; height: 16px; flex-shrink: 0; }
@media (min-width: 560px) { .mp-card-foot svg { display: block; } }
/* The domain is a campaign cue, so it must stay legible instead of truncating. */
.mp-card-domain {
  font-size: 0.6875rem; letter-spacing: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (min-width: 560px) { .mp-card-domain { font-size: var(--fs-xs); } }

.mp-card[data-status="soon"] .mp-card-foot { color: var(--text-3); }
.mp-card-badge {
  padding: 3px var(--sp-2); border-radius: var(--r-pill); white-space: nowrap;
  background: var(--accent-amber-bg); color: var(--accent-amber-fg);
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.02em;
}

/* ── Stats band ──────────────────────────────────────────────────────── */
.stats-band {
  display: grid; gap: var(--sp-8);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  background: var(--surface-2);
  border: 1px solid var(--border-2); border-radius: var(--r-xl);
}
.stats-list {
  display: grid; gap: var(--sp-6);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.stat { display: flex; align-items: center; gap: var(--sp-3); }
.stat-icon {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-value {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.4rem; line-height: 1.15; letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: var(--fs-sm); color: var(--text-2); line-height: 1.35;
}

.business-cta { display: flex; align-items: flex-start; gap: var(--sp-4); }
.business-cta-icon {
  width: 56px; height: 56px; border-radius: var(--r-lg); flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--accent-violet-bg); color: var(--accent-violet-fg);
}
.business-cta-icon svg { width: 28px; height: 28px; }
.business-cta-title { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-h3); }
.business-cta-text { font-size: var(--fs-sm); color: var(--text-2); margin-bottom: var(--sp-3); }

@media (min-width: 1024px) {
  .stats-band { grid-template-columns: minmax(0, 1fr) minmax(260px, 320px); align-items: center; }
  .stats-list { border-right: 1px solid var(--border-1); padding-right: var(--sp-8); }
  .business-cta { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

/* ── Footer ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-900); color: var(--text-inverse-2);
  padding-block: var(--sp-12) var(--sp-8);
}
.footer-grid { display: grid; gap: var(--sp-8); margin-bottom: var(--sp-8); }
.footer-brand .brand-name { color: var(--text-inverse); }
.footer-tagline { font-size: var(--fs-sm); max-width: 34ch; margin-top: var(--sp-3); }
.footer-col-title {
  color: var(--text-inverse); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--sp-4);
}
.footer-links { display: grid; gap: var(--sp-3); font-size: var(--fs-sm); }
.footer-links a:hover { color: var(--text-inverse); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: space-between;
  padding-top: var(--sp-6); border-top: 1px solid var(--border-inverse);
  font-size: var(--fs-xs);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

/* ── Modal ───────────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: none; align-items: center; justify-content: center;
  padding: var(--sp-4);
  background: rgba(14, 10, 24, 0.55);
  backdrop-filter: blur(3px);
}
.modal-backdrop[data-open="true"] { display: flex; }
body[data-modal-open="true"] { overflow: hidden; }

.modal {
  width: 100%; max-width: 440px; max-height: 90vh; overflow-y: auto;
  background: var(--surface-1); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: var(--sp-6);
}
.modal-head { display: flex; align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.modal-title { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h3); flex: 1; }
.modal-text { font-size: var(--fs-sm); color: var(--text-2); margin-top: var(--sp-2); }
.modal-close {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--text-3); flex-shrink: 0;
}
.modal-close:hover { background: var(--surface-3); color: var(--text-1); }
.modal-close svg { width: 18px; height: 18px; }

.field { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field input, .field select {
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border-1); border-radius: var(--r-md);
  background: var(--surface-1); outline: none;
}
.field input:focus, .field select:focus { border-color: var(--brand-400); box-shadow: 0 0 0 3px var(--brand-100); }
.field-hint { font-size: var(--fs-xs); color: var(--text-3); }

.form-status { font-size: var(--fs-sm); margin-bottom: var(--sp-4); }
.form-status[data-tone="success"] { color: var(--success); }
.form-status[data-tone="error"] { color: var(--danger); }
.form-status:empty { display: none; }

/* Marketplace chooser inside the modal (login / signup) */
.chooser-list { display: grid; gap: var(--sp-2); }
.chooser-item {
  display: flex; align-items: center; gap: var(--sp-3); width: 100%;
  padding: var(--sp-3) var(--sp-4); text-align: left;
  border: 1px solid var(--border-1); border-radius: var(--r-md);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.chooser-item:hover { border-color: var(--brand-300); background: var(--brand-50); }
.chooser-item[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
.chooser-item[aria-disabled="true"]:hover { border-color: var(--border-1); background: var(--surface-1); }
.chooser-icon { width: 36px; height: 36px; border-radius: var(--r-sm); display: grid; place-items: center; flex-shrink: 0; }
.chooser-icon svg { width: 18px; height: 18px; }
.chooser-name { font-weight: 600; font-size: var(--fs-sm); }
.chooser-meta { font-size: var(--fs-xs); color: var(--text-3); }
