/* WPML Language Switcher Styles */

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

.wpml-language-switcher .lang-item {
    border: 1px solid rgba(2, 2, 2, 0.3);
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 12px;
    line-height: 120%;
    font-weight: 600;
    color: #020202;
    cursor: pointer;
}

.wpml-language-switcher .lang-item:hover {
    border-color: #7ea925;
    color: #7ea925;
}

.wpml-language-switcher .lang-item.active {
    border-color: #020202;
    background-color: #020202;
    color: #fff;
    cursor: default;
}

/* Black header variant */
header#main-header.black-header .wpml-language-switcher .lang-item {
    border-color: rgba(51, 51, 51, 0.3);
    color: #020202;
}

header#main-header.black-header .wpml-language-switcher .lang-item:hover {
    border-color: #7ea925;
    color: #7ea925;
}

header#main-header.black-header .wpml-language-switcher .lang-item.active {
    border-color: #020202;
    background-color: #020202;
    color: #fff;
}

/* Scrolled header variant */
header#main-header.scrolled .wpml-language-switcher .lang-item {
    border-color: rgba(51, 51, 51, 0.3);
    color: #020202;
}

header#main-header.scrolled .wpml-language-switcher .lang-item:hover {
    border-color: #7ea925;
    color: #7ea925;
}

header#main-header.scrolled .wpml-language-switcher .lang-item.active {
    border-color: #020202;
    background-color: #020202;
    color: #fff;
}

/* Mobile header styles */
.mobile-header .wpml-language-switcher {
    display: flex;
    gap: 10px;
}

.mobile-header .wpml-language-switcher .lang-item {
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 12px;
    line-height: 120%;
    font-weight: 600;
    color: #fff;
}

.mobile-header .wpml-language-switcher .lang-item:hover {
    border-color: #7ea925;
    color: #7ea925;
}

.mobile-header .wpml-language-switcher .lang-item.active {
    border-color: #fff;
    background-color: #fff;
    color: #020202;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .wpml-language-switcher .lang-item {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
        font-size: 11px;
    }

    .mobile-header .wpml-language-switcher .lang-item {
        width: 40px;
        min-width: 40px;
        max-width: 40px;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
        font-size: 11px;
    }
}