/* RTL Arrow Direction Fix for Arabic Language */

/* Fix for product card navigation arrows in RTL */
[dir="rtl"] .pc__img-prev svg,
[dir="rtl"] .pc__img-next svg {
    transform: scaleX(-1);
}

/* Fix for swiper navigation buttons in RTL */
[dir="rtl"] .swiper-button-prev:after {
    content: "next" !important;
}

[dir="rtl"] .swiper-button-next:after {
    content: "prev" !important;
}

/* Hover effects should maintain the flip */
[dir="rtl"] .pc__img-prev:hover svg,
[dir="rtl"] .pc__img-next:hover svg {
    transform: scaleX(-1) scale(1.1);
}

/* Focus states */
[dir="rtl"] .pc__img-prev:focus svg,
[dir="rtl"] .pc__img-next:focus svg {
    transform: scaleX(-1);
}

/* Active states */
[dir="rtl"] .pc__img-prev:active svg,
[dir="rtl"] .pc__img-next:active svg {
    transform: scaleX(-1) scale(0.95);
}

/* RTL Hero Image Flip */
.rtl-flip {
    transform: scaleX(-1);
}

/* Alternative positioning for Arabic */
[dir="rtl"] .slideshow-character {
    left: 0;
    right: auto;
}

[dir="rtl"] .pos_right-center {
    left: 50px !important;
    right: auto !important;
}
.text_dash::before {
    right: 0 !important;
}

.text_dash {
    padding-right: 3.25rem !important;
}
