/* Live dropdown suggestions */
.sp-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
  z-index: 50;
  overflow: hidden;
  text-align: left;
}
.sp-suggest-item {
  display: block;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  color: #0f172a;
  transition: background 0.15s ease;
  text-decoration: none;
}
.sp-suggest-item:last-of-type { border-bottom: none; }
.sp-suggest-item:hover,
.sp-suggest-item.is-active { background: #fff7ed; }
.sp-suggest-section {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f97316;
  margin-bottom: 2px;
}
.sp-suggest-title { font-size: 14px; font-weight: 500; line-height: 1.4; }
.sp-suggest-all {
  display: block;
  width: 100%;
  padding: 10px 18px;
  background: #f1f3f5;
  border: none;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  font-family: inherit;
}
.sp-suggest-all:hover { color: #f97316; background: #fff7ed; }

/* Results page */
.search-page {
  max-width: 840px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}
.search-page h1 {
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.search-page .query {
  color: #64748b;
  margin: 0 0 32px;
  font-size: 16px;
}
.search-page .results { display: flex; flex-direction: column; gap: 14px; }
.search-page .result {
  display: block;
  padding: 18px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: white;
  color: #0f172a;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.search-page .result:hover {
  border-color: #f97316;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}
.search-page .result-section {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f97316;
  margin-bottom: 4px;
}
.search-page .result-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.search-page .result-summary { font-size: 14px; color: #64748b; margin: 0; line-height: 1.55; }
.search-page .empty {
  padding: 28px;
  text-align: center;
  color: #64748b;
  border: 1px dashed rgba(15, 23, 42, 0.12);
  border-radius: 14px;
}
.search-page .empty p { margin: 0 0 8px; }
.search-page .empty a { color: #f97316; text-decoration: underline; }

@media (max-width: 760px) {
  .search-page { padding: 36px 20px 56px; }
}
