/* =================================================
   RTL FIXES — FINAL (PROVEN METHOD)
   ================================================= */

/* Slider dots spacing */
html[dir="rtl"] .pr__section.section-slider .owl-dots > * + * {
  margin-left: 0;
  margin-right: 1rem;
}

/* Hero image positioning (adjust % if needed) */
html[dir="rtl"] .pr__hero__wrap {
  background-position: 30% center;
}

/* =================================================
   RTL SLIDER FIX (SAME AS PREVIOUS WEBSITE)
   ================================================= */

/* Flip the whole carousel (reverses movement) */
html[dir="rtl"] .owl-carousel {
  transform: scaleX(-1);
}

/* Flip slides back so content is readable */
html[dir="rtl"] .owl-carousel .owl-item {
  transform: scaleX(-1);
}

/* Flip dots & navigation back */
html[dir="rtl"] .owl-carousel .owl-dots,
html[dir="rtl"] .owl-carousel .owl-nav {
  transform: scaleX(-1);
}
