/* Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    margin-right: 8px;
    transition: background 0.3s;
}

.lang-switch:hover {
    background: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}