/* ── SEARCH BAR ── */
.search-row {
  background: var(--surface);
  border-bottom: 1px solid var(--surface-border);
  padding: 10px 32px;
  display: flex; gap: 10px; align-items: center;
}
.search-row input {
  flex: 1;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 14px;
  background: rgba(245,239,224,0.07);
  border: 1px solid rgba(200,169,110,0.4);
  color: var(--parchment);
  border-radius: 2px;
  outline: none;
  transition: border 0.2s;
}
.search-row input::placeholder { color: rgba(245,239,224,0.3); font-style: italic; }
.search-row input:focus { border-color: var(--gold-light); background: rgba(245,239,224,0.1); }
.search-row button {
  font-family: Arial, sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--ink);
  border: none; cursor: pointer; border-radius: 2px;
  transition: background 0.2s;
}
.search-row button:hover { background: var(--gold-light); }

body.light-mode .search-row {
  background: #f5e898;
  border-bottom: 1px solid rgba(180,130,20,0.3);
}
body.light-mode .search-row input {
  background: rgba(255,253,240,0.9);
  border-color: rgba(180,130,20,0.4);
  color: var(--ink);
}
body.light-mode .search-row input::placeholder { color: rgba(42,31,0,0.35); }
body.light-mode .search-row button { background: #c8920a; }
body.light-mode .search-row button:hover { background: #e0a800; }

/* ── SEARCH MIC BUTTON ── */
.search-mic-btn {
  background: rgba(184,134,11,0.15);
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 1rem;
  cursor: pointer;
  color: var(--gold);
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-mic-btn:hover { background: rgba(184,134,11,0.3); }
.search-mic-btn.listening { background: rgba(220,50,50,0.25); animation: pulse 1s infinite; }
