/* فیکس مخصوص سایدبار RTL موبایل */

/* Force styles برای RTL mobile */
@media (max-width: 1279px) {
    html[dir="rtl"] .navigation_wrapper {
        /* حالت پیش‌فرض: پنهان */
        right: -288px !important;
        left: auto !important;
        transition: right 0.3s ease !important;
    }
    
    /* حالت باز */
    html[dir="rtl"] .navigation_wrapper[style*="display: block"] {
        right: 0 !important;
    }
    
    html[dir="rtl"] .navigation_wrapper:not(.hidden) {
        right: 0 !important;
    }
    
    /* Force نمایش محتوا */
    html[dir="rtl"] .navigation_wrapper[style*="display: block"] > div,
    html[dir="rtl"] .navigation_wrapper:not(.hidden) > div {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Debug styles */
html[dir="rtl"] .navigation_wrapper[data-debug="true"] {
    border: 2px solid red !important;
    background: rgba(255, 0, 0, 0.1) !important;
}
