/* ============================================
   RTL (Right-to-Left) Support
   Applied when html[dir="rtl"] - Arabic language
   ============================================ */

/* Flip directional arrow icons in RTL */
html[dir="rtl"] .fa-arrow-right,
html[dir="rtl"] .fa-chevron-right {
    transform: scaleX(-1);
}

html[dir="rtl"] .fa-arrow-left,
html[dir="rtl"] .fa-chevron-left {
    transform: scaleX(-1);
}

/* Language dropdown aligns to start in RTL */
html[dir="rtl"] .site-header__lang-list {
    inset-inline-start: auto;
    inset-inline-end: 0;
}
