/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#site-header {
  background: #fff;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.logo-wrap { display: flex; align-items: center; }
.header-search { display: flex; gap: 0; }
.header-search input {
  width: 240px; height: 38px; border: 1px solid var(--border);
  border-right: none; padding: 0 14px; font-size: 13px;
  border-radius: var(--radius) 0 0 var(--radius); outline: none;
  font-family: var(--font-body); background: var(--bg);
}
.header-search input:focus { border-color: var(--accent); }
.header-search button {
  width: 42px; height: 38px; background: var(--accent); border: none;
  color: #fff; font-size: 14px; border-radius: 0 var(--radius) var(--radius) 0;
  transition: background .2s;
}
.header-search button:hover { background: var(--accent-dark); }
