/**
 * RTL (Right-to-Left) Stylesheet
 * Additional styles for Arabic and other RTL languages
 *
 * @package InstantGoldPrice
 * @since 1.0.0
 */

/* RTL base styles */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .space-x-6 > * + * {
    margin-left: 0;
    margin-right: 1.5rem;
}

[dir="rtl"] .text-left {
    text-align: left;
}

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

[dir="rtl"] .ml-auto {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .mr-auto {
    margin-right: 0;
    margin-left: auto;
}

/* RTL table styles */
[dir="rtl"] .gold-table th,
[dir="rtl"] .gold-table td {
    text-align: right;
}

/* RTL navigation */
[dir="rtl"] .main-navigation ul {
    direction: rtl;
}

/* RTL forms */
[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="number"],
[dir="rtl"] input[type="email"],
[dir="rtl"] select,
[dir="rtl"] textarea {
    text-align: right;
}

/* RTL Menu Drawer - Ensure it appears on the right side */
[dir="rtl"] .menu-drawer {
    right: 0 !important;
    left: auto !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-right: none !important;
    transform: translateX(100%) !important;
}

[dir="rtl"] .menu-drawer:not(.hidden) {
    transform: translateX(0) !important;
}
