.item-product {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item-product .product-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 116.6%;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.item-product .product-image img {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: 0px auto;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}
.item-product .product-image .onsale {
  display: none !important;
}
.item-product:hover .product-image img {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
}
.item-product .product-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-right: 50px;
  position: relative;
}
.item-product .product-info .product-name {
  width: 100%;
  font-size: 19px;
  line-height: 28px;
  font-family: "Aptos", sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #303030;
}
.item-product:hover .product-info .product-name {
  color: #828282;
}
.item-product .product-info .price {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  margin: 0px;
}
.item-product .product-info .price del .woocommerce-Price-amount {
  color: #303030;
  margin-right: 16px;
  text-decoration: line-through;
}
.item-product:hover .product-info .price del .woocommerce-Price-amount {
  color: #828282;
}
.item-product .product-info .price ins {
  color: #FF9800;
  text-decoration: none;
}
.item-product .product-info .price .woocommerce-Price-amount {
  color: #FF9800;
  text-decoration: none;
}
.item-product:hover .product-info .price ins {
  color: rgba(255, 152, 0, 0.5);
  text-decoration: none;
}
.item-product:hover .product-info .price .woocommerce-Price-amount {
  color: rgba(255, 152, 0, 0.5);
  text-decoration: none;
}
.item-product .product-info .add_to_cart_button {
  width: 30px;
  height: 40px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0px;
  background: url(../images/icons/add-cart-icon.png) no-repeat;
  background-size: 17px 20px;
  background-position: center center;
  padding: 0px !important;
  border: 0px;
  display: block;
  margin: 0px !important;
}
.item-product .product-info .add_to_cart_button:hover {
  opacity: 0.6;
  background: url(../images/icons/add-cart-icon.png) no-repeat;
  background-size: 17px 20px;
  background-position: center center;
}
.item-product .product-info .add_to_cart_button::after {
  display: none !important;
}
.item-product .product-info .added_to_cart {
  display: none !important;
}

@media (max-width: 1300px) {
  .item-product .product-info .product-name {
    font-size: 24px;
    line-height: 28px;
  }
}/*# sourceMappingURL=style-product-all.css.map */