/*
RTL (Right-to-Left) Stylesheet for Areej Theme
Additional RTL-specific styling adjustments
*/

body.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .header-container {
    flex-direction: row;
}

.rtl .main-navigation {
    flex-direction: row;
}

.rtl .header-actions {
    flex-direction: row;
}

.rtl .products-grid {
    direction: rtl;
}

.rtl .product-card {
    text-align: right;
}

.rtl .footer-content {
    direction: rtl;
}

.rtl .woocommerce-breadcrumb {
    direction: rtl;
}

.rtl .woocommerce-ordering {
    float: left;
}

.rtl .woocommerce-result-count {
    float: right;
}

/* Price alignment */
.rtl .price {
    direction: rtl;
}

/* Cart icon positioning */
.rtl .cart-count {
    right: -5px;
    left: auto;
}

/* Button text alignment */
.rtl button,
.rtl .button,
.rtl input[type="submit"] {
    text-align: center;
}

/* Form fields */
.rtl input[type="text"],
.rtl input[type="email"],
.rtl input[type="tel"],
.rtl textarea,
.rtl select {
    text-align: right;
    direction: rtl;
}

/* Pagination */
.rtl .woocommerce-pagination {
    direction: rtl;
}

/* Product gallery */
.rtl .woocommerce-product-gallery {
    direction: rtl;
}

/* Ensure proper RTL for numbers */
.rtl .amount,
.rtl .price {
    unicode-bidi: plaintext;
}
