/* =========================================================================
   Anwalt — RTL manual tweaks (Omar John Law)
   Loaded ONLY when is_rtl() is true, AFTER the auto-generated rtlcss mirror
   files (rtl/*.css).

   The heavy lifting — mirroring the WHOLE site (header, top-bar, navbar, menu,
   footer, content, WooCommerce) left<->right — is done by the rtlcss-generated
   stylesheets enqueued from functions.php. This file only holds the handful of
   fixes that pure CSS-flipping cannot solve (JS-driven sliders that position
   their slides with inline transforms).
   ========================================================================= */

/* Base direction (reinforces <html dir="rtl"> that WordPress sets for Arabic) */
body {
	direction: rtl;
	text-align: right;
}

/* =========================================================================
   Owl-carousel sliders (home/about testimonials, etc.) position slides with
   JavaScript-computed inline translateX math that assumes an LTR track. Under
   RTL the active slide is pushed off-screen and the slider looks empty. Keep
   the carousel TRACK in LTR (so the JS math stays correct) but restore RTL on
   the slide text so the Arabic content reads right-to-left.
   ========================================================================= */
.mkdf-owl-slider {
	direction: ltr;
}
.mkdf-owl-slider .mkdf-testimonial-content,
.mkdf-owl-slider .mkdf-testimonial-text-holder,
.mkdf-owl-slider .mkdf-testimonial-title,
.mkdf-owl-slider .mkdf-testimonial-text,
.mkdf-owl-slider .mkdf-testimonials-author-name {
	direction: rtl;
	text-align: center;
}
