.product-label {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: var(--align-items);
  justify-content: var(--justify-content);
}
.product-label > div {
  padding: 4px 14px;
  border-radius: var(--product-label-border-radius);
  background-color: rgb(var(--color-theme-background));
  color: #fff;
}
.product-card-new [data-image-ratio] {
  display: flex;
  justify-content: var(--justify-content);
  align-items: var(--align-items);
}
.product-card-new[data-hover-type="1"] {
  transition: all 0.3s;
  border: 1px solid transparent;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.product-card-new[data-hover-type="1"] .card_list_flex {
  padding: 8px;
}
.product-card-new[data-hover-type="1"]:hover {
  box-shadow: 0px 0px 4px 3px #0000001a;
  border-color: #000000;
}
.product-card-new .money {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
}
.product-card-new .product-card-new-title {
  font-size: 20px;
  line-height: 24px;
}
.product-card-new .product__item-original-price {
  font-weight: 400;
  color: #999999;
  margin-left: 16px;
  text-decoration: line-through;
}
