.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-price .price-regular {
  font-weight: 600;
  color: #111;
     font-size: 18px;
}

.product-price .price-new {
  font-weight: 600;
  color: #111;
   font-size: 18px;
}

.product-price .price-old {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
}
.product-price .price-regular span,
.product-price .price-new span, .product-price .price-old span {
 font-size: 14px;
}

.product-price .discount-badge {
  position: absolute;
  top: 10px;
  right: 16px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #333;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
