/* ============================================================================
 * search.css — página de resultados de pesquisa
 * Depende de offer.css + listing.css
 * ============================================================================ */

/* Header com search prominente no topo */
.site-header.search-header .header-inner {
  gap: 12px; flex-wrap: wrap;
}
.header-search.prominent {
  flex: 1; min-width: 320px;
  display: grid; grid-template-columns: 1fr 200px auto; gap: 6px;
  background: var(--bg); border-radius: 8px; padding: 4px;
}
.header-search-field {
  position: relative; display: flex; align-items: center;
}
.header-search-field .hs-icon {
  position: absolute; left: 12px; font-size: 13px; opacity: .6;
}
.header-search-field input {
  width: 100%; padding: 9px 10px 9px 34px;
  border: 0; border-radius: 6px; background: #fff; font: inherit; font-size: 14px;
}
.header-search-field input:focus { outline: 1px solid var(--brand); }
.header-search.prominent .btn-primary {
  width: auto; padding: 9px 18px; font-size: 14px;
}

@media (max-width: 800px) {
  .header-search.prominent { grid-template-columns: 1fr; }
}

/* Banner sauvegarder recherche */
.save-search {
  background: linear-gradient(135deg, #eef2ff, #f5f3ff);
  border-bottom: 1px solid var(--border);
}
.save-search-inner {
  max-width: 1200px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.save-search strong { display: block; font-size: 14px; margin-bottom: 2px; }
.save-search span { font-size: 13px; color: var(--text-muted); }

/* Snippet nos cards com termos destacados */
.offer-snippet {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  margin: 4px 0 10px; max-height: 3em; overflow: hidden;
}
mark {
  background: #fef08a; color: inherit; padding: 0 2px; border-radius: 2px;
  font-weight: 600;
}