/* Language Switcher Styles */
.widget-language-switcher {
    display: inline-block;
    vertical-align: middle;
}

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

.language-switcher__link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-switcher__link:hover {
    color: #c5a47e;
    background-color: rgba(197, 164, 126, 0.1);
    text-decoration: none;
}

.language-switcher__link.active {
    color: #c5a47e;
    background-color: rgba(197, 164, 126, 0.2);
    font-weight: 700;
}

.language-switcher__separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}
