.rsc-floating-wrap {
    position: fixed;
    z-index: 9999;
}

.rsc-floating-wrap.rsc-pos-bottom-right {
    right: var(--rsc-horizontal, 24px);
    bottom: var(--rsc-vertical, 24px);
}

.rsc-floating-wrap.rsc-pos-bottom-left {
    left: var(--rsc-horizontal, 24px);
    bottom: var(--rsc-vertical, 24px);
}

.rsc-floating-wrap.rsc-pos-top-right {
    right: var(--rsc-horizontal, 24px);
    top: var(--rsc-vertical, 24px);
}

.rsc-floating-wrap.rsc-pos-top-left {
    left: var(--rsc-horizontal, 24px);
    top: var(--rsc-vertical, 24px);
}

.rsc-floating-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rsc-bg);
    color: var(--rsc-text, #fff);
    text-decoration: none;
    border-radius: 999px;
    padding: 11px 14px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.rsc-floating-btn:hover,
.rsc-floating-btn:focus {
    color: var(--rsc-text, #fff);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.rsc-icon {
    min-width: 26px;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 700;
}

.rsc-icon-img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
}

.rsc-floating-btn.rsc-icon-only {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.rsc-floating-btn.rsc-icon-only .rsc-icon {
    min-width: 30px;
    min-height: 30px;
    background: transparent;
}

.rsc-label {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .rsc-floating-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
}
