.recently-viewed-products {
    display: flex;
     flex-wrap: wrap; 
    gap: 15px;
    justify-content: left;
    /* margin: 20px 0; */
}

.recently-viewed-product {
    width: 19%;
    box-sizing: border-box;
    text-align: center;
}

.recently-viewed-product img {
    height: auto  ;
    overflow: hidden;
    width: 100%;
    object-fit: fill;
    border-radius: 10px !important;
}

.recently-viewed-product h4 {
    font-size: 18px;
    margin: 10px 0px;
    color: #333;
    font-weight: 600;
}

.recently-viewed-product p {
    font-size: 2em;
    color: black ;
    margin: 0;
}
@media only screen and (max-width: 768px) {
    .recently-viewed-product{
        width: 47%;
    }
}