/* =========================================================
   STOR — RTL Overrides
   Auto-loaded by WordPress when site direction is RTL.
   Most layout uses logical properties already, this file
   handles edge cases and visual mirroring.
   ========================================================= */

body {
	direction: rtl;
	text-align: right;
}

/* Mirror icons that have direction (arrows) */
.stor-rtl-flip {
	transform: scaleX(-1);
}

/* Mobile menu: Arabic opens from left edge */
.stor-mobile-drawer {
	left: 0;
	right: auto;
	transform: translateX(-100%);
}

.stor-mobile-drawer.is-open {
	transform: translateX(0);
}
