.product-card {
  -webkit-transform: scale(1.000001) translateZ(0);
  -ms-transform: scale(1.000001) translateZ(0);
  -o-transform: scale(1.000001) translateZ(0);
  transform: scale(1.000001) translateZ(0);

  -webkit-transition: transform 0.3s cubic-bezier(.25,.8,.25,1);;
  -o-transition: transform 0.3s cubic-bezier(.25,.8,.25,1);;
  transition: transform 0.3s cubic-bezier(.25,.8,.25,1);;

  backface-visibility: hidden;
}
.product-card .product-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  line-height: 0;
  padding-top: 75%;
  max-height: 183.75px;
  overflow: hidden;
  background: #F8F8F8;
  /*-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
  /*box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
}
.product-card .product-image img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;

  -webkit-filter: blur(15px);
  -o-filter: blur(15px);
  filter: blur(15px);

  -webkit-transform: scale(1.1) translateZ(0);
  -ms-transform: scale(1.1) translateZ(0);
  -o-transform: scale(1.1) translateZ(0);
  transform: scale(1.1) translateZ(0);
  
  -webkit-transition: filter 0.5s linear, transform 0.5s ease .3s;
  -o-transition: filter 0.5s linear, transform 0.5s ease .3s;
  transition: filter 0.5s linear, transform 0.5s ease .3s;
}
.product-card .product-image img.lazyloaded {
  -webkit-filter: blur(0);
  -o-filter: blur(0);
  filter: blur(0);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);

  -webkit-transition: filter 0.5s linear, transform 0.5s ease;
  -o-transition: filter 0.5s linear, transform 0.5s ease;
  transition: filter 0.5s linear, transform 0.5s ease;
}

.product-card:hover .product-image img,
.product-card:active .product-image img,
.product-card:focus .product-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.product-card .product-image .image-gradient {
  z-index: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .5;
}
.product-card .product-image .image-gradient.top {
  background: linear-gradient(to bottom, #000000, rgba(0,0,0, 0) 30%);
}
.product-card .product-image .image-gradient.bottom {
  background: linear-gradient(to top, #000000, rgba(0,0,0, 0) 30%);
}

.product-card .product-image .product-information {
  z-index: 2;
  position: absolute;
  padding: 12px;
  top: 0;
  color: #FFF;
}
.product-card .product-image .product-information > * {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.product-card .product-image .product-information > span {
  margin-left: 2px;
  font-weight: 700;
}

.product-card .product-image .product-information.pickup {
  left: 0;
}
.product-information.duration {
  right: 0;
}
.product-information.stamp {
  top: auto!important;

  background: linear-gradient(to top, rgba(0,0,0, 0.9), rgba(0,0,0, 0) 100%);
  border-radius: 3px;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 10px 12px!important;
  padding-right: 15px!important;
  line-height: 1.5;
  font-weight: 700;
}
.product-card .product-image .product-information.stamp > i {
  color: #FABE58;
  font-size: 16px;
  margin-right: 5px;
  line-height: 1.5;
}
.product-card .product-image .product-information.stamp span {
  color: #fff;
}
.product-information.best-seller {
    top: auto!important;
    bottom: 0;
    right: 0;
    font-size: 25px;
    color: #FABE58!important;
    text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
}


.product-card .product-content {
  padding: 10px 0;
  padding-right: 5px;
}
.product-card .product-content a {
  display: block;
}
.product-card .product-content .product-tags {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .product-content .product-tags a,
.product-card .product-content .product-tags span,
.product-card .product-content .product-information span,
.product-card .product-content .product-review span {
  display: inline-block;
  margin-right: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #777;
  vertical-align: middle;
  text-transform: uppercase;
  text-decoration: none;
}
.product-card .product-content .product-tags a.product-category,
.product-card .product-content .product-tags span.product-category {
  color: #3A539B;
}
.product-card .product-content span.separator {
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #777;
}

.product-card .product-content h4.product-title {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  min-height: 48px;
}
.product-card .product-content h4.product-title a {
  color: #333;
  text-decoration: none;
}
.product-card .product-content p.product-oneliner {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  min-height: 63px;
  color: #777;
}
.product-card .product-content p.product-oneliner.full {
  display: none;
}
.product-card .product-head {
}
.product-card .product-content .product-information span,
.product-card .product-content .product-review span {
  font-weight: 400;
  text-transform: none;
}
.product-card .product-content .product-information span.product-price {
  font-weight: 700;
  font-size: 16px;
  color: #16A085;
}
.product-card .product-content .product-information span.product-price.discounted {
  display: block;
  font-weight: 700;
  font-size: 14px;
  text-decoration: line-through;
  margin-top: -16px;
  color: #AAA;
}
.product-card .product-foot {
  margin-top: 21px;
}

.product-card .product-content .product-review {
  line-height: 1;
}
.product-card .product-content .product-review span.stars {
  line-height: 0;
  margin-right: 1px;
}
.product-card .product-content .product-review span.stars i {
  font-size: 10px;
  color: #DDD;
}
.product-card .product-content .product-review span.stars i.active {
  color: #FABE58;
}
.product-card .product-content .product-review span.count {
  font-size: 10px;
}


/*For Sliders*/
.recommended-slider {
  padding-bottom: 60px!important;
}
.recommended-slider .flickity-slider {
  margin-left: -10px!important;
}

.recommended-slide .product-card {
    width: 100%;
    white-space: initial;
    padding: 0 10px;
}

@media(min-width: 1024px) {
    .recommended-slider .recommended-slide {
        width: 25%!important;
        display: inline-block;
        vertical-align: top;
    }
}
@media(max-width: 1024px) {
    .recommended-slider .recommended-slide {
        width: 33.333%!important;
        display: inline-block;
        vertical-align: top;
    }
}
@media(max-width: 768px) {
    .recommended-slider .recommended-slide {
        width: auto!important;
    }
    .recommended-slide .product-card {
        width: 300px;
        max-width: 100%;
    }
}
@media(max-width: 568px) {
  .recommended-slider {
    padding-bottom: 0!important;
  }
}