.polylang-switcher-wrapper .polylang-switcher-title {
    font-size: var(--font-base);
    font-weight: var(--font-bold);
    margin-bottom: 1em;
}

.polylang-dropdown {
    position: relative;
}

.polylang-dropdown-menu {
    width: 100%;
    max-height: 255px;
    position: initial;
    border-radius: 8px;
    border: 1px solid var(--color-white);
    list-style-type: none;
    margin: 10px 0 0;
    overflow: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    z-index: 9;
}

.polylang-dropdown .scale-select {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid var(--color-white);
    padding: 15px 15px 15px 20px;
    cursor: pointer;
}

.polylang-dropdown .scale-select::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 9px;
    background-image: url('/wp-content/uploads/2025/04/down-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(1);
    transition: transform 0.2s linear;
}

.polylang-dropdown.active .scale-select::after {
    transform: rotate(180deg);
}

.polylang-dropdown .polylang-dropdown-menu > li > a {
    display: block;
    padding: 10px 15px;
    color: var(--color-white);
    cursor: pointer;
}

.polylang-dropdown .polylang-dropdown-menu > li:first-child > a {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding-top: 15px;
}

.polylang-dropdown .polylang-dropdown-menu > li:last-child > a {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-bottom: 15px;
}

.polylang-dropdown .polylang-dropdown-menu > li > a:hover {
    color: var(--color-primary);
}

@media (max-width: 544px) {
    .polylang-switcher-wrapper {
        margin-top: 30px;
    }
}