@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

body{
    font-family: 'Poppins', sans-serif;
}
.product-item{
    border: 1px solid rgb(219, 219, 219);
}
.product-img{
    position: relative;
    overflow: hidden;
}
.btns{
    position: absolute;
    left: 0;
    bottom: -100%;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}
.btns button{

    transition: all 0.3s ease-in-out;
}

.product-img:hover .btns{
    bottom: 0;
}

.heart-icon{
    position: absolute;
    top: 16px;
    right: 15px;
    font-size: 18px;
}

.product-type{
    font-size: 13px;
    opacity: 0.8;
}
.product-name{
    transition: all 0.3s ease-in-out;
}
.product-name:hover{
    color: #fcb941!important;
}
.product-price{
    color: #fcb941;
	font-size: 30px;
	
}
.product-price-normal{
	color: red;
	text-decoration: line-through;
	font-size: 20px;
}
.rating{
    font-size: 13px;
}
.product-item{
    width: 300px;
}