/*
 * SenTurGo RTL Stylesheet
 * Loaded conditionally when Arabic is the active language
 */

:root {
    --stg-dir: rtl;
    --stg-start: right;
    --stg-end: left;
    --stg-text-align: right;
}

/* Base */
body.stg-rtl {
    direction: rtl;
    text-align: right;
}

/* Arabic typography */
body.stg-lang-ar {
    font-family: var(--stg-font-arabic), var(--stg-font-secondary);
}
body.stg-lang-ar h1,
body.stg-lang-ar h2,
body.stg-lang-ar h3,
body.stg-lang-ar h4,
body.stg-lang-ar h5,
body.stg-lang-ar h6 {
    font-family: var(--stg-font-arabic), var(--stg-font-primary);
}

/* Select arrow */
body.stg-rtl .stg-select {
    background-position: left 1rem center;
    padding-left: 2.5rem;
    padding-right: 1rem;
}

/* Topbar */
body.stg-rtl .stg-topbar__inner {
    flex-direction: row-reverse;
}

/* Header */
body.stg-rtl .stg-header__inner {
    flex-direction: row-reverse;
}

/* Navigation */
body.stg-rtl .stg-nav {
    flex-direction: row-reverse;
}

/* Language switcher dropdown */
body.stg-rtl .stg-lang-switcher__dropdown {
    right: auto;
    left: 0;
}

/* Hero */
body.stg-rtl .stg-hero__content {
    text-align: center;
}

/* Listing card badge */
body.stg-rtl .stg-listing-card__badge {
    left: auto;
    right: var(--stg-space-sm);
}

/* Listing card favorite */
body.stg-rtl .stg-listing-card__favorite {
    right: auto;
    left: var(--stg-space-sm);
}

/* Listing card body text */
body.stg-rtl .stg-listing-card__body {
    text-align: right;
}

/* Business card */
body.stg-rtl .stg-business-card {
    text-align: center;
}

/* Archive layout */
body.stg-rtl .stg-archive__layout {
    direction: rtl;
}

/* Filter sidebar */
body.stg-rtl .stg-filter {
    text-align: right;
}

/* Single listing grid */
body.stg-rtl .stg-single-listing__grid {
    direction: rtl;
}

/* Listing detail meta */
body.stg-rtl .stg-listing-detail__meta {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

/* Seller card */
body.stg-rtl .stg-seller-card {
    text-align: center;
}

/* Footer */
body.stg-rtl .stg-footer__grid {
    direction: rtl;
}
body.stg-rtl .stg-footer__bottom {
    flex-direction: row-reverse;
}

/* Breadcrumb */
body.stg-rtl .stg-breadcrumb__list {
    flex-direction: row-reverse;
}
body.stg-rtl .stg-breadcrumb__separator {
    transform: scaleX(-1);
}

/* Pagination */
body.stg-rtl .stg-pagination {
    flex-direction: row-reverse;
}

/* Blog */
body.stg-rtl .stg-blog-card__body {
    text-align: right;
}

/* Contact modal */
body.stg-rtl .stg-modal__header {
    flex-direction: row-reverse;
}

/* Forms */
body.stg-rtl .stg-form-group label {
    text-align: right;
}

/* Toast */
body.stg-rtl .stg-toast {
    right: auto;
    left: var(--stg-space-xl);
}

/* Lightbox arrows */
body.stg-rtl .stg-lightbox__prev {
    left: auto;
    right: var(--stg-space-xl);
}
body.stg-rtl .stg-lightbox__next {
    right: auto;
    left: var(--stg-space-xl);
}

/* Flex gaps with direction awareness */
body.stg-rtl .stg-flex {
    flex-direction: row-reverse;
}
body.stg-rtl .stg-flex--between {
    flex-direction: row-reverse;
}

/* CTA grid */
body.stg-rtl .stg-cta__grid {
    direction: rtl;
}

/* Blog lang filter */
body.stg-rtl .stg-blog-lang-filter {
    flex-direction: row-reverse;
}

/* Section titles */
body.stg-rtl .stg-section__title,
body.stg-rtl .stg-section__subtitle {
    text-align: center;
}

/* Category card */
body.stg-rtl .stg-category-card {
    text-align: center;
}

/* Meta items with SVG icons */
body.stg-rtl .stg-listing-detail__meta-item,
body.stg-rtl .stg-footer__contact-item,
body.stg-rtl .stg-topbar__contact a {
    flex-direction: row-reverse;
}

/* Business tabs */
body.stg-rtl .stg-business-tabs__list {
    flex-direction: row-reverse;
}

/* Stats grid */
body.stg-rtl .stg-stats__grid {
    direction: rtl;
}

/* Mobile nav */
@media (max-width: 768px) {
    body.stg-rtl .stg-nav {
        transform: translateX(100%);
        left: auto;
        right: 0;
    }
    body.stg-rtl .stg-nav--open {
        transform: translateX(0);
    }
}
