
.shop-full-width .product-content {
  padding-top: 0;
  margin-top: 0;
}
.shop-full-width .product-content h2 a {
  font-size: 21px;
}
.shop-full-width .single-product-wrap {
  text-align: center;
  position: relative;
}
.shop-full-width .rating {
  color: var(--main-color);
  fot: 2;
  font-size: 16px;
  margin-bottom: 7px;
}
.shop-full-width .product-content h2 {
  line-height: 17px;
  margin: 8px 0;
}
.shop-full-width  .pricea p {
  color: var(--heading-two);
  font-size: 16px;
  font-weight: 700;
}

.shop-full-width  .product-lavel {
  position: absolute;
  top: 0;
  left: 0;
}
.shop-full-width  .product-lavel p {
  color: var(--white);
  background: var(--main-color);
  font-weight: 700;
  padding: 6px 9px;
  border-radius: 0 21px 0 20px;
}

.product-lavel p.new{
  background: green;
}
.product-lavel p.sale {
  background: var(--heading-two);
}

.product-lavel p.percentage {
  background: #FF7272;
}
.product-hover-icon {
  position: absolute;
  top: 2%;
  right: 6%;
  transform: scale(0);
  transition: .6s all;
  visibility: hidden;
}
.single-product-wrap:hover .product-hover-icon {
  transform: scale(1);
  visibility: visible;
}
.product-hover-icon span {
  display: block;
  background: var(--white) !important;
  margin-bottom: 4px;
  height: 50px;
  width: 49px;
  border-radius: 50%;
  cursor: pointer;
  transition: .6s all;
}
.product-hover-icon span:hover {
  background: var(--main-color) !important;
}
.product-hover-icon span:hover svg{
  fill: var(--white);
}

.product-hover-icon .icon svg {
  width: 24px;
  fill: var(--heading-two);
  margin-top: 13px;
  transition: .6s all;
}
.product-img img:first-child {
  position: relative;
  opacity: 1;
}
.product-img {
  position: relative;
  margin-bottom: 0;
  -webkit-transition: -webkit-box-shadow 0.35s;
  transition: -webkit-box-shadow 0.35s;
  transition: box-shadow 0.35s;
  transition: box-shadow 0.35s, -webkit-box-shadow 0.35s;
}
.product-img  img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.product-img  img:last-child {
  position: absolute;
  opacity: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-img:hover img:first-child{
  opacity: 0;
}
.product-img:hover img:last-child {
  opacity: 1;
}
.old-price {
  margin-left: 3px;
  font-size: 17px;
  opacity: .7;
}