.product-grid{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #d6d6d6;
    transition: all .25s ease 0s;
}
.product-grid:hover{
    border: 1px dashed #ff8c22;
    box-shadow: 0px 1px 18px rgba(0,0,0,.12);
}
.product-grid .product-image{
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    position: relative;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-grid .product-image .pic-2{
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    opacity: 0;
    transform: rotateY(-90deg);
    transform-origin: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.product-grid:hover .product-image .pic-2{
    opacity: 1;
    transform: rotateY(0);
}
.product-grid .product-discount-label{
    color: #fff;
    background: #ff8081;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 8px 4.5px;
    border-radius: 20px;
    position: absolute;
    top: 15px;
    left: 15px;
}
.product-grid .product-links{
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: -50px;
    left: 0;
    transition: all 0.3s ease;
}
.product-grid:hover .product-links{ bottom: 0; }
.product-grid .product-links li{
    margin: 0 3px;
    display: inline-block;
}
.product-grid .product-links li a{
    color: #454545;
    background: #f5f5f5;
    font-size: 16px;
    line-height: 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.product-grid .product-links li a:hover{
    color:#fff;
    background: transparent;
}
.product-grid .product-links li a:before{
    content: "";
    background: #ff8c22;
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease-in-out;
}  
.product-grid .product-links li a:hover:before{ width: 100%; }
.product-grid .product-content{ padding: 12px; }
.product-grid .rating{ 
    color: #ff8c22;
    font-size: 12px;
    padding: 0;
    margin: 0 0 9px;
    list-style: none;
}
.product-grid .rating li{ display: inline-block; }
.product-grid .rating li.far{ color: #999; }
.product-grid .title{
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.product-grid .title a{
    color: #111;
    transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{ color:#ff8c22; }
.product-grid .price{
    color: #ff8c22;
    font-size: 18px;
    font-weight: 500;
    width: calc(100% - 39px);
    display: inline-block;
}
.product-grid .price span{
    color: #86938D;
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
}
@media screen and (max-width: 990px){
    .product-grid{ margin-bottom: 30px; }
}