/* Ugway language switcher */
.navAccess {
    align-items: center;
    gap: 12px;
}

.lang_switcher {
    position: relative;
    z-index: 120;
}

.lang_toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 72px;
    height: 40px;
    padding: 0 14px;
    background: #fff;
    border: none;
    border-radius: 50px;
    box-shadow: -1px 3px 65px 0 rgba(237, 237, 237, 0.35);
    color: #252525;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang_toggle i.icofont-globe {
    color: #01d85f;
    font-size: 16px;
}

.lang_toggle .lang_arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.lang_switcher.open .lang_toggle {
    background: #f7a392;
    color: #fff;
}

.lang_switcher.open .lang_toggle i.icofont-globe {
    color: #fff;
}

.lang_switcher.open .lang_arrow {
    transform: rotate(180deg);
}

.lang_menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 150px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(37, 37, 37, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.lang_switcher.open .lang_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang_menu li {
    margin: 0;
    padding: 0;
}

.lang_menu button {
    display: block;
    width: 100%;
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: #252525;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang_menu button:hover,
.lang_menu button.active {
    color: #01d85f;
    background: rgba(1, 216, 95, 0.08);
}

.header_01.fixedHeader .lang_toggle {
    box-shadow: -1px 3px 20px 0 rgba(37, 37, 37, 0.08);
}

@media (max-width: 991px) {
    .navAccess {
        padding-top: 18px;
    }

    .lang_toggle {
        min-width: 64px;
        height: 36px;
        padding: 0 12px;
        font-size: 12px;
    }
}
