/**
 * RTL (Right-to-Left) Stylesheet
 * For Arabic language support
 */

/* Base RTL Settings */
html[dir="rtl"] {
    direction: rtl;
}

body.rtl {
    font-family: 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
}

/* Header */
html[dir="rtl"] .header-inner {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-list {
    flex-direction: row-reverse;
}

html[dir="rtl"] .language-switcher {
    flex-direction: row-reverse;
}

/* Back Links */
html[dir="rtl"] .back-link {
    direction: rtl;
}

html[dir="rtl"] .back-link::before {
    content: '\2192';
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Cards */
html[dir="rtl"] .card-content {
    text-align: right;
}

html[dir="rtl"] .read-more {
    flex-direction: row-reverse;
}

/* Section Header */
html[dir="rtl"] .section-header {
    flex-direction: row-reverse;
}

/* Share Buttons */
html[dir="rtl"] .share-buttons {
    flex-direction: row-reverse;
}

/* Footer */
html[dir="rtl"] .footer-inner {
    direction: rtl;
}

html[dir="rtl"] .footer-links ul {
    text-align: right;
}

html[dir="rtl"] .footer-contact address {
    text-align: right;
}

/* Gallery Overlay */
html[dir="rtl"] .gallery-overlay {
    text-align: right;
}

/* Video Content */
html[dir="rtl"] .video-content {
    text-align: right;
}

/* Article */
html[dir="rtl"] .article-content {
    text-align: right;
}

/* Pagination */
html[dir="rtl"] .pagination {
    flex-direction: row-reverse;
}

html[dir="rtl"] .pagination-numbers {
    flex-direction: row-reverse;
}

/* Lightbox Navigation */
html[dir="rtl"] .lightbox-prev {
    left: auto;
    right: var(--spacing-md);
}

html[dir="rtl"] .lightbox-next {
    right: auto;
    left: var(--spacing-md);
}

/* Page Description */
html[dir="rtl"] .page-description {
    text-align: right;
}

/* No Content Message */
html[dir="rtl"] .no-content {
    text-align: center;
}

/* Mega Menu RTL Support */
html[dir="rtl"] .mega-menu {
    direction: rtl;
}

html[dir="rtl"] .mega-menu-container {
    direction: rtl;
}

html[dir="rtl"] .mega-menu-grid {
    direction: rtl;
}

html[dir="rtl"] .mega-menu-column {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .mega-menu-title {
    text-align: right;
}

html[dir="rtl"] .mega-menu-links {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .mega-menu-links li a {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .mega-menu-links li a .mega-link-icon {
    margin-left: 0.75rem;
    margin-right: 0;
}

html[dir="rtl"] .mega-menu-links li a span:last-child {
    text-align: right;
    align-items: flex-end;
}

html[dir="rtl"] .mega-menu-links li a span strong,
html[dir="rtl"] .mega-menu-links li a span small {
    text-align: right;
}

html[dir="rtl"] .mega-menu-feature {
    direction: rtl;
}

html[dir="rtl"] .mega-feature-content {
    text-align: right;
}

html[dir="rtl"] .mega-feature-label {
    margin-left: auto;
    margin-right: 0;
}

html[dir="rtl"] .mega-feature-link {
    flex-direction: row-reverse;
}

/* Nav Link Dropdown Arrow RTL */
html[dir="rtl"] .nav-link svg {
    margin-right: 0.35rem;
    margin-left: 0;
}

/* Mobile Menu RTL */
html[dir="rtl"] .mobile-menu {
    direction: rtl;
}

html[dir="rtl"] .mobile-menu-header {
    flex-direction: row-reverse;
}

html[dir="rtl"] .mobile-nav-group {
    direction: rtl;
}

html[dir="rtl"] .mobile-nav-toggle {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .mobile-nav-submenu {
    padding-left: 0;
    padding-right: 1rem;
    direction: rtl;
}

html[dir="rtl"] .mobile-nav-submenu a {
    border-left: none;
    border-right: 2px solid var(--gray-200, #e5e7eb);
    padding-left: 0;
    padding-right: 1rem;
    text-align: right;
}

html[dir="rtl"] .mobile-nav-submenu a:hover {
    border-right-color: var(--primary, #c8a85c);
}

html[dir="rtl"] .mobile-nav-link {
    text-align: right;
}

html[dir="rtl"] .mobile-menu-footer {
    text-align: right;
}

html[dir="rtl"] .mobile-lang-selector {
    direction: rtl;
}

html[dir="rtl"] .mobile-contact-info {
    align-items: flex-end;
    text-align: right;
}

/* Search Overlay RTL */
html[dir="rtl"] .search-overlay {
    direction: rtl;
}

html[dir="rtl"] .search-input-wrapper {
    flex-direction: row-reverse;
}

html[dir="rtl"] .search-input {
    text-align: right;
}

html[dir="rtl"] .search-suggestions {
    text-align: right;
}

html[dir="rtl"] .search-tags {
    direction: rtl;
}

/* Header Actions RTL */
html[dir="rtl"] .header-actions {
    flex-direction: row-reverse;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    html[dir="rtl"] .nav-list {
        text-align: right;
    }

    html[dir="rtl"] .mobile-menu-toggle {
        order: -1;
    }
}
