/* Shopping Cart Button */
#shopping-cart {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #007BFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.2s ease;
}

#shopping-cart:hover {
    transform: scale(1.1);
}

/* Shopping Cart Icon */
#shopping-cart i {
    font-size: 24px;
    position: relative;
}

/* Product Count Badge */
#shopping-cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.product-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0px !important;
}


.product-row .font-weight-bold{
    font-size: 18px !important;
    font-weight: bold !important;
}


.product-row  .link-btn-round{
    border-radius: 50% !important;
}

.no-margin {
    margin: 0 !important;
}

@media (max-width: 768px) {
    .add-to-cart {
        margin-top: 5px;
    }
}

.modal-body  .product-row{
    margin-bottom: 10px !important;
}
