/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 10px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.language-switcher a {
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
}

.language-switcher a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.language-switcher a.active {
    opacity: 1;
    position: relative;
}

.language-switcher a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .language-switcher {
        top: 60px;
        right: 15px;
        padding: 6px 10px;
    }
    
    .language-switcher img {
        width: 18px;
        height: 13px;
    }
}