/* ===============================
   Product Page – Price Sizing (Celia / Salla)
=============================== */

/* 🔽 السعر القديم المشطوب */
.before-price.text-store-text-secondary.line-through {
  font-size: 28px !important;
  font-weight: 700 !important;
  opacity: 0.6 !important;
}

/* 🔼 السعر الحالي أثناء الخصم */
#product-form > div > div > div > div.price_is_on_sale.space-x-2.rtl\:space-x-reverse.whitespace-nowrap.showed > h2 {
  font-size: 40px !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

/* 🔼 السعر الحالي العادي (بدون خصم) */
#product-form > div > div > div > div.starting-or-normal-price.gap-4.flex.showed > h2 {
  font-size: 42px !important;   /* أكبر شوية */
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .before-price.text-store-text-secondary.line-through {
    font-size: 18px !important;
  }

  #product-form > div > div > div > div.price_is_on_sale.space-x-2.rtl\:space-x-reverse.whitespace-nowrap.showed > h2 {
    font-size: 44px !important;
  }

  #product-form > div > div > div > div.starting-or-normal-price.gap-4.flex.showed > h2 {
    font-size: 46px !important;
  }
}