/* UA→RU Switcher v1.6 */
.uaru-switcher {
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.uaru-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: none;
    background: transparent;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
}

.uaru-btn:hover { background: rgba(0,0,0,0.05); }

.uaru-btn.is-active {
    background: #2271b1;
    color: #fff;
}

.uaru-btn.is-active:hover { background: #135e96; }

.uaru-flag { font-size: 14px; line-height: 1; }

.uaru-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

@media (max-width: 600px) {
    .uaru-floating { bottom: 12px; right: 12px; }
    .uaru-btn { padding: 5px 10px; font-size: 12px; }
}
