#om-lang-switcher {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 2147483000;
    font-family: "Segoe UI", sans-serif;
}
#om-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(15,25,21,0.88);
    color: #fff;
    box-shadow: 0 14px 34px rgba(17,33,27,0.22);
    cursor: pointer;
    backdrop-filter: blur(12px);
}
#om-lang-dropdown {
    display: none;
    position: absolute;
    bottom: 52px;
    left: 0;
    min-width: 170px;
    max-height: 360px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 20px 50px rgba(17,33,27,0.18);
}
#om-lang-switcher.open #om-lang-dropdown { display: grid; gap: 4px; }
#om-lang-dropdown a {
    padding: 9px 12px;
    border-radius: 12px;
    color: #11211b;
    text-decoration: none;
    font-size: 14px;
}
#om-lang-dropdown a:hover,
#om-lang-dropdown a.active {
    background: rgba(122,185,128,0.16);
    color: #2d5c42;
    font-weight: 700;
}
.om-rtl #om-lang-switcher { left: auto; right: 20px; }
.om-rtl #om-lang-dropdown { left: auto; right: 0; }
@media (max-width: 680px) {
    #om-lang-switcher { left: 12px; bottom: 12px; }
    .om-rtl #om-lang-switcher { left: auto; right: 12px; }
}
