.catalog-product-labels {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.catalog-product-labels__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 4px 8px;
  font-weight: 600;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .catalog-product-labels__item {
    font-size: 9px;
    padding: 5px 14px;
  }
}
@media (min-width: 768px) {
  .catalog-product-labels__item {
    padding: 7px 16px;
    line-height: 1.33333;
  }
}
.catalog-product-labels__item.discount {
  background-color: #e0252f;
  color: #fff;
}
@media (min-width: 768px) {
  .catalog-product-labels__item.discount {
    font-size: 13px;
    line-height: 1.23077;
    letter-spacing: 0.06em;
    padding: 5px 14px;
  }
}
.catalog-product-labels__item.new {
  background-color: #fff;
  color: #3f4041;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.catalog-product-labels__item.popular {
  background-color: #ff7100;
  color: #fff;
}
@media (min-width: 768px) {
  .catalog-product-labels__item.popular {
    letter-spacing: 0.04em;
    padding: 7px 14px;
  }
}