/*
 * Floomi Elementor — RTL layer.
 *
 * The base stylesheet already uses logical properties (margin-inline, padding-inline,
 * inset-inline, text-align: start/end), so almost nothing needs mirroring here. This
 * file covers the few physical values that remain plus icon direction flips.
 */

body.rtl,
body.floomi-rtl {
	direction: rtl;
	text-align: start;
}

/* Flip directional glyphs (arrows) that would otherwise point the wrong way. */
body.rtl .floomi-arrow-next,
body.rtl .floomi-slider__arrow,
body.rtl .floomi-tabs__arrow {
	transform: scaleX(-1);
}

/* Keep numerals and prices LTR inside an RTL document. */
body.rtl .woocommerce-Price-amount,
body.rtl .floomi-cart-total,
body.rtl .floomi-cart-count {
	direction: ltr;
	unicode-bidi: isolate;
}
