.bse-floating-buttons{
    position:fixed;
    right:18px;
    bottom:18px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
    pointer-events:none;
}
.bse-fb{
    pointer-events:auto;
    width:56px;
    height:56px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    box-shadow:0 4px 14px rgba(0,0,0,.22);
    transition:transform .18s ease, box-shadow .18s ease;
    position:relative;
}
.bse-fb:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 6px 18px rgba(0,0,0,.28);
    color:#fff;
}
.bse-fb svg{display:block}
.bse-fb--wsp{background:#25D366}
.bse-fb--cart{background:#2c6fad}
.bse-fb--ig{
    background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}
.bse-cart-count{
    position:absolute;
    top:-4px;
    right:-4px;
    min-width:20px;
    height:20px;
    padding:0 6px;
    border-radius:10px;
    background:#e74c3c;
    color:#fff;
    font-size:11px;
    font-weight:700;
    line-height:20px;
    text-align:center;
    box-shadow:0 1px 4px rgba(0,0,0,.25);
}
.bse-cart-count--hidden{display:none}

@media (max-width:600px){
    .bse-floating-buttons{
        right:12px;
        bottom:12px;
        gap:10px;
    }
    .bse-fb{
        width:50px;
        height:50px;
    }
    .bse-fb svg{
        width:24px;
        height:24px;
    }
}
