.ls-switcher {
    position: relative;
    display: inline-block;
    direction: rtl;
}
.ls-current {
    background: #eee;
    padding: 8px 12px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ls-current img {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.ls-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 999;
    min-width: 120px;
}

.ls-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
}

.ls-dropdown a:hover {
    background: #f0f0f0;
}

.ls-dropdown img {
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.ls-switcher:hover .ls-dropdown,
.ls-switcher:focus-within .ls-dropdown {
    display: block;
}
