.product-big-figure {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

/* затемнение снизу */
.product-big-figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* текст */
.product-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
}

.product-label {
  position: absolute;
  bottom: 15px;
  left: 15px;

  display: flex;
  align-items: center;
  gap: 5px;

  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1; /* ВАЖНО */
}

.product-label svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}