/* ============================================================
   SEARCH RESULTS
   Produsele folosesc grid-ul de magazin (.products), articolele
   folosesc grid-ul de blog (.archive-posts-grid) — sectiuni
   stivuite pe toata latimea, la fel ca /magazin si /blog.
   ============================================================ */

/* ── Page header ─────────────────────────────────────────── */
.page-header .page-title span {
  color: #8b0e0e;
}

/* ── Wrapper: sectiuni una sub alta, pe toata latimea ────── */
.search-results-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 24px 0 40px;
}

/* ── Bara de salt rapid (Produse / Articole) ─────────────── */
.search-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 0;
}

.search-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #fdf0f0;
  color: #8b0e0e;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(139, 14, 14, 0.15);
  transition: background-color 200ms ease, transform 200ms ease;
}

.search-jump-link:hover {
  background-color: #8b0e0e;
  color: #ffffff;
  transform: translateY(-1px);
}

.search-jump-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 1px 6px;
  background-color: #8b0e0e;
  color: #ffffff;
  font-size: 12px;
  border-radius: 999px;
}

.search-jump-link:hover .search-jump-count {
  background-color: #ffffff;
  color: #8b0e0e;
}

/* ── Section header ──────────────────────────────────────── */
.search-results-section {
  scroll-margin-top: 90px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8b0e0e;
}

.section-title i {
  color: #8b0e0e;
  font-size: 18px;
}

.section-title .results-count {
  margin-left: auto;
  font-size: 13px;
  font-weight: 400;
  color: #999999;
}

/* ── No-results notice ───────────────────────────────────── */
.search-results-section .no-results {
  color: #666666;
  font-style: italic;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  text-align: center;
  margin: 0;
}

/* ── Paginare secțiuni ────────────────────────────────────── */
.search-pagination {
  margin-top: 24px;
  text-align: center;
}
