.product-grid{
font-family: 'Jost', sans-serif;
text-align: center;
}
.product-grid .product-image{
position: relative;
overflow: hidden;
transition: all 0.3s ease-in;
}
.product-grid:hover .product-image{
border-radius: 0 50px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image .pic-1 {
backface-visibility: hidden;
transition: all 0.3s ease-in-out;
}
.product-grid:hover .product-image .pic-1{ opacity: 0; }
.product-grid .product-image .pic-2{
width: 100%;
height: 100%;
backface-visibility: hidden;
opacity: 0;
position: absolute;
top: 0;
left: 0;
transition: all 0.3s ease-in-out;
}
.product-grid:hover .product-image .pic-2{ opacity: 1; }
.product-grid .product-image img{
width: 100%;
height: auto;
}
.product-grid .product-discount-label,
.product-grid .product-hot-label{
color: #fff;
background-color: #62ce96;
font-size: 14px;
text-transform: uppercase;
line-height: 46px;
width: 46px;
height: 46px;
border-radius: 100px;
position: absolute;
top: 10px;
left: 10px;
transition: all .3s ease-in;
}
.product-grid .product-hot-label{ background: #fb3939cc; }
.product-grid:hover .product-discount-label,
.product-grid:hover .product-hot-label{
opacity: 0;
}
.product-grid .product-links{
font-size: 0;
width: 180px;
padding: 0;
margin: 0;
opacity: 0;
transform: translateX(-50%);
position: absolute;
bottom: -40px;
left: 50%;
transition: all 0.3s ease-in-out;
}
.product-grid:hover .product-links{
opacity: 1;
bottom: 20px;
}
.product-grid .product-links li{
display: inline-block;
box-shadow: 4px 0 4px rgba(0,0,0,0.4);
}
.product-grid .product-links li a{
color: #222;
background: #fff;
font-size: 18px;
line-height: 40px;
width: 40px;
height: 40px;
display: block;
position: relative;
transition: all .3s ease;
}
.product-grid .product-links li a:hover{
color: #fff;
background: #222;
}
.product-grid .product-links li a:before,
.product-grid .product-links li a:after{
content: attr(data-tip);
color: #fff;
background-color: #000;
font-size: 12px;
line-height: 22px;
padding: 2px 7px;
white-space: nowrap;
opacity: 0;
transform: translateX(-50%);
position: absolute;
left: 50%;
top: -35px;
transition: all 0.3s ease-in-out;
}
.product-grid .product-links li a:after{
content: '';
height: 15px;
width: 15px;
position: 0;
border-radius: 0;
transform: translateX(-50%) rotate(45deg);
top: -22px;
z-index: -1;
}
.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after{
opacity: 1;
}
.product-grid .product-content{ padding: 15px 15px 0; }
.product-grid .title{
font-size: 17px;
font-weight: 400;
text-transform: capitalize;
margin: 0 0 10px;
}
.product-grid .title a{
color: #555;
transition: all 0.3s ease;
}
.product-grid .title a:hover{ color: #000; }
.product-grid .price{
color: #999;
font-size: 15px;
font-weight: 400;
}
.product-grid .price span{
margin: 0 5px 0 0;
display: inline-block;
position: relative;
}
.product-grid .price span:before {
content: '';
background-color: #999;
width: 100%;
height: 1px;
transform: rotate(-20deg);
position: absolute;
top: 50%;
left: 0;
}
@media screen and (max-width:990px){
.product-grid{ margin: 0 0 30px; }
}