/* ==========================================
   HEADER — BARA SUPERIOARĂ
========================================== */

.header-container {
    height: 64px;
    background: var(--bg-surface-soft);
    border-bottom: 1px solid var(--bg-border);
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--bg-border);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    flex: 1;
    max-width: 480px;
}

.header-search input {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 100%;
}
