.guest-lang-switcher{
    position:relative;
    display:inline-block;
    z-index:1200;
}

.guest-lang-toggle{
    width:52px;
    height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:999px;
    background:rgba(0,0,0,0.28);
    color:#fff;
    cursor:pointer;
    border:1.5px solid rgba(212,175,55,0.95);
    box-shadow:0 6px 18px rgba(0,0,0,0.22);
    transition:all .18s ease;
    padding:0;
}

.guest-lang-toggle:hover{
    transform:translateY(-1px);
    background:rgba(0,0,0,0.42);
    border-color:#d4af37;
}

.guest-lang-toggle:focus-visible{
    outline:none;
    box-shadow:0 0 0 3px rgba(212,175,55,0.18);
}

.guest-lang-icon{
    font-size:20px;
    line-height:1;
}

.guest-lang-dropdown{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    min-width:158px;
    padding:6px;
    display:none;
    flex-direction:column;
    gap:4px;
    background:rgba(18,18,18,0.98);
    border:1px solid rgba(212,175,55,0.18);
    border-radius:14px;
    box-shadow:0 14px 30px rgba(0,0,0,0.28);
    backdrop-filter:blur(12px);
}

.guest-lang-switcher.open .guest-lang-dropdown{
    display:flex;
}

.guest-lang-option{
    display:flex;
    align-items:center;
    width:100%;
    min-height:42px;
    padding:0 12px;
    border:none;
    border-radius:10px;
    background:transparent;
    color:#fff;
    cursor:pointer;
    font-size:14px;
    text-align:left;
    transition:all .18s ease;
}

.guest-lang-option:hover{
    background:rgba(255,255,255,0.06);
}

.guest-lang-option.active{
    background:rgba(212,175,55,0.14);
    color:#f4d97d;
    font-weight:700;
}