/**====================================
Contents 
====================================**/
.ecomm-latestproducts-01 .pr-filtering{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
.ecomm-latestproducts-01 .pr-filtering .filter-link{
    border: 0;
    padding: 0;
    background-color: transparent;
    font-size: 14px;
    color: #000;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.ecomm-latestproducts-01 .pr-filtering .filter-link.active{
    border-bottom: 1px solid #000;
}
.ecomm-latestproducts-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.ecomm-latestproducts-card .card-top{
    position: relative;
}
.ecomm-latestproducts-card figure{
    background-color: #ececec;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.ecomm-latestproducts-card figure img{
    display: block;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
}
.ecomm-latestproducts-card .card-body{
    padding: 18px 15px 0;
}
.ecomm-latestproducts-card .card-body h4{
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.ecomm-latestproducts-card .fav-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
}
.ecomm-latestproducts-card .fav-btn img{
    display: block;
    max-width: 50%;
}
.ecomm-latestproducts-card .addcart-btn{
    max-width: 100%;
    height: 45px;
    color: #fff;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    margin: 0 auto;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.3s all ease;
}
.latestproductslist  .slick-track {
    display: flex;
    gap: 30px;
}
.ecomm-latestproducts-01 .tab-content>.tab-pane{
    display: block; 
    height: 0px; 
    overflow: hidden; 
}
.ecomm-latestproducts-01 .tab-content>.active{
    height: auto;
    overflow: inherit;
}


/**====================================
Responsive 
====================================**/
@media (min-width: 992px){
    .ecomm-latestproducts-card .addcart-btn{
        opacity: 0;
        margin-bottom: -20px;
        visibility: hidden;
    }
    .ecomm-latestproducts-card:hover .addcart-btn{
        opacity: 1;
        margin-bottom: 0;
        visibility: visible;
    }
}
@media (max-width: 1399px){
    .ecomm-latestproducts-card figure{
        min-height: 300px;
    }
}
@media (max-width: 991px){
    .ecomm-latestproducts-card .addcart-btn{
        display: none;
    }
    .ecomm-latestproducts-card .addcart-btn{
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}
@media (max-width: 767px){
    .ecomm-latestproducts-card .fav-btn{
        width: 26px;
        height: 26px;
    }
    .latestproductslist .slick-track{
        gap: 20px;
    }
    .latestproductslist {
        margin: 0 -30px;
    }
}
@media (max-width: 575px){
    .ecomm-latestproducts-card figure{
        min-height: 220px;
    }
    .ecomm-latestproductss-01 .row>*{
        padding-left: 8px;
        padding-right: 8px;
    }
    .ecomm-latestproducts-card .card-body h4{
        font-size: 12px;
    }
    .ecomm-latestproducts-card .card-body .price .off,
    .ecomm-latestproducts-card .card-body .price .old,
    .ecomm-latestproducts-card .card-body .price .current{
        font-size: 12px;
    }
    .ecomm-latestproducts-card .card-body .price .off{
        width: 100%;
    }
    .ecomm-latestproducts-card .fav-btn{
        top: 10px;
        right: 10px;
    }
    .latestproductslist .slick-track{
        gap: 15px;
    }
    .latestproductslist {
        margin: 0 -20px;
    }
}



