/* ----- SERVICES LIST (services.html) ----- */
.filter-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.filter-bar .form-group {
  margin-bottom: 0;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge-near {
  background: rgba(255, 204, 41, 0.15);
  color: var(--accent-yellow);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.location-picker {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem;
  margin: -0.5rem 0 1.5rem;
}

.location-picker__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.location-picker__header h2 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.location-picker__header p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

#search-location-map {
  height: 320px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.location-picker__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .filter-bar {
    grid-template-columns: 1fr;
  }

  #search-location-map {
    height: 260px;
  }
}
