/* ── Search Modal ───────────────────────────────────────── */
.search-modal { max-width: 600px; width: 92%; padding: 0; overflow: hidden; }
.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--surface-border);
}
.search-modal-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
/* SVGs inside the search input row have no class — target by element */
.search-modal-input-wrap svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-3);
}
.search-modal-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-1);
  font-family: var(--font-hebrew);
}
.search-modal-input-wrap input::placeholder { color: var(--text-3); }
.search-modal-results { max-height: 60vh; overflow-y: auto; }
.search-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: var(--text-3);
  gap: 12px;
}
/* Large decorative SVG in empty state — no class, target by element */
.search-empty-state svg { width: 48px; height: 48px; opacity: 0.4; }
.search-empty-state p { font-size: 0.875rem; color: var(--text-3); margin: 0; }
