.floating-container {
    position: fixed;
    width: 100px;
    height: 100px;
    top: 25%;
    right: 0;
    margin: 35px -30px;
    z-index: 999;
}

.floating-container .floating-button {
    position: absolute;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #d5a953;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    line-height: 65px;
    text-align: center;
    font-size: 23px;
    z-index: 100;
    box-shadow: 0 10px 25px -5px rgba(212, 173, 0, 0.685);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    
}

.floating-button:hover {
    background-color: #d49e30;
}

.cart-counter{
        position: absolute;
        background-color: #830000;
        color: white;
        padding: 5px;
        width: 20px;
        height: 20px;
        border-radius: 20px;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 50px;
        right: 60px;
        z-index: 999;
}