/**
 * Ringat Theme - RTL Styles
 * Additional styles for right-to-left languages
 *
 * @package Ringat
 */

/* Base RTL */
[dir="rtl"] {
    text-align: right;
}

/* Font family for Arabic */
[dir="rtl"] body {
    font-family: 'Tajawal', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Flip icons that should be mirrored */
[dir="rtl"] .rtl-flip {
    transform: scaleX(-1);
}

/* Drawer RTL positioning */
[dir="rtl"] .drawer-content {
    right: 0;
    left: auto;
    transform: translateX(100%);
}

[dir="rtl"] .drawer-open .drawer-content {
    transform: translateX(0);
}

/* Category slider RTL */
[dir="rtl"] .category-slider {
    direction: rtl;
}

/* Audio progress RTL */
[dir="rtl"] .audio-progress {
    direction: ltr;
}

/* Breadcrumb separator RTL */
[dir="rtl"] .breadcrumb-separator {
    transform: rotate(180deg);
}

/* Form inputs RTL */
[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="search"],
[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="url"],
[dir="rtl"] textarea {
    text-align: right;
}

/* Pagination RTL */
[dir="rtl"] .pagination .prev svg,
[dir="rtl"] .pagination .next svg {
    transform: rotate(180deg);
}

/* Social share buttons RTL */
[dir="rtl"] .social-share {
    direction: ltr;
}

/* Fixed Audio Player RTL */
[dir="rtl"] .fixed-progress-fill {
    right: 0;
    left: auto;
    border-radius: 2px 0 0 2px;
}

[dir="rtl"] .fixed-progress-glow {
    right: 0;
    left: auto;
}

[dir="rtl"] .fixed-player-thumb {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .circular-visualizer .circle-bar {
    transform: translateX(50%) rotate(calc(var(--i) * -30deg));
}