/* Arabic-specific styles */
.ar {
    direction: rtl;
    text-align: right;
}

.ar .nav-container {
    flex-direction: row-reverse;
}

.ar .nav-list {
    flex-direction: row-reverse;
}

.ar .language-switcher {
    flex-direction: row-reverse;
}

.ar .story-content {
    grid-template-columns: 1fr 2fr;
}

.ar .footer-content {
    text-align: right;
}

.ar .social-links {
    justify-content: flex-end;
}

/* Arabic typography */
.ar {
    font-family: 'Tahoma', 'Arial', sans-serif;
}

.ar .section-title {
    font-weight: bold;
}

.ar .story-paragraph {
    text-align: right;
    line-height: 2;
}

/* About page Arabic adjustments */
.ar .about-content {
    flex-direction: row-reverse;
}

.ar .about-content.reverse {
    flex-direction: row;
}

/* Contact page Arabic adjustments */
.ar .contact-details {
    text-align: right;
}

.ar .hours-table {
    text-align: right;
}

/* Products page Arabic adjustments */
.ar .products-grid {
    direction: rtl;
}

@media (max-width: 768px) {
    .ar .nav-menu {
        text-align: right;
    }
    
    .ar .story-content {
        grid-template-columns: 1fr;
        text-align: right;
    }
}

