/* =========================================================
   Ntbadlo — RTL overrides
   Most of main.css already uses logical properties
   (margin-inline, padding-inline, inset-inline-start) which
   flip automatically with dir="rtl" — no override needed.
   This file only holds the handful of cases that don't.
   ========================================================= */

html[dir="rtl"] body {
	letter-spacing: 0;
}

/* Directional icons (arrows, chevrons) that point "forward" in reading
   order need mirroring in RTL. Add this class on any such icon. */
html[dir="rtl"] .rtl-flip {
	transform: scaleX(-1);
}

/* Prices, phone numbers, and dates stay LTR even inside an RTL page so
   digits and separators don't reorder oddly. Add this class wherever
   such values are printed in templates. */
.ltr-num {
	direction: ltr;
	unicode-bidi: isolate;
	display: inline-block;
}
