/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

.lang-flag:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.lang-flag.lang-active {
    background: var(--primary-orange);
    box-shadow: 0 2px 8px rgba(230, 126, 0, 0.3);
}

@media (max-width: 768px) {
    .language-switcher {
        justify-content: center;
        padding: 15px 0;
    }
}
