.scb-cart-button{
    position:relative;
    display:inline-block;
    text-decoration:none;
}

.scb-cart-icon{
    font-size:24px;
}

.scb-cart-count{
    position:absolute;
    top:-8px;
    right:-8px;
    background:#ff3a3a;
    color:#fff;
    font-size:12px;
    width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.scb-bounce{
    animation: scbBounce .5s ease;
}

@keyframes scbBounce{
    0%{transform:scale(1)}
    50%{transform:scale(1.3)}
    100%{transform:scale(1)}
}