/** * RTL Navigation Fix * إصلاح اتجاه الشريط العلوي للغة العربية */ /* Logo on right, actions on left */ .nav-content { flex-direction: row-reverse !important; } /* Cart first (right), then wishlist, then account (left) */ .nav-actions { flex-direction: row-reverse !important; } /* Badge on left side of icon */ .nav-badge { left: 6px !important; right: auto !important; } /* Search icon on left */ .search-input { padding: 12px 16px 12px 44px !important; } .search-icon { left: 16px !important; right: auto !important; } /* Mobile responsive */ @media (max-width: 768px) { .nav-content { flex-direction: row-reverse !important; } .nav-search { order: 3; width: 100%; } }