:root{
    --main-color1: #e67e22;
    --main-color2: #FF0000;
    --main-color3: #fff;
    --text-color: #131e2c;
}
.product-grid{
    font-family: 'Rubik', sans-serif;
    text-align: center;
    margin-bottom: 10px;
}
.product-grid .product-image{ position: relative; }
.product-grid .product-image a.image{
    display: block;
    overflow: hidden;
}
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-grid .product-new-label{
	color: #fff;
	background: #FF0004;
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	line-height: 40px;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	position: absolute;
	top: 40px;
	right: -5px;
	z-index: 1;
	font-weight: bold;
}
.product-grid .product-image .pic-1{ transition: all 500ms; }
.product-grid .product-image:hover .pic-1{ transform: scale(1.1); }
.product-grid .product-sale-label,
.product-grid .product-discount-label{
    color: #fff;
    background: #e67e22;
    font-size: 11px;
    line-height: 24px;
    text-transform: uppercase;
    padding: 0 10px;
    border-radius: 3px;
    position: absolute;
    left: 10px;
    top: 10px;
product-new-label}
.product-grid .product-discount-label{
    background: #FF0000;
    letter-spacing: 0.5px;
    left: auto;
    right: 10px;
}
.product-grid .social{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 1;
    /*transform: translateX(-50%) translateY(-50%);*/
    position: absolute;
    top: -7px;
    right: -7px;
    transition: all 500ms;
}
/*.product-grid:hover .social { 
    opacity: 1;
    left: 90%;
    transition: all 0.2s ease-out;
}*/
.product-grid .price_book {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 15px;
    right: -5px;
    width: 90px;
    background-color: #303031;
    font-weight: bold;
	color: #FFFFFF;
}

.product-grid .price_dig {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 40px;
    right: -5px;
    width: 90px;
    background-color: #303031;
    font-weight: bold;
	color: #FFFFFF;
}

.product-grid .price_audio{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 70px;
    right: -5px;
    width: 90px;
    background-color: #303031;
    font-weight: bold;
	color: #FFFFFF;
}

.product-grid .social li{
    display: inline-block;
    float: right;
    margin-bottom: 10px;
}
.product-grid .social li a{
    color: #131e2c;
    background: #fff;
    font-size: 16px;
    line-height: 40px;
    height: 40px;
    width: 40px;
    margin: 0 2px;
    box-shadow: 0 0 2px #999;
    border-radius: 50px;
    display: block;
    transition: all 0.2s ease-out;
}
.product-grid .social li a:hover{
    color: #FFD600;
   
}
.product-grid .social_s li a{
    color: #fff;
    background: #FF0000;
}
.product-grid .add-to-cart{
    color:#fff;
    background: #FF0000;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    width: 60px;
    height: 60px;
    border: 5px solid #fff;
    border-radius: 50%;
    opacity: 0.0;
    transform: translateX(-50%);
    position: absolute;
    bottom: 10px;
    left: 10%;
    transition: all 500ms;
}

.product-grid:hover .add-to-cart { 
    opacity: 1;
    left: 50%;
    transition: all 0.5s ease-out;
    }
/*.text{
    background: var(--main-color3);
    font-size: 12px;
    text-align: center;
    opacity: 0;
    position: absolute;
    transition: all 500ms;
    padding: 10px;
    -webkit-box-shadow: 0px 9px 7px -6px rgba(120,120,120,1);
    -moz-box-shadow: 0px 9px 7px -6px rgba(120,120,120,1);
    box-shadow: 0px 9px 7px -6px rgba(120,120,120,1);
}*/
.product-grid .add-to-cart:hover{ background: #e67e22; }
/*.product-grid:hover .add-to-cart{ opacity: 1; }*/
.product-grid .product-content{
    padding-bottom: 10px;
}
.product-grid:hover .text { 
    opacity: 1;
    transition: 0.8s;
    z-index: 10;
    }
.product-grid .title{
    font-size: 13px;
}
.product-grid .title a{
    color: #131e2c;
}
.product-grid:hover .title a{ color: #e67e22; }
.product-grid .rating{
    padding: 0;
    margin: 0 0 7px;
    list-style: none;
}
.product-grid .rating li{
    color: #FF0000;
    font-size: 13px;
    display: inline-block;
}
.product-grid .rating li.disable{ color: #999; }
.product-grid .price{
    color: #131e2c;
    font-size: 14px;
}
.product-grid .price span{
    text-decoration: line-through;
    margin-right: 5px;
}
@media only screen and (max-width:990px){
    .product-grid{ margin-bottom: 30px; }
}