/* Header */
.hh-header {
  width: 100%;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.hh-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

/* Logo */
.hh-logo img {
  height: 48px;
}

/* Search bar */
.hh-search {
  flex: 1;
  max-width: 420px;
}

.hh-search input {
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  font-size: 0.95rem;
}

/* Actions */
.hh-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile */
@media (max-width: 700px) {
  .hh-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .hh-actions {
    justify-content: space-between;
  }
}

.hh-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
}