/* ── Properties page ── */

.page-header {
  background: var(--color-light-gray);
  border-bottom: 1px solid var(--color-gray-mid);
  padding: 2.5rem 0 2rem;
  margin-top: 76px; /* nav height */
}

.page-header__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}

.page-header__subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  max-width: 560px;
}

.browse-section { padding-top: 2rem; }

/* Loading state */
.results-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: #888;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--color-gray-mid);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile filter header shows close button */
@media (max-width: 1024px) {
  .filter-panel__close { display: flex !important; }
  .filter-toggle-btn { margin-bottom: 1.25rem; }
}

/* Active filter indicator */
.filter-toggle-btn .filter-active-count {
  margin-left: 0.25rem;
}
