/* أيقونة الريال السعودي كـ SVG */
.woocommerce-Price-currencySymbol .wcrs-sa-riyal,
.wcrs-sa-riyal {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  vertical-align: -0.1em;
  background-color: currentColor;        /* يرث لون الخط */
  -webkit-mask-image: url('riyal-symbol.svg');
  mask-image: url('riyal-symbol.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* منع الانعكاس في RTL وجعل ووكومرس يتحكم بالموضع */
.price .amount,
.woocommerce-Price-amount {
  direction: ltr;
  unicode-bidi: isolate;
}
