/* Бейджи «ХИТ» / «НОВИНКА» на карточках и странице товара */

.product-img,
.home-new-card__img,
.main-img {
  position: relative;
}

.product-flags {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.product-flags--inline {
  position: static;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.product-flag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif;
}

.product-flag--hit {
  background: linear-gradient(135deg, #8b6914 0%, #f5c842 50%, #8b6914 100%);
  color: #1a1200;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.35);
}

.product-flag--new {
  background: linear-gradient(135deg, #15803d 0%, #4ade80 100%);
  color: #052e16;
  box-shadow: 0 2px 10px rgba(74, 222, 128, 0.25);
}

.main-img .product-flags {
  top: 16px;
  left: 16px;
}

.main-img .product-flags + .img-badge {
  top: auto;
  bottom: 16px;
  left: 16px;
}

.home-bestsellers-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #888;
  font-size: 14px;
  padding: 48px 16px;
  margin: 0;
}

a.product-card {
  text-decoration: none;
  color: inherit;
}

#homeBestsellersGrid {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#homeBestsellersGrid.home-bestsellers-grid--swap {
  opacity: 0;
  transform: translateY(8px);
}
