
    .lid-location-switcher {
        position: relative;
        display: inline-block;
    }
    .lid-ls__trigger {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 6px 10px;
        color: #ffffff;
        font: inherit;
    }
    .lid-ls__flag svg {
        width: 22px;
        height: auto;
        display: block;
        border-radius: 2px;
    }
    .lid-ls__chevron {
        transition: transform 0.2s ease;
    }
    .lid-ls__trigger[aria-expanded="true"] .lid-ls__chevron {
        transform: rotate(180deg);
    }
    .lid-ls__dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        list-style: none;
        margin: 4px 0 0;
        padding: 4px 0;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        min-width: 140px;
        z-index: 999;
    }
    .lid-ls__dropdown.is-open {
        display: block;
    }
    .lid-ls__option a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        text-decoration: none;
        color: inherit;
    }
    .lid-ls__option a:hover {
        background: #f5f5f5;
    }
    .lid-ls__option.is-current a {
        font-weight: 600;
    }