 

.floating-div {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px 0px 0px 8px;
    z-index: 1000;
}

.cart-btn, .wishlist-btn {
    padding: 10px 20px;
    background-color: #800214;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cart-btn:hover, .wishlist-btn:hover {
    background-color: #50010d;
}

.count{
    position: relative;
    bottom: 9px;
    background: goldenrod;
    /* padding: 3px; */
    padding: 3px 6px 3px 6px;
    border-radius: 50%;
    font-size: 11px;
}