/* Persian (Farsi) localization overrides for the Innox theme port */

body {
  font-family: 'Vazirmatn', 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Vazirmatn', 'Oswald', sans-serif;
}

/* icon glyphs must stay in the Font Awesome font regardless of the RTL body rule */
i.fa-solid, i.fa-brands, i.fa-regular,
[class*="fa-"] {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

.huge {
  letter-spacing: 0;
}

/* The testimonial carousel's JS drives a raw translateX() slide track —
   that math assumes an LTR flex order, so keep this component's mechanics
   LTR while the quote/name/role text inside each slide stays RTL. */
.testimonial-slider, .testimonial-track, .testimonial-slide {
  direction: ltr;
}

/* pre-existing theme bug: .testimonial-slider never clips the transformed
   track, so once the carousel auto-advances the whole page gains ~1100px
   of horizontal scroll (reproducible in the original LTR theme too). */
.testimonial-slider {
  overflow: hidden;
}
.testimonial-slide > div {
  direction: rtl;
  text-align: right;
}
