/* css/discount.css — фон + бейдж для скидочных товаров */

/* Карточка со скидкой */
.discounted {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

/* Флаг Украины как фон (alpha = 0.5) */
.discounted::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,87,184,0.5) 0 50%, rgba(255,215,0,0.5) 50% 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
}

/* Контент поверх флага (фон внутренних блоков НЕ трогаем, чтобы картинка оставалась на белом) */
.discounted > * {
  position: relative;
  z-index: 1;
}

/* Бейдж скидки — чёрный текст на светлом фоне */
.discounted .z-discount-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 6px 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  background: rgba(255,255,255,.92);
  color: #000;
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}