/* Новогодний бейдж в стиле DRIVEBOX - минималистичный, черно-золотой */

.new-year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Позиция слева для тарифов */
.new-year-badge--left {
  right: auto;
  left: 12px;
}

.new-year-badge:hover {
  transform: scale(1.1);
}

.new-year-badge__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.new-year-badge:hover .new-year-badge__icon {
  stroke: #FFED4E;
}

/* Для карточек продуктов */
.cursor-product-card__image {
  position: relative;
  z-index: 1;
}

.cursor-product-card {
  position: relative;
  z-index: 1;
}

.cursor-product-card.new-year .cursor-product-card__price .current-price {
  color: #FFD700;
  font-weight: 700;
}

.cursor-product-card.new-year {
  /* Убраны желтые обводки - возвращаем как было раньше */
}

/* Для тарифов */
.tariff-card {
  position: relative;
  z-index: 1;
}

.tariff-card.new-year {
  /* Убраны желтые обводки - возвращаем как было раньше */
  position: relative;
  z-index: 1;
}

.tariff-card.new-year .tariff-price {
  /* Убран золотой цвет цены */
}

/* Для тарифов на главной странице */
.tariff-card-homepage {
  position: relative;
  z-index: 1;
}

.tariff-card-homepage.new-year {
  /* Убраны желтые обводки - возвращаем как было раньше */
  position: relative;
  z-index: 1;
}

.tariff-card-homepage.new-year .tariff-price-first {
  /* Убран золотой цвет цены */
}

/* Адаптивность */
@media (max-width: 768px) {
  .new-year-badge {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 9px;
    gap: 4px;
  }
  
  .new-year-badge__icon {
    width: 30px;
    height: 30px;
  }
}

