/* busqueda.css — Página de resultados de búsqueda (/busqueda) */

.search-page-header {
  padding: var(--fm-space-lg) var(--fm-margin-mobile) 0;
}

@media (min-width: 1280px) {
  .search-page-header {
    padding: var(--fm-space-xl) var(--fm-margin-desktop) 0;
  }
}

.search-page-header .breadcrumb {
  padding: 0 0 var(--fm-space-md);
}

.search-page-header__title {
  font-family: var(--fm-font-display);
  font-size: 2rem;
  color: var(--fm-black);
  margin-bottom: var(--fm-space-md);
}

@media (min-width: 768px) {
  .search-page-header__title { font-size: 2.75rem; }
}

.search-page-form__input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--fm-black);
  background: transparent;
  font-family: var(--fm-font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--fm-black);
  padding: var(--fm-space-sm) 0;
}

.search-page-form__input:focus {
  outline: none;
  border-bottom-color: var(--fm-gray-warm);
}

.search-page-form__input::placeholder {
  color: var(--fm-gray-warm);
}

.search-recent {
  margin-top: var(--fm-space-lg);
}

.search-recent__label {
  font-family: var(--fm-font-narrow);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fm-gray-warm);
  margin-bottom: var(--fm-space-sm);
}

.search-recent__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fm-space-sm);
}

.search-recent__chip {
  font-family: var(--fm-font-body);
  font-size: 0.8125rem;
  color: var(--fm-black);
  background: var(--fm-gray-surface);
  border: 1px solid var(--fm-gray-light);
  padding: var(--fm-space-xs) var(--fm-space-md);
  cursor: pointer;
}

.search-recent__chip:hover {
  border-color: var(--fm-black);
}

.search-empty {
  text-align: center;
  padding: var(--fm-space-xl) 0;
}

.search-empty__title {
  font-family: var(--fm-font-display);
  font-size: 1.5rem;
  color: var(--fm-black);
  margin-bottom: var(--fm-space-sm);
}

.search-empty__copy {
  font-family: var(--fm-font-body);
  font-size: 0.875rem;
  color: var(--fm-gray-warm);
  max-width: 420px;
  margin: 0 auto var(--fm-space-xl);
}
