
.products{
    clear: both;
    overflow: hidden;
    padding: 0;
    margin: 0 -0.5%;
}

.products .product-list{
    min-height: 100px;
    padding: 20px;
    border: solid 1px var(--border-light-color);
    width: 24%;
    float: left;
    margin: 0 0.5%;
    margin-bottom: 1%;
}

.products .product-list .category-wrap{
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products .product-list .category-wrap .category-title{
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    color: var(--text-sub-color);
    text-transform: uppercase;
    font-weight: 600;
}

.products .product-list .category-wrap .product-offer-percent{
    min-width: 40px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    background-color: rgb(192, 242, 192);
    color: rgb(11, 102, 11);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    padding: 0 5px;
}

.products .product-list .image-wrap{
    height: 250px;
    overflow: hidden;
    margin: 10px 0;
}

.products .product-list .image-wrap .imagethmb,
.products .product-list .image-wrap .imagethmb .imagethmb_inner{
    height: 250px;
}

.products .product-list .title-wrap{
    clear: both;
    overflow: hidden;
}

.products .product-list .title-wrap .product-title{
    font-size: 15px;
    font-weight: 500;
    height: 46px;
    overflow: hidden;
}

.products .product-list .price-wrap{
    height: 40px;
    clear: both;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    /* background-color: rebeccapurple; */
}

.products .product-list .price-wrap .price{
    font-weight: 600;
    font-size: 20px;
}

.products .product-list .price-wrap .price.ex{
    color: var(--text-sub-color);
    text-decoration: line-through;
}

/*.products-wrapper{
    clear: both;
    margin: 30px 0;
}

.products-wrapper .products{
    clear: both;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: left;
    gap: 20px;
}

.products-wrapper .products .product-list{
    position: relative;
    border: solid 1px var(--border-color);
    min-height: 100px;
    width: 25%;
}

.products-wrapper .products .product-list .loading{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
    color: #fff;
    top: 0;
    left: 0;
    z-index: 99999;
}

.products-wrapper .products .product-list .loading em{
    position: absolute;
    display: block;
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 0;left: 0;right: 0;bottom: 0;
    margin: auto;
    font-size: 20px;
}

.products-wrapper .products .product-list .image-wrap,
.products-wrapper .products .product-list .image-wrap .imagethmb_inner{
    height: 300px;
    background-color: #fff;
}

.products-wrapper .products .product-list .title-wrap{
    border-top: solid 1px var(--border-color);
    border-bottom: solid 1px var(--border-color);
    padding: 10px;
}

.products-wrapper .products .product-list .title-wrap .title{
    font-size: 14px;
    font-weight: 400;
    height: 25px;
    overflow: hidden;
}

.products-wrapper .products .product-list .title-wrap .price{
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.products-wrapper .products .product-list .title-wrap .price em{
    font-style: normal;
    font-weight: 400;
}

.products-wrapper .products .product-list .button-wrap{
    display: flex;
    justify-content: center;
}

.products-wrapper .products .product-list .button-wrap .box{
    width: 50%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-wrapper .products .product-list .button-wrap .box:first-child{
    border-right: solid 1px var(--border-color);
}

.addtocart{
    outline: none;
    background-color: #0e8ce4;
    color: #FFF;
    height: 100%;
    width: 100%;
    border: none;
    cursor: pointer;
}

.addtocart:hover{
    background-color: #0c67a9;
}

.addtocart:disabled{
    background-color: #000000;
}

.product-qty{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.product-qty .input-quantity{
    text-align: center;
    width: 50px;
    height: 30px;
    border: none;
}

.product-qty .input-quantity-btn{
    background-color: #fff;
    width: 30px;
    height: 30px;
    border: solid 1px #ccc;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cart-list{
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.cart-list .cart{
    background-color: #fff;
    min-height: 80px;
    border-radius: 10px;
    border: solid 1px var(--border-color);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0px 0px 3px #DDD;
}

.cart-list .cart div,
.cart-list .cart .delete{
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-list .cart .image{
    width: 50px;
}

.cart-list .cart .delete{
    transition-duration: 0.2s;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
    margin-right: 10px;
}
.cart-list .cart .delete:hover{
    color: red;
}

.cart-summary{
    height: 300px;
    border-radius: 10px;
    background-color: #fff;
    border: solid 1px var(--border-color);
    box-shadow: 0px 0px 3px #DDD;
    padding: 20px;
} */
