
/* =========================
   Language Switcher
   ========================= */

.language-switcher {
    position: absolute;
    left: 25px;
    top: 0;
    height: 80px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1002;
    direction: ltr;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 34px;
    padding: 0 9px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.18);
    transition: 0.25s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
}

@media screen and (max-width: 768px) {
    .language-switcher {
        left: 75px;
        top: 15px;
        height: 42px;
        gap: 4px;
    }

    .language-switcher a {
        min-width: 42px;
        height: 32px;
        padding: 0 7px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .language-switcher {
        left: 62px;
        top: 12px;
        height: 40px;
        gap: 3px;
    }

    .language-switcher a {
        min-width: 37px;
        height: 30px;
        padding: 0 5px;
        font-size: 11px;
    }
}
