/*
 * RTL (Arabic) Overrides
 * Loaded only when is_rtl() is true
 */

body {
    font-family: var(--ma-font-ar);
}

/* Ensure proper text alignment */
.ma-section-header,
.ma-step,
.ma-product-card,
.ma-cta-banner {
    text-align: center; /* center stays center in RTL */
}

/* Cards and content default to start alignment */
.ma-card,
.ma-post-card__body,
.ma-footer__col {
    text-align: right;
}

/* Form messages */
.ma-form__message--success {
    color: var(--ma-green-dark);
    background: var(--ma-green-light);
    padding: 12px 16px;
    border-radius: var(--ma-radius);
    margin-top: 16px;
    font-size: 0.95rem;
}

.ma-form__message--error {
    color: var(--ma-error);
    background: #fde8e8;
    padding: 12px 16px;
    border-radius: var(--ma-radius);
    margin-top: 16px;
    font-size: 0.95rem;
}

/* Keep technical content LTR */
.ltr-content,
code,
pre,
.ma-pbx-table td:nth-child(3) {
    direction: ltr;
    unicode-bidi: isolate;
}
