@charset "UTF-8";/* 1) Стилі для обох цін (без перекреслення за замовчуванням) */
.product-price-before-discount,
.PricesalesPriceWithDiscount {
  color: #007bc4;
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none !important;
}

/* 2) За замовчуванням продажна ціна НЕ перекреслена */
.product-sales-price,
.PricebasePrice {
  font-size: 1.3rem;
  text-decoration: none !important;   /* <-- було line-through, міняємо на none */
}

/* 3) Перекреслюємо продажну ціну ТІЛЬКИ якщо контейнер має клас .has-old-price  */
.has-old-price .product-sales-price,
.has-old-price .PricebasePrice {
  text-decoration: line-through !important;
}

