/* RTL Support for Arabic Language */
.rtl-layout {
    direction: rtl;
    text-align: right;
}

/* Header and Navigation */
.rtl-layout .category-header-content h1,
.rtl-layout .category-subtitle,
.rtl-layout .section-title,
.rtl-layout .product-title,
.rtl-layout .faq-question,
.rtl-layout .faq-title {
    text-align: right;
}

/* Search Form */
.rtl-layout .category-search-form {
    flex-direction: row-reverse;
}

.rtl-layout .category-search-input {
    text-align: right;
    padding-right: 15px;
    padding-left: 45px;
}

.rtl-layout .category-search-button {
    left: 10px;
    right: auto;
}

/* Product Grid */
.rtl-layout .product-grid {
    direction: rtl;
}

.rtl-layout .product-item {
    text-align: right;
}

.rtl-layout .product-content {
    text-align: right;
}

/* Category Grid */
.rtl-layout .category-grid {
    direction: rtl;
}

.rtl-layout .category-card {
    text-align: right;
}

.rtl-layout .category-card__content {
    text-align: right;
}

/* Breadcrumbs */
.rtl-layout .breadcrumbs {
    direction: rtl;
}

.rtl-layout .breadcrumbs .breadcrumb-item:after {
    content: "‹";
    margin: 0 8px;
}

.rtl-layout .breadcrumbs .breadcrumb-item:before {
    content: none;
}

/* Benefits List */
.rtl-layout .benefits-list {
    text-align: right;
}

.rtl-layout .benefits-list li {
    text-align: right;
}

/* Process Steps */
.rtl-layout .process-steps {
    text-align: right;
}

.rtl-layout .process-steps li {
    text-align: right;
}

/* FAQ Section */
.rtl-layout .faq-container {
    text-align: right;
}

.rtl-layout .faq-answer p {
    text-align: right;
}

/* Category Stats */
.rtl-layout .category-stats {
    text-align: right;
}

/* Filter Sort Container */
.rtl-layout .filter-sort-container {
    flex-direction: row-reverse;
}

/* Pagination - Keep left-to-right for numbers */
.rtl-layout .pagination {
    direction: ltr;
    justify-content: center;
}

/* Search Context */
.rtl-layout .search-context {
    text-align: right;
}

.rtl-layout .search-context-message {
    text-align: right;
}

.rtl-layout .search-clear-link {
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}

/* Category Badge */
.rtl-layout .category-badge {
    flex-direction: row-reverse;
}

.rtl-layout .category-badge svg {
    margin-left: 8px;
    margin-right: 0;
}

/* Description Content */
.rtl-layout .description-content {
    text-align: right;
}

.rtl-layout .seo-info {
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rtl-layout .category-header-content {
        text-align: right;
    }
    
    .rtl-layout .product-grid {
        direction: rtl;
    }
    
    .rtl-layout .category-grid {
        direction: rtl;
    }
}

/* Font Support for Arabic */
.rtl-layout {
    font-family: 'Arial', 'Tahoma', sans-serif;
}

/* Fix for form elements in RTL */
.rtl-layout input[type="text"],
.rtl-layout input[type="search"],
.rtl-layout textarea {
    text-align: right;
}

/* Fix for buttons in RTL */
.rtl-layout .product-order-button {
    text-align: center;
}

/* Icons adjustment for RTL */
.rtl-layout .search-clear-link svg {
    margin-left: 8px;
    margin-right: 0;
} 