
.list_product_sof {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    grid-gap: 15px;
    margin-bottom: 20px;
}
.item-product {
    height: 100%;
}
.item-product a {
    color: #000;
    text-decoration: none;
    font-size: 0.9em;
}
.item-product a:hover {
    text-decoration: none;
}
.lh2-img {
    max-width: 100%;
    height: 50%;
}
.title_list_pr {
    margin: 30px 0;
}
.item-product .box-text {
    padding: 10px;
}
.item-product .title-product {
    font-size: 18px;
    line-height: 23px;
    margin: 0;
}
.price {
    font-size: 16px;
    margin-bottom: 0;
}
del span.amount {
    opacity: .6;
    font-weight: normal;
    margin-right: 0.3em;
}
span.amount {
    color: red !important;
}
span.amount {
    white-space: nowrap;
    color: #111;
    font-weight: bold;
}
ins {
    text-decoration: none;
}
@media only screen and (max-width: 768px) {
    /*************** ADD MOBILE ONLY CSS HERE  ***************/
        .list_product_sof {
            grid-template-columns: repeat(3, 1fr);
        }
        
    }
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/
    .list_product_sof {
        grid-template-columns: repeat(2, 1fr);
    }
    .lh2-img {
        height: 50%;
    }
}
