:root {
    --blue: #1E73BE;
    --grey: #2A2A29;
    --green: #199F4A;
    --white: #fff;
    --back: #000;
    --Yellow: #ffff13;
}
li{
   list-style-type: none;
}
.img-wrap {
    position: relative;
    height: auto;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    background-position: 50% 50%;
    background-size: cover;
    padding-top: 56.25%;
}
.img-wrap img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    transform: translateZ(0);
    margin: 0 auto;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    top: 0;
    position: absolute;
    object-position: 50% 50%;
    object-fit: cover;
}
.list_product-cate {
   display: flex;
   width: 100%;
   flex-wrap: wrap;
   gap: 22px;
   justify-content: center;
}
.list_product-cate .item-cate {
   width: 100%;
   max-width: 300px;
   height: 300px;
   border: 1px dashed #64b5f6;
   padding: 10px;
}
.list_product-cate .item-cate .img-wrap{
    padding-top: 83.25%;
}
.list_product-cate .item-cate .content-cate .title-cate{
    font-size: 18px;
    margin-bottom: 0;
}
.list_product-cate .item-cate .content-cate {
    transition: all 0.5s;
}
.list_product-cate .item-cate:hover .content-cate {
    transform: translateY(-10px);
}
.list_product {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.list_product .product-item {
    background: var(--white);
    padding: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .1);
}
.list_product .product-item .thumbnail-product {
    position: relative;
}
.list_product .product-item .thumbnail-product .img-wrap {
    padding-top: 86.25%;
}
.list_product .product-item .thumbnail-product .btn-cart {
    cursor: pointer;
    border-radius: 6px;
    position: absolute;
    bottom: 0%;
    left: 16%;
    width: 70%;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: all .5s;
    padding: 8px 18px;
    background: var(--blue);
    color: var(--white);
    text-transform: uppercase;
}   
.list_product .product-item .content-product a {
    font-size: 18px;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;  
}
.list_product .product-item:hover .thumbnail-product .btn-cart {
    visibility: visible;
    bottom: 4%;
    opacity: 1;
}
.list-item-category {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.list-item-category .item {
    border: 1px dashed #64b5f6;
    padding: 10px;
    background: whitesmoke;
    background-image: linear-gradient(#fff, #e0e0e0);
    list-style-type: none;
    transition: all 0.5s;
}
.list-item-category .img-wrap {
    padding-top: 100.25%;
}
.list-item-category .title-category {
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    color: var(--blue);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.list-item-category .is-divider {
    background-color: #fd3324 !important;
    margin: 1em auto;
}
.list-item-category .desc p {
    color: #000;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.main-category-post{
    padding: 30px 0;
}
.main-category-post .title-section{
    font-weight: 700;
    line-height: 47px;
    color: #64b5f6;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
}
.products .product-small.col {
    border: 1px dashed #64b5f6;
    padding: 10px;
}
.products .product-small.col .box-text-products{
    border-top: 1px dashed #64b5f6;
}
.products .product-small.col .box-text-products .category {
    color: #0010ef;
    font-weight: 700;
}
.products .product-small.col .box-text-products .product-title a{
    padding: 10px 0;
}
.products .product-small.col .box-text-products .price-wrapper .woocommerce-Price-amount{
    color: #fd3324;
}
@media (max-width: 991px){
    .list_product-cate {
        gap: 10px;
    }
    .list_product-cate .item-cate {
        max-width: 48%;
        margin: 0 !important;
    }
}
@media (max-width: 790px){
    .list_product,
    .list-item-category{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px){
   
}
@media (max-width: 574px){
    .list_product, .list-item-category {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 475px){
   
}