.stooper-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    font-family: inherit;
    z-index: 99999;
}
.stooper-lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid rgba(15, 23, 42, .14);
    border-radius: 999px;
    background: #ffffff;
    color: #0f172a;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}
.stooper-lang-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .12);
}
.stooper-lang-link.is-active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}
.stooper-lang-link.is-disabled {
    opacity: .42;
    cursor: not-allowed;
    background: #f8fafc;
    color: #64748b;
}
.stooper-lang-switcher-floating {
    position: fixed;
    padding: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, .16);
}
.stooper-lang-bottom-right { right: 18px; bottom: 18px; }
.stooper-lang-bottom-left { left: 18px; bottom: 18px; }
.stooper-lang-top-right { right: 18px; top: 18px; }
.stooper-lang-top-left { left: 18px; top: 18px; }
@media (max-width: 600px) {
    .stooper-lang-switcher-floating {
        right: 12px !important;
        left: auto !important;
        bottom: 12px !important;
        top: auto !important;
        max-width: calc(100vw - 24px);
        overflow-x: auto;
    }
    .stooper-lang-link {
        min-width: 34px;
        min-height: 32px;
        padding: 7px 9px;
        font-size: 12px;
    }
}
