.product-labels {
  position: absolute;
  top: 7px;
  inset-inline-start: 7px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 50%;
  transition: opacity 0.3s ease;
}

.product-labels .label-with-img {
  padding: 0;
  max-width: 50px;
}

.product-label {
  padding: 5px 10px;
  min-width: 94px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  word-break: break-all;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
}

.product-label:not(:last-child) {
  margin-bottom: 10px;
}

.product-label.onsale {
  background-color: var(--wd-primary-color);
  direction: ltr;
}

.product-label.featured {
  background-color: #E22D2D;
}

.product-label.new {
  background-color: #438E44;
}

.product-label.out-of-stock {
  background-color: var(--bgcolor-white);
  color: var(--color-gray-900);
  position: absolute;
  bottom: -178px;
  top: auto;
  right: auto;
  z-index: 1;
}

.product-label.attribute-label:not(.label-with-img) {
  background-color: var(--bgcolor-white);
  color: var(--color-gray-900);
}

.labels-rounded-sm .product-label {
  border-radius: 12px;
}

@media (max-width: 576px) {
  .product-label {
    padding-right: 5px;
    padding-left: 5px;
    min-width: 91px;
    font-size: 10px;
  }

  .product-label .label-with-img {
    padding-right: 0;
    padding-left: 0;
  }

  .product-label:not(:last-child) {
    margin-bottom: 5px;
  }
}
