/**
 * rtl.css — Right-to-left overrides for the Xian Webstore theme.
 * Loaded only when $dir === 'rtl' (Arabic locale).
 */

body { direction: rtl; text-align: right; }

/* Flip floats */
.float-left  { float: right !important; }
.float-right { float: left  !important; }

/* Padding / margin mirrors */
.ms-auto { margin-right: auto !important; margin-left: 0 !important; }
.me-auto { margin-left: auto !important;  margin-right: 0 !important; }

/* Header */
.header-right ul.flat-list { flex-direction: row-reverse; }
.flat-search-box            { direction: rtl; }

/* Nav */
.flat-mega-menu ul.menu          { direction: rtl; }
.flat-mega-menu .submenu         { left: auto; right: 0; }
.flat-mega-menu .has-children > a::after { margin-left: 0; margin-right: 6px; }

/* Breadcrumb */
.flat-breadcrumb ol { padding-right: 0; }
.flat-breadcrumb .separator { transform: scaleX(-1); display: inline-block; }

/* Product card */
.product-actions { direction: rtl; }

/* Cart / checkout */
.cart-table th, .cart-table td { text-align: right; }
.checkout-form label           { text-align: right; display: block; }

/* Footer */
.footer-widget { text-align: right; }
.footer-widget ul { padding-right: 0; padding-left: 0; }

/* Misc */
.text-left  { text-align: right !important; }
.text-right { text-align: left  !important; }
