.products {
    position: relative;
    margin: 15px 20px;
    margin-bottom: 100px;
    justify-content: start;
    align-items: center;
    display: flex;
    flex-flow: wrap;
    column-gap: 25px;
    grid-row-gap: 30px;
}

.products .product {
    position: relative;
    width: 285px;
    height: 380px;
    max-width: 285px;
    max-height: 380px;
    margin-top: 0px;
    break-inside: avoid;
    border-radius: 8px;
    top: 0px;
    left: 0px;
    background: #FBFCFC;
    overflow: hidden;
}

.products .product .image {
    position: relative;
    width: 100%;
    height: 70%;
    object-fit: cover;
    flex-shrink: 0;
}

.products .product .image img {
    width: 100%;
    height: 100%;
}

.products .product:hover {
    position: relative;
    box-shadow: 5px 15px 15px #E5E7E9;
}

.products .product .content {
    position: relative;
    width: 100%;
    height: 30%;
    text-align: center;
    overflow: hidden;
    padding: 10px;
}

.products .product .content .product_name {
    text-align: left;
    overflow: hidden;
    height: 60%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.products .product .content .product_price {
    text-align: left;
    flex-grow: 1;
    margin: 5px 0px !important;
    color: #726C6C;
}

.products .product .content p {
    margin: 0px;
    padding: 1px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    flex-grow: 1;
    text-transform: capitalize;
}

@media (max-width: 1250px) {
    .products {
        column-gap: 20px;
    }
    .products .product {
        width: 260px;
        height: 330px;
    }
}

@media (max-width: 650px) {
    .products {
        column-gap: 10px;
        grid-row-gap: 20px;
        margin: 15px 15px;
        margin-bottom: 100px;
    }
    .products .product {
        width: 250px;
        height: 315px;
    }
}

@media (max-width: 610px) {
    .products .product {
        width: 230px;
        height: 280px;
    }
    .products .product .image {
        height: 73%;
    }
    .products .product .content {
        height: 27%;
    }
    .products .product .content .product_name {
        height: auto;
        -webkit-line-clamp: 1;
    }
    .products .product .content .product_price {
        margin: 2px 0px !important;
    }
}

@media (max-width: 570px) {
    .products {
        margin: 0px 15px;
        margin-bottom: 100px;
    }
    .products .product {
        width: 48%;
        height: 270px;
    }
}

@media (max-width: 550px) {
    .products {
        margin: 0px 8px;
        margin-bottom: 100px;
    }
}

@media (max-width: 450px) {
    .products {
        margin-bottom: 160px;
    }
    .products .product {
        height: 255px;
    }
}