/*
 * Bazarestan 1.0.179.54 — deterministic variation currency order.
 * Visual requirement in RTL UI: [amount] is on the right and [تومان] on its left.
 * The row itself is therefore LTR, while the Persian unit keeps RTL shaping.
 */
html body .product-single .attributes .options .bz-variation-price__current,
html body .product-single .attributes .options .bz-variation-price__old,
html body .product-single .attributes[data-v-d7b518b8] .options .bz-variation-price__current,
html body .product-single .attributes[data-v-d7b518b8] .options .bz-variation-price__old {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: baseline !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  text-align: left !important;
  white-space: nowrap !important;
}

/* New structured renderer. Unit comes first visually (left), amount second (right). */
html body .product-single .attributes .options .bz-variation-price__unit,
html body .product-single .attributes[data-v-d7b518b8] .options .bz-variation-price__unit {
  order: -1 !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 0 !important;
  direction: rtl !important;
  unicode-bidi: isolate !important;
  white-space: nowrap !important;
}
html body .product-single .attributes .options .bz-variation-price__amount,
html body .product-single .attributes[data-v-d7b518b8] .options .bz-variation-price__amount {
  order: 0 !important;
  flex: 0 0 auto !important;
  direction: ltr !important;
  unicode-bidi: isolate !important;
  white-space: nowrap !important;
}

/* Legacy renderer compatibility: its amount is an anonymous flex item and the
 * currency is .symbol. Giving .symbol a negative order moves it to the left of
 * the number without touching the value or product data. */
html body .product-single .attributes .options .bz-variation-price__current > .symbol,
html body .product-single .attributes .options .bz-variation-price__old > .symbol,
html body .product-single .attributes[data-v-d7b518b8] .options .bz-variation-price__current > .symbol,
html body .product-single .attributes[data-v-d7b518b8] .options .bz-variation-price__old > .symbol {
  order: -1 !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  direction: rtl !important;
  unicode-bidi: isolate !important;
  white-space: nowrap !important;
}
