.field-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #17161A;
  margin-bottom: 0.375rem;
}

.field-input {
  width: 100%;
  border: 1px solid rgba(18, 25, 59, 0.15);
  border-radius: 0.75rem;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  background: #fff;
  color: #17161A;
  outline: none;
  transition: border-color 0.15s ease;
}
.field-input:focus {
  border-color: #FFB627;
  box-shadow: 0 0 0 3px rgba(255, 182, 39, 0.25);
}

.view-tab {
  color: rgba(246, 243, 236, 0.6);
}
.view-tab[data-active="true"] {
  background: #FFB627;
  color: #12193B;
}

.chip {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-family: 'IBM Plex Mono', monospace;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid rgba(18, 25, 59, 0.12);
  color: rgba(23, 22, 26, 0.6);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.chip[data-active="true"] {
  background: #12193B;
  color: #F6F3EC;
  border-color: #12193B;
}

.listing-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(18, 25, 59, 0.08);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(18, 25, 59, 0.25);
}
.listing-card img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
  background: #F6F3EC;
}

.distance-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  background: #12193B;
  color: #FFB627;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
}

/* keyboard focus visibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid #0E7C86;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
