.product-grid{
    margin-top:10px;
    background:#fdf9e2;
    font-family:aviny;
    border: 1px solid #fdf9e2;
    border-radius:15px;
    box-shadow: 0 0 15px #cad315 inset,0 1rem 3rem rgba(31,45,61,.125) !important;
    transform: translate(0, -10px);
}
.product-grid .product-image{
    padding: 10px;
    border-radius:13px;
    overflow: hidden;
    position: relative;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image a.image:before{
    content: '';
    background:#2E8444;
    width: 100%;
    height: 50%;
    border-radius:13px;
    opacity: .1;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all ease .35s;
}
.product-grid:hover .product-image a.image:before{
    opacity: 0.4;
    height: 100%;
}
.product-grid .product-image img{
    width: 100%;
    height: auto;
    border-radius:13px;
    box-shadow: 0 0 10px #cad315;
    transform: scale(.85);
    transition: all 0.5s ease 0s;
}
.product-grid:hover .product-image img{ transform: scale(1); }
.product-grid .product-like-icon{
    color: #2aa35b;
    font-size:21px;
    line-height: 18px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.product-grid:hover .product-like-icon{
    color: #47f5ef;
    top: 20px;
    right: 20px;
    transition-delay: 0.2s;
}
.product-grid .product-like-icon:hover{ color: #1b33a1; }
.product-grid .product-content{
    padding: 20px 10px;
    position: relative;
}
.product-grid .rating{
    color: #999;
    font-size: 12px;
    padding: 0;
    margin: 0 0 7px;
    list-style: none;
}
.product-grid .rating li.fas{
    color: #e52d53;
}
.product-grid .title{
    text-align:justify; 
    font-size: 18px;
    font-weight: 700;
    text-transform: capitalize;
    margin:10px 15px;
}
.product-grid h1.title{
    width: 100%;
    margin: 0 auto;
    font-size: 22px;
    color:#fff;
    font-weight: 700;
    text-align: center;
    padding:4px;
    border-radius:4px;
    background: #cad315;
}
.product-grid .title a{
    color: #000;
    transition: all 0.3s ease 0s;
}
.product-grid .title a:hover{ color: #e52d53; }
.product-grid .price{
    color: #e52d53;
    font-size: 18px;
    font-weight: 800;
}
.product-grid .add-to-cart{
    color: #fff;
    padding:1px 33%;
    background: #123456;
    font-size: 17px;
    text-align: center;
    border-radius:6px; 
    position: static;
    margin:15px;
}
.product-grid .add-to-cart:hover{ 
  background: #cad315; border-radius: 7px;
  box-shadow: 0 0 0 inset, 0 0 15px green, 0 0 green inset;
  transition: box-shadow 0.6s;
  color: #2B2BFD; 
}


@media screen and (max-width: 990px){
    .product-grid{ margin: 0 0 30px; }
}