/* ===== HEADER ===== */
.header {
    background: var(--primary-color);
    padding: 10px 0;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.logo {
    flex-shrink: 1;
    min-width: 0;
}

.logo img {
    height: 35px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}