.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 > div{
  height: 100%;
  box-shadow: -.0625rem .3125rem 1rem .1875rem rgba(122,122,122,.15);
}
.product-card-new .box-card{
  --card-padding-x:8px;
  --card-padding-y:8px
}
.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: 2px solid transparent;
  border-radius: var(--border-radius);
}
.product-card-new[data-hover-type="1"]:hover {
  box-shadow: 0px 0px 4px 3px #0000001a;
  border-color: rgb(235, 221, 236);
}
