/* ---------- Maakeet — design tokens ---------- */
:root {
  --ink: #0e1326;
  --ink-2: #1a2140;
  --ink-3: #2a3563;
  --paper: #ffffff;
  --paper-2: #fafaf7;
  --paper-3: #f0eee5;
  --amber: #f5b500;
  --amber-2: #ffc933;
  --green: #16a34a;
  --green-wa: #25d366;
  --red: #dc2626;
  --muted: #64748b;
  --line: #e3e1d7;

  --shadow-sm: 0 1px 2px rgba(14, 19, 38, 0.06);
  --shadow: 0 4px 16px rgba(14, 19, 38, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 19, 38, 0.14);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;

  --font-display: "Fraunces", "Recoleta", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;700;900&family=Inter:wght@400;500;600;700&display=swap');

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper-2);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--ink-3); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
h1 { font-size: clamp(28px, 6vw, 44px); font-weight: 900; }
h2 { font-size: clamp(20px, 4vw, 26px); font-weight: 700; margin: 24px 0 12px; }
h3 { font-size: 17px; font-weight: 600; }
p { margin: 0 0 12px; }
.muted { color: var(--muted); }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .brand {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--paper);
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  letter-spacing: -0.04em;
}
.topbar .brand .dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--amber); color: var(--ink);
  font-family: var(--font-body); font-weight: 800; font-size: 14px;
  transform: rotate(-3deg);
}
.topbar .brand strong { color: var(--paper); }
.topbar .brand strong em { color: var(--amber); font-style: normal; }
.topbar nav { display: flex; gap: 14px; font-size: 14px; }
.topbar nav a { color: rgba(255,255,255,0.85); }
.topbar nav a:hover { color: var(--amber); }

/* ---------- Hero / search ---------- */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 18px 64px;
  border-radius: 0 0 28px 28px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 110% -10%, rgba(245,181,0,0.15), transparent 60%),
    radial-gradient(600px 320px at -20% 40%, rgba(245,181,0,0.08), transparent 60%);
  pointer-events: none;
}
.hero .inner { max-width: 720px; margin: 0 auto; position: relative; }
.hero h1 { color: var(--paper); }
.hero h1 .accent { color: var(--amber); font-style: italic; }
.hero p.lede { color: rgba(255,255,255,0.78); margin-top: 8px; }

.search-bar {
  margin-top: 22px; background: var(--paper); border-radius: 999px;
  display: flex; align-items: center; padding: 6px;
  box-shadow: var(--shadow-lg);
}
.search-bar input {
  flex: 1; border: 0; outline: 0; padding: 14px 16px;
  font-size: 15px; border-radius: 999px; background: transparent;
  color: var(--ink);
}
.search-bar button {
  border: 0; background: var(--amber); color: var(--ink);
  font-weight: 700; padding: 12px 22px; border-radius: 999px;
  font-size: 14px;
}
.search-bar button:active { transform: scale(0.98); background: var(--amber-2); }

.hero-pills { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; color: var(--paper); }
.hero-pills .pill {
  display: inline-flex; flex-direction: column; align-items: center;
  font-size: 12px; line-height: 1.2; min-width: 64px;
}
.hero-pills .pill strong { font-size: 18px; font-family: var(--font-display); font-weight: 700; color: var(--amber); }

/* ---------- Filters ---------- */
.filters {
  max-width: 720px; margin: -28px auto 0; padding: 16px;
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  position: relative; z-index: 2;
}
.filters .field { display: flex; flex-direction: column; gap: 4px; }
.filters label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; }
.filters input, .filters select {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 12px; font-size: 14px; font-family: inherit; background: var(--paper);
  outline: 0;
}
.filters input:focus, .filters select:focus { border-color: var(--amber); }
.filters .full { grid-column: 1 / -1; }
.filters .row-2 { display: flex; gap: 8px; }
.filters .row-2 input { flex: 1; }
.filters .geo-status { font-size: 12px; color: var(--muted); }
.filters .geo-status.ok { color: var(--green); }
.filters .geo-status.err { color: var(--red); }

/* ---------- Categories ---------- */
.section { max-width: 720px; margin: 28px auto; padding: 0 18px; }
.cats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.cat-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 12px; text-align: center; color: var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}
.cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-card .emoji { font-size: 24px; }

/* ---------- Search results ---------- */
.results { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.biz-row {
  background: var(--paper); border-radius: var(--radius);
  padding: 14px; display: grid; grid-template-columns: 38px 1fr auto; gap: 12px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  align-items: start;
}
.biz-row .rank {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}
.biz-row h3 { font-family: var(--font-body); font-size: 15px; font-weight: 700; }
.biz-row .meta { font-size: 12px; color: var(--muted); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.biz-row .stars { color: var(--amber); font-size: 12px; }
.biz-row .item-line { font-size: 13px; margin-top: 6px; }
.biz-row .item-line .price-tag {
  display: inline-block; background: var(--paper-3); color: var(--ink);
  padding: 1px 7px; border-radius: 6px; font-weight: 600; font-size: 12px;
}
.biz-row .actions { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.biz-row .dist { font-size: 12px; font-weight: 700; color: var(--ink); }
.biz-row .actions .icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 16px; border: 1px solid var(--line); background: var(--paper); color: var(--ink);
}
.biz-row .actions .wa { background: var(--green-wa); color: var(--paper); border-color: transparent; }

/* ---------- List-your-business CTA ---------- */
.cta-banner {
  background: var(--amber); color: var(--ink);
  padding: 18px 24px; text-align: center; font-weight: 700;
  border-top: 4px solid var(--green); border-bottom: 4px solid var(--green);
  margin-top: 32px;
}
.cta-banner a { color: var(--ink); text-decoration: underline; }

/* ---------- Generic UI primitives ---------- */
.card {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); padding: 18px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-weight: 600; font-size: 14px;
  text-decoration: none;
}
.btn:hover { background: var(--paper-3); }
.btn.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn.primary:hover { background: var(--ink-2); color: var(--paper); }
.btn.amber { background: var(--amber); color: var(--ink); border-color: var(--amber); font-weight: 700; }
.btn.amber:hover { background: var(--amber-2); }
.btn.wa { background: var(--green-wa); color: var(--paper); border-color: var(--green-wa); }
.btn.danger { background: var(--red); color: var(--paper); border-color: var(--red); }
.btn-block { width: 100%; }

.input, .select, textarea.input {
  display: block; width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper); font-size: 15px; font-family: inherit;
  outline: 0; color: var(--ink);
}
.input:focus, .select:focus, textarea.input:focus { border-color: var(--amber); }
textarea.input { resize: vertical; min-height: 80px; }

label.field { display: block; margin-bottom: 14px; }
label.field > span { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Login ---------- */
.login-shell { max-width: 420px; margin: 40px auto; padding: 0 18px; }
.login-shell .card { padding: 24px; }
.login-shell h1 { font-size: 28px; margin-bottom: 6px; }

/* ---------- Dashboard ---------- */
.dashboard { max-width: 760px; margin: 24px auto; padding: 0 18px; }
.tabs { display: flex; border-bottom: 1px solid var(--line); margin: 18px 0; }
.tabs button {
  background: transparent; border: 0; padding: 10px 14px; font-size: 14px;
  border-bottom: 3px solid transparent; color: var(--muted); font-weight: 600;
}
.tabs button.active { color: var(--ink); border-bottom-color: var(--amber); }

.inv-row {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 10px;
  align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line);
}
.inv-row img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; }
.inv-row .placeholder { width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--paper-3); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 18px; }

/* ---------- Business SSR page ---------- */
.biz-page { max-width: 720px; margin: 0 auto; padding: 24px 18px; }
.biz-page .lede { font-size: 18px; color: var(--muted); }
.biz-page .meta { color: var(--muted); margin-top: 4px; }
.biz-page .rating { font-size: 18px; }
.biz-page .rating .rcount { color: var(--muted); font-weight: 400; font-size: 14px; }
.biz-page .actions { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.biz-page .socials { display: flex; gap: 14px; font-size: 14px; }
.biz-page .hours-block dl.hours { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 18px; margin: 0; padding: 0; }
.biz-page .hours dl, .biz-page .hours div { display: flex; gap: 8px; }
.biz-page .hours dt { font-weight: 600; min-width: 40px; }
.biz-page .hours dd { margin: 0; color: var(--muted); }
.biz-page .item-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}
.biz-page .item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.biz-page .item img, .biz-page .item .no-photo {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
  background: var(--paper-3); color: var(--muted);
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.biz-page .item-body { padding: 10px 12px; }
.biz-page .item-body h3 { font-size: 14px; margin: 0 0 4px; }
.biz-page .item-body .cat {
  display: inline-block; font-size: 10px; padding: 2px 6px; border-radius: 5px;
  background: var(--ink); color: var(--paper); margin-bottom: 6px;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.biz-page .item-body .price { font-weight: 700; font-size: 15px; margin: 4px 0; }
.biz-page .item-body .desc { font-size: 12px; color: var(--muted); margin: 0; }
/* Services get larger name + description fonts (2× product sizing) */
.biz-page .item--service .item-body h3 { font-size: 28px; line-height: 1.2; }
.biz-page .item--service .item-body .desc { font-size: 24px; line-height: 1.35; }

.stars {
  display: inline-flex; gap: 4px;
  font-size: 28px;
}
.stars button {
  background: transparent; border: 0; color: var(--line); padding: 4px;
  transition: color 0.12s;
}
.stars button.active, .stars button:hover { color: var(--amber); }

/* ---------- Footer ---------- */
footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 32px 24px; margin-top: 40px;
  text-align: center; font-size: 13px;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: 999px; font-size: 14px;
  box-shadow: var(--shadow-lg); z-index: 100; opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.err { background: var(--red); }

/* ---------- Hidden ---------- */
.hidden { display: none !important; }

/* ---------- Mobile tweaks ---------- */
@media (max-width: 480px) {
  .filters { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(3, 1fr); }
}

/* Inline status messages on forms */
#geo-msg.ok { color: var(--green); }
#geo-msg.err { color: var(--red); }

/* ---------- Mic recorder overlay ---------- */
.mic-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.mic-card {
  background: var(--paper); color: var(--ink);
  border-radius: 16px; padding: 24px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center;
  width: 100%; max-width: 340px;
}
.mic-pulse {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--red, #d33);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 14px;
}
.mic-pulse span {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--paper); display: block;
}
.mic-pulse::after {
  content: ""; position: absolute; inset: -8px;
  border-radius: 50%;
  border: 3px solid var(--red, #d33);
  opacity: 0; animation: micPulse 1.4s ease-out infinite;
}
@keyframes micPulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}
.mic-timer {
  font-size: 28px; font-variant-numeric: tabular-nums;
  font-weight: 600; margin-bottom: 6px;
}

/* ---------- AI processing overlay ---------- */
.ai-busy { position: relative; }
.ai-busy::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(255,255,255,0.78); backdrop-filter: blur(2px);
  z-index: 9; border-radius: inherit; pointer-events: auto;
}
.ai-busy .ai-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; pointer-events: auto; padding: 20px; text-align: center;
}
.ai-spinner {
  width: 42px; height: 42px;
  border: 3px solid rgba(14,19,38,0.15);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: ai-spin 0.85s linear infinite;
}
@keyframes ai-spin { to { transform: rotate(360deg); } }
.ai-msg { font-weight: 600; color: var(--ink); font-size: 15px; }
.ai-sub { font-size: 13px; color: #6b7280; max-width: 280px; line-height: 1.4; }

/* ---------- Result row navigate button ---------- */
.biz-row .actions .nav-btn {
  background: transparent;
  border: 0;
  padding: 0;
  width: 36px;
  height: 36px;
}
.biz-row .actions .nav-btn:hover { transform: scale(1.05); transition: transform 0.12s ease; }
.biz-row .actions .nav-btn svg { display: block; }

/* ---------- Filters collapsible ---------- */
.filters-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--ink); font-weight: 600; font-size: 14px;
  padding: 4px 0; margin: 4px 0 8px;
}
.filters-toggle .ft-icon { font-size: 12px; }
#filters-region.collapsed { display: none; }

/* Default home layout: category cards first, then "Near you" results.
 * When the user submits a query, the SPA adds .query-mode to swap so the
 * matching items appear above the category browser. */
#search-sections { display: flex; flex-direction: column; }
#search-sections .section-cats    { order: 1; }
#search-sections .section-results { order: 2; }
#search-sections.query-mode .section-cats    { order: 2; }
#search-sections.query-mode .section-results { order: 1; }

/* ---------- Matched items list under each business in search results ---------- */
.biz-row .matched-items {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.biz-row .matched-items li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding: 4px 8px;
  background: var(--paper-3, #f3f4f6);
  border-radius: 8px;
}
.biz-row .matched-items li[data-item-detail] { cursor: pointer; }
.biz-row .matched-items li[data-item-detail]:hover { background: #e7eaf0; }
.biz-row .matched-items .mi-thumb {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e5e7eb;
  font-size: 14px;
}
.biz-row .matched-items .mi-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.biz-row .match-count {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 600;
  background: var(--amber);
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
}

/* ---------- Image lightbox ---------- */
img.mi-thumb { cursor: zoom-in; transition: transform 0.12s ease; }
img.mi-thumb:hover, img.mi-thumb:focus { transform: scale(1.08); outline: 2px solid var(--amber); outline-offset: 2px; }

#lightbox {
  position: fixed; inset: 0;
  background: rgba(14, 19, 38, 0.92);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  z-index: 9999;
  opacity: 0; transition: opacity 0.18s ease;
  padding: 20px;
  cursor: zoom-out;
}
#lightbox.open { opacity: 1; }
#lightbox img {
  max-width: 92vw; max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: default;
}
#lightbox .lb-caption {
  color: #fff; font-size: 14px; font-weight: 500;
  text-align: center; max-width: 92vw;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
#lightbox .lb-close {
  position: absolute; top: 16px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff; border: 0;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
#lightbox .lb-close:hover { background: rgba(255,255,255,0.3); }
#lightbox .lb-prev, #lightbox .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff; border: 0;
  font-size: 32px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
#lightbox .lb-prev { left: 18px; }
#lightbox .lb-next { right: 18px; }
#lightbox .lb-prev:hover, #lightbox .lb-next:hover { background: rgba(255,255,255,0.3); }
#lightbox .lb-counter {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  font-size: 12px;
}

/* ---------- Inventory staging tray ---------- */
.inv-tray-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  padding: 8px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px dashed var(--line);
}
.inv-tray-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #e5e7eb;
}
.inv-tray-item img,
.inv-tray-item .inv-tray-vid {
  width: 100%; height: 100%;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #6b7280;
}
.inv-tray-x {
  position: absolute; top: 2px; right: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(14,19,38,0.85); color: #fff; border: 0;
  font-size: 16px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.inv-tray-x:hover { background: var(--red); }

/* ---------- Transfer-manager modal ---------- */
#transfer-modal {
  position: fixed; inset: 0;
  background: rgba(14,19,38,0.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 20px;
}
#transfer-modal .tm-card {
  background: var(--paper); border-radius: 12px;
  padding: 20px; max-width: 460px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
#transfer-modal h3 { margin: 0 0 8px; }

.mi-name-btn { background: none; border: 0; padding: 0; margin: 0; font: inherit; color: inherit; text-align: left; cursor: pointer; }
.mi-name-btn:hover { text-decoration: underline; color: #f5b500; }
.mi-name-btn:focus-visible { outline: 2px solid #f5b500; outline-offset: 2px; border-radius: 2px; }


/* Yellow CTA pill on the public-page topbar */
.topbar .cta-list {
  display: inline-block;
  background: #f5b500;
  color: #0e1326;
  font-weight: 700;
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 999px;
  margin-right: 8px;
  transition: background-color 0.15s ease;
}
.topbar .cta-list:hover,
.topbar .cta-list:focus-visible {
  background: #e0a300;
  text-decoration: none;
  outline: none;
}


/* Destructive button — used for Delete this business and similar. */
.btn-danger {
  background: #dc2626;
  color: #fff;
  border-color: #dc2626;
}
.btn-danger:hover,
.btn-danger:focus-visible {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}
.btn-danger:disabled {
  background: #fca5a5;
  border-color: #fca5a5;
  cursor: not-allowed;
}


/* Editable location button — looks like the old static text but is tappable. */
.filters .geo-status-btn {
  background: none;
  border: 0;
  padding: 2px 4px;
  margin: 0;
  font: inherit;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}
.filters .geo-status-btn:hover,
.filters .geo-status-btn:focus-visible {
  color: #0e1326;
  outline: none;
  text-decoration: underline;
}
.geo-pred:hover, .geo-pred:focus-visible {
  border-color: #f5b500 !important;
  outline: none;
}
