/**====================================
Contents 
====================================**/
.ecomm-02-list-product-card>a,
.ecomm-02-list-product-card{
    display: flex;
    flex-direction: column;
    position: relative;
}
.ecomm-02-list-product-card{
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.ecomm-02-list-product-card .card-top{
    height: 278px;
    position: relative;
    background: #ececec;
    border-radius: 10px;
    overflow: hidden;
}
.ecomm-02-list-product-card .card-top figure{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecomm-02-list-product-card .card-top figure img{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.ecomm-02-list-product-card .fav-btn{
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    z-index: 5;
}
.ecomm-02-list-product-card .fav-btn img{
    display: block;
    max-width: 12px;
    max-height: 10px;
}
.ecomm-02-list-product-card .off{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    border-radius: 5px;
    font-size: 12px;
    color: #B90000;
    padding: 5px 8px;
    letter-spacing: 1px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1;
}
.ecomm-02-list-product-card .card-body{
    padding: 20px 0 0;
}
.ecomm-02-list-product-card h4{
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.2;
    letter-spacing: 1px;
}
.ecomm-02-list-product-card .price{
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    letter-spacing: 1px;
}
.ecomm-02-list-product-card .price .current{
    font-size: 12px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
}
.ecomm-02-list-product-card .price .old{
    font-size: 12px;
    font-weight: 300;
    color: #666666;
    letter-spacing: 1px;
    text-decoration: line-through;
}
.ecomm-02-list-product-card .price span+span{
    margin-left: 6px;
}


/**====================================
Responsive 
====================================**/
@media (min-width: 992px){
    .ecomm-list-products-02 .max-lg-w250{
        max-width: 250px;
    }
}
@media (max-width: 1199px){
    .ecomm-02-list-product-card .card-top{
        height: 210px;
    }
}
@media (max-width: 991px){

}
@media (max-width: 767px){

}
@media (max-width: 575px){
    .ecomm-02-list-product-card .off{
        font-size: 11px;
        top: 7px;
        left: 7px;
    }
    .ecomm-02-list-product-card .card-top{
        height: 160px;
    }
    .ecomm-02-list-product-card .fav-btn{
        right: 7px;
        bottom: 7px;
    }
    .ecomm-02-list-product-card{
        padding: 5px;
    }
    .ecomm-02-list-product-card .card-body{
        padding: 13px 0;
    }
}



