.header {
  margin-bottom: 40px !important;
  .info_item_price {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    .title{
      font-style: normal;
      font-weight: 700;
      font-size: var(--font-size32);
      line-height: 1.4;
      color: #333333;
      text-align: center;
      margin-bottom:30px;
    }
  }
}

/* Карточка прайса */
.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card {
  width: 280px;
  background: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Красная шапка карточки */
.price-card__header {
  background: #d9232e;
  padding: 20px;
  text-align: center;
}

.price-card__quantity {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Тело карточки */
.price-card__body {
  padding: 24px 20px;
  text-align: center;
}

/* Цена за комплект */
.price-card__unit-price {
  color: #333;
  font-size: 16px;
  margin-bottom: 16px;
}

.price-card__unit-price span {
  color: #666;
}

/* Разделитель */
.price-card__divider {
  height: 1px;
  background: #ddd;
  margin: 16px 0;
}

/* Итоговая цена */
.price-card__total {
  color: #d9232e;
  font-size: 28px;
  font-weight: 700;
  margin: 16px 0;
}

.price-card__total .currency {
  font-weight: 600;
}

/* Кнопка */
.price-card__button {
  display: inline-block;
  background: #d9232e;
  color: #fff;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.price-card__button:hover {
  background: #b91d26;
}

/* Адаптивность */
@media (max-width: 768px) {
  .price-card {
    width: 100%;
    max-width: 320px;
  }
}
