/* MZ_BILINGUAL_SWITCHER_START */

.mz-language-switcher {
    position: absolute;
    top: 13px;
    right: 74px;
    z-index: 99999;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 9px;

    border:
        1px solid rgba(184, 140, 57, 0.28);

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 8px 25px rgba(40, 29, 16, 0.08);

    backdrop-filter: blur(9px);
}

.mz-language-option {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 3px 4px;

    color: #6c6256 !important;
    text-decoration: none !important;

    opacity: 0.55;

    transition:
        opacity 180ms ease,
        transform 180ms ease,
        color 180ms ease;
}

.mz-language-option > span {
    font-size: 20px;
    line-height: 1;
}

.mz-language-option > small {
    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.08em;
}

.mz-language-option:hover,
.mz-language-option.is-active {
    color: #b78020 !important;
    opacity: 1;
    transform: translateY(-1px);
}

.mz-language-option.is-active {
    pointer-events: none;
}

.mz-language-separator {
    width: 1px;
    height: 19px;
    background:
        rgba(143, 114, 68, 0.22);
}

@media (max-width: 1100px) {
    .mz-language-switcher {
        position: fixed;
        top: 13px;
        right: 68px;
    }
}

@media (max-width: 767px) {
    .mz-language-switcher {
        top: 11px;
        right: 55px;
        gap: 5px;
        padding: 5px 7px;
    }

    .mz-language-option > span {
        font-size: 18px;
    }

    .mz-language-option > small {
        display: none;
    }
}

/* MZ_BILINGUAL_SWITCHER_END */
