/**====================================
Contents 
====================================**/
.ecomm05-pritem{
    display: none;
}
.ecomm05-product-card{
    border: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.ecomm05-product-card figure{
    width: 100%;
    max-width: 60%;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecomm05-product-card figure img{
    display: block;
    max-width: 250px;
    max-height: 250px;
    mix-blend-mode: multiply;
}
.ecomm05-product-card .favbtn{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid #EAE7DF;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.ecomm05-product-card .favbtn img{
    display: block;
    max-width: 55%;
    max-height: 50%;
}
.ecomm05-product-card .ecomm05-offbox{
    position: absolute;
    top: 20px;
    left: 0;
    width: 90px;
    height: 26px;
    background: #8C786D;
    font-size: 14px;
    color: #EAE7DF;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecomm05-product-card .ecomm05-card-body{
    padding: 15px 0;
    margin-top: auto;
}
.ecomm05-product-card .ecomm05-card-body h4{
    font-size: 13px;
    color: #8C786D;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 5px;
}
.ecomm05-product-card .ecomm05-card-body h4 a{
    color: #8C786D;
}
.ecomm05-product-card .ecomm05-card-body .price{
    line-height: 1;
    display: flex;
}
.ecomm05-product-card .ecomm05-card-body .price span{
    font-size: 14px;
    letter-spacing: 0.5px;
}
.ecomm05-product-card .ecomm05-card-body .price .current{
    color: #8C786D;
    font-weight: bold;
}
.ecomm05-product-card .ecomm05-card-body .price .old{
    color: #B9AAA0;
    text-decoration: line-through;
    margin-left: 4px;
    font-size: 12px;
}
.ecomm05-product-card .ecomm05-card-body .save{
    color: #BC0025;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-left: 10px;
}
.ecomm05-lpbg{
    background: #F9F7F1;
}
.ecomm05-showmore-btn{
    font-size: 14px;
    color: #8C786D;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.ecomm05-showmore-btn span{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #8C786D;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 5px;
    transition: 0.5s all;
}
.ecomm05-showmore-btn img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.ecomm05-showmore-btn:hover{
    color: #8C786D; 
}


/**====================================
Responsive 
====================================**/
@media (max-width: 1199px){    
    .ecomm05-product-card figure img{
        max-width: 180px;
        max-height: 180px;
    }
    .ecomm05-product-card figure{
        height: 260px;
    }
}
@media (max-width: 767px){    
    .ecomm05-product-card figure img{
        max-width: 110px;
        max-height: 110px;
    }
    .ecomm05-product-card figure{
        height: 160px;
    }
    .ecomm05-product-card .favbtn{
        width: 24px;
        height: 24px;
        top: 10px;
        right: 10px;
    }
    .ecomm05-product-card .ecomm05-offbox{
        top: 10px;
        font-size: 10px;
        width: auto;
        padding: 5px;
        height: auto;
    }
    .ecomm05-product-card .ecomm05-card-body{
        padding: 10px 0;
    }
    .ecomm05-product-card .ecomm05-card-body .price span,
    .ecomm05-product-card .ecomm05-card-body h4{
        font-size: 12px;
    }
    .ecomm05-product-card .ecomm05-card-body .price .old{
        font-size: 10px;
    }
    .ecomm05-product-card .ecomm05-card-body .save{
        margin-left: 0;
        margin-top: 4px;
    }
    .ecomm05-showmore-btn{
        font-size: 11px;
    }
    .ecomm05-showmore-btn span{
        width: 16px;
        height: 16px;
        padding: 3px;
    }
}
@media (max-width: 575px){
    
}



