.product-grid{
font-family: 'Poppins', sans-serif;
text-align: center;
}
.product-grid .product-image{
margin: 0 0 5px;
overflow: hidden;
position: relative;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
width: 100%;
height: auto;
}
.product-grid:hover .product-image .pic-1{
opacity: 0;
transition: all 0.7s ease 0s;
}
.product-image .pic-2{
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
top: 0;
left: 0;
transition: all 0.7s ease 0s;
}
.product-grid:hover .product-image .pic-2{ opacity: 1; }
.product-grid .product-hot-label,
.product-grid .product-new-label,
.product-grid .product-discount-label{
color: #fff;
background: #ff6962;
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
padding: 3px 8px 2px;
border-radius: 0 10px 10px 0;
box-shadow: 3px 3px 0 rgba(0,0,0,0.1);
position: absolute;
top: 15px;
left: 0;
}
.product-grid .product-new-label{ background: #ffaa65; }
.product-grid .product-discount-label{ background: #00d994; }
.product-grid .product-links{
width: 115px;
padding: 0;
margin: 0;
list-style: none;
opacity: 0;
transform: translateX(-50%);
position: absolute;
bottom: 10px;
left: 50%;
transition: all 0.3s ease 0s;
}
.product-grid:hover .product-links{ opacity: 1; }
.product-grid .product-links li{
margin: 0 2px;
display: inline-block;
transform: perspective(300px) rotateX(90deg);
transform-origin: bottom center;
transform-style: preserve-3d;
transition: all 0.3s ease 0s;
}
.product-grid .product-links li:nth-child(2){ transition-delay: 0.1s; }
.product-grid:hover .product-links li{ transform: perspective(300px) rotateX(0); }
.product-grid .product-links li a{
color: #37b4ae;
background: #fff;
font-size: 17px;
line-height: 43px;
width: 50px;
height: 50px;
border-radius: 50px;
border: 5px solid #37b4ae;
box-shadow: 0 0 5px rgba(0,0,0,0.7);
display: block;
transition: all 0.3s ease 0s;
}
.product-grid .product-links li a:hover{
color: #fff;
background: #37b4ae;
}
.product-grid .product-content{
background: linear-gradient(#f5f5f5,transparent);
padding: 12px;
}
.product-grid .title{
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
margin: 0 0 7px;
}
.product-grid .title a{
color: #1e1e23;
transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{ color: #37b4ae; }
.product-grid .price{
color: #1e1e23;
font-size: 13px;
font-weight: 600;
}
.product-grid .price span{
color: #909097;
text-decoration: line-through;
margin: 0 0 0 7px;
}
@media screen and (max-width:990px){
.product-grid{ margin: 0 0 30px; }
}