/* Arabic/RTL storefront adjustments (Radiotalaat) */

/* Point the add-to-cart arrow to the left on Arabic pages */
html[lang="ar"] .tocart::after {
    transform: scaleX(-1);
}

/* Base direction for price amounts. Radiotalaat_PriceFormat JS reorders the
   text to `amount symbol`; direction rtl keeps the symbol on the left. */
html[lang="ar"] .price {
    direction: rtl;
    unicode-bidi: isolate;
}