




.pro_sticker__label span.hit {
  background-color: #FFA500 !important; /* Фон: яскравий помаранчевий */
  color: #fff !important; /* Білий колір тексту */
  font-family: 'Open Sans', sans-serif !important; /* Шрифт */
  border-radius: 50px !important; /* Округлені краї (максимально круглий бейдж) */
  padding: 5px 16px !important; /* Внутрішні відступи зверху/знизу – 5px, зліва/справа – 16px */
  display: inline-flex !important; /* Розміщення тексту і іконки по одній лінії */
  align-items: center !important; /* Вирівнювання по вертикалі */
  justify-content: center !important; /* Центрування контенту по горизонталі */
  text-transform: uppercase !important; /* ВСІ БУКВИ ВЕЛИКІ */
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4) !important; /* Тінь помаранчева */
  gap: 6px !important; /* Відстань між іконкою і текстом */
  letter-spacing: 0.3px !important; /* Трохи розріджений текст */
}


.pro_sticker__label span.hit::before {
  content: "\f06d"; /* Font Awesome Unicode для іконки вогню (🔥) */
  font-family: "Font Awesome 6 Free"; /* Джерело іконки */
  font-weight: 900; /* Жирна іконка */
  font-size: 14px; /* Розмір іконки */
  color: #fff; /* Колір іконки білий */
  margin-right: 2px; /* Відступ від іконки до тексту */
  display: inline-block; /* Іконка окремим блоком */
}


span.new {
  background-color: #27ae60 !important; /* Зелений фон */
  color: #fff !important; /* Білий текст */
  font-family: 'Open Sans', sans-serif !important;
  border-radius: 50px !important;
  padding: 2px 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4) !important; /* Зелена тінь */
  gap: 6px !important;
  letter-spacing: 0.3px !important;
}

span.new::before {
  content: "\f005"; /* Font Awesome Unicode для ⭐ зірки */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  margin-right: 6px;
  display: inline-block;
}


/* ===== 📱 Мобільна версія (до 768px) ===== */
span.hit,
span.new {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: 'Open Sans', sans-serif !important;
  font-size: 13px !important; /* Зменшений розмір тексту */
  padding: 6px 14px !important;
  border-radius: 40px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  gap: 5px !important;
}


/* Стіль для ХІТ (помаранчевий + іконка вогню) */
span.hit {
  background-color: #FFA500 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(255, 165, 0, 0.3) !important; /* Менша тінь */
}
span.hit::before {
  content: "\f06d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px; /* Більша іконка на мобілці */
  color: #fff;
  margin-right: 4px;
  display: inline-block;
}


span.hit::before {
  content: "\f06d"; /* fa-fire */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  margin-right: 4px;
  display: inline-block;
}

/* Стиль для Новинка (зелений + зірка) */
span.new {
  background-color: #27ae60 !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3) !important;
}

span.new::before {
  content: "\f005"; /* fa-star */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  margin-right: 4px;
  display: inline-block;
}

/* ===== 💻 Десктопна версія (768px+) ===== */
@media (min-width: 768px) {
  span.hit,
  span.new {
    padding: 6px 20px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    gap: 0px !important;
  }

  span.hit::before,
  span.new::before {
    font-size: 16px !important;
    margin-right: 6px !important;
  }
}
@media (max-width: 767px) {
  .pro_sticker__label > span {
    font-size: 20px !important;
    padding: 4px 10px !important;
    gap: 4px !important;
    border-radius: 40px !important;
    line-height: 1.2 !important;
  }

  .pro_sticker__label > span::before {
    font-size: 12px !important;
    margin-right: 4px !important;
  }

  .pro_sticker__label {
    z-index: 10 !important;
  }

  .pro_sticker__position {
    top: 10px !important;
    left: 10px !important;
  }
}


