/* MMASHOP - Hide catalog top old price v1

   Purpose:
   - Hide the duplicated old price shown inside product-card flags.
   - Keep the normal old price below the product price untouched.
   - Keep AKCE / SALE badge untouched.
   - Catalog only. Product detail is not targeted.
*/

/* Modern browsers: hide the whole discount flag only when it contains the duplicated old price */
@supports selector(:has(*)) {
  .products-block .product .flags.flags-default .flag.flag-discount:has(.price-standard),
  .products .product .flags.flags-default .flag.flag-discount:has(.price-standard) {
    display: none !important;
  }
}

/* Fallback: hide the duplicated price text itself */
.products-block .product .flags.flags-default .flag.flag-discount .price-standard,
.products .product .flags.flags-default .flag.flag-discount .price-standard {
  display: none !important;
}
