.language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 15px;
}

.language-switch {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.language-switch:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.language-switch.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: rgba(26, 26, 26, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 9999;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.lang-dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: rgba(212, 175, 55, 1);
}

.lang-dropdown a.active {
    background: rgba(212, 175, 55, 0.15);
    color: rgba(212, 175, 55, 0.9);
}

.flag-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 2px;
    margin-right: 8px;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .lang-dropdown {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        background: rgba(26, 26, 26, 0.98);
        transform: translateY(20px);
    }

    .lang-dropdown.show {
        transform: translateY(0);
    }

    .language-switcher {
        margin: 10px 0;
    }
    
    .language-switch {
        padding: 6px 12px;
        font-size: 13px;
    }

    .lang-dropdown a {
        padding: 15px;
        justify-content: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
