/* =============================================================================
   RTL-specific overrides for HE / AR.
   Mostly we use logical properties in main.css, so this file only handles:
   - icon mirroring
   - keeping numbers/prices LTR inside RTL flow
   (Marquee uses an LTR grid in main.css; Hebrew stays RTL inside each item.)
   ========================================================================== */

html[dir="rtl"] .mfb-card__price,
html[dir="rtl"] .woocommerce-Price-amount,
html[dir="rtl"] .price bdi {
	direction: ltr;
	unicode-bidi: isolate;
}

/* Mirror generic "next" chevrons */
html[dir="rtl"] .mfb-chevron-next svg,
html[dir="rtl"] .mfb-arrow svg {
	transform: scaleX(-1);
}

/* WooCommerce mini cart slide direction (handled by JS too) */
html[dir="rtl"] .widget_shopping_cart,
html[dir="rtl"] .mfb-drawer { inset-inline-start: 0; }

/* Blog single: prev/next labels align to the outer edge of each column */
html[dir="rtl"] .mfb-post__footer .nav-previous { text-align: start; }
html[dir="rtl"] .mfb-post__footer .nav-next { text-align: end; }
