/* پایه LTR فقط برای زبان انگلیسی */
html[lang^="en"] body { direction: ltr; unicode-bidi: embed; text-align: left; }

/* اگر WPML کلاس lang-en به body می‌دهد، این هم کمکی است */
body.lang-en { direction: ltr; text-align: left; unicode-bidi: embed; }

/* شبکه‌ها و ردیف‌ها */
body.lang-en .row { flex-direction: row; }
body.lang-en [dir="rtl"] { direction: ltr !important; }

/* تراز متن‌های رایج */
body.lang-en .text-right { text-align: left !important; }
body.lang-en .text-left  { text-align: left !important; }

/* منو/بردکرامب/لیست‌ها */
body.lang-en .menu,
body.lang-en .breadcrumb,
body.lang-en .list-unstyled,
html[lang^="en"] .menu,
html[lang^="en"] .breadcrumb { direction: ltr; }

/* فرم‌ها و فیلدها */
html[lang^="en"] input,
html[lang^="en"] textarea,
html[lang^="en"] select { direction: ltr; text-align: left; }

/* اسلایدرها و فلش‌ها */
body.lang-en .swiper-button-prev,
body.lang-en .slick-prev,
body.lang-en .owl-prev { transform: none !important; }
body.lang-en .swiper-button-next,
body.lang-en .slick-next,
body.lang-en .owl-next { transform: none !important; }

/* صفحه‌بندی */
body.lang-en .pagination { direction: ltr; }

/* فونت انگلیسی (اختیاری؛ اگر فایل فونت داری مسیرش را درست کن) */
/*
@font-face {
  font-family: 'InterLocal';
  src: url('/wp-content/uploads/fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
body.lang-en { font-family: InterLocal, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
*/