/* ==========================================================
   Phase 08-G.18.7.3 — Global WooCommerce IRR visual order
   Canonical: 1,000,000 ریال
   ========================================================== */

/*
 * WooCommerce wraps price content in <bdi>. In RTL documents, Bidi can
 * visually move the currency symbol before the amount even when the source
 * order is correct. Make the BDI itself the formatting container.
 */
.woocommerce-Price-amount > bdi,
bdi:has(> .woocommerce-Price-currencySymbol){
  display:inline-flex!important;
  flex-direction:row!important;
  align-items:baseline!important;
  gap:4px!important;
  direction:ltr!important;
  unicode-bidi:isolate!important;
  white-space:nowrap!important;
}

.woocommerce-Price-amount > bdi > .woocommerce-Price-currencySymbol,
bdi:has(> .woocommerce-Price-currencySymbol) > .woocommerce-Price-currencySymbol{
  order:2!important;
  direction:rtl!important;
  unicode-bidi:isolate!important;
  white-space:nowrap!important;
}

/* Outer amount must not re-apply RTL visual reordering. */
.woocommerce-Price-amount{
  direction:ltr!important;
  unicode-bidi:isolate!important;
  white-space:nowrap!important;
}

/* Keep surrounding Persian text/order rows RTL; only the price atom is LTR. */
.rtl .woocommerce-Price-amount,
[dir="rtl"] .woocommerce-Price-amount{
  text-align:inherit;
}
