/**
 * Перечеркнутая цена для скидок
 */
 
.old-price {
  position: relative;
}

.old-price:before {
  border-bottom: 3px solid red;
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  transform: rotate(-15deg);
}

.old-price2{
  color: red;
  text-decoration: line-through;
}