/**====================================
Contents 
====================================**/
.ecomm-latestproducts-02 .ecomm-02-filtering{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.ecomm-latestproducts-02 .ecomm-02-filtering .filter-link{
    padding: 0;
    background-color: transparent;
    font-size: 13px;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 160px;
    height: 34px;
    border: 1px solid #000;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecomm-latestproducts-02 .ecomm-02-filtering .filter-link.active{
    background: #000;
    color: #fff;
}
.ecomm-02-latestproducts-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
}
.ecomm-02-latestproducts-card figure{
    background-color: #ececec;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    border-radius: 10px;
}
.ecomm-02-latestproducts-card figure img{
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: 0.5s all;
}
.ecomm-02-latestproducts-card:hover figure img{
    transform: scale(1.1) rotate(-7deg);
}
.ecomm-02-latestproducts-card .card-body{
    padding: 15px 0 0;
}
.ecomm-02-latestproducts-card .card-body h4{
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.ecomm02-latestproductslist .slick-track {
    display: flex;
}
.ecomm-latestproducts-02 .tab-content>.tab-pane{
    display: block; 
    height: 0px; 
    overflow: hidden; 
}
.ecomm-latestproducts-02 .tab-content>.active{
    height: auto;
    overflow: inherit;
}


/**====================================
Responsive 
====================================**/
@media (max-width: 1399px){
    .ecomm-02-latestproducts-card figure{
        height: 250px;
    }
}
@media (max-width: 575px){
    .ecomm-02-latestproducts-card figure{
        height: 180px;
    }
    .ecomm-02-latestproducts-card .card-body h4{
        font-size: 12px;
    }
    .ecomm-02-latestproducts-card{
        padding: 6px;
    }
    .ecomm-02-latestproducts-card .card-body{
        padding: 10px 0 0;
    }
    .ecomm-latestproducts-02 .ecomm-02-filtering .filter-link{
        width: 152px;
    }
}



