/**
 * Cafe Manager Frontend RTL Styles
 * استایل‌های راست‌چین فرانت‌اند مدیر کافه
 * 
 * @package Cafe_Manager
 * @since 1.0.0
 */

/* ========================================
   RTL Adjustments | تنظیمات راست‌چین
   ======================================== */

/* Carousel Navigation | ناوبری اسلایدر */
.cafe-carousel-prev {
    right: 10px;
    left: auto;
}

.cafe-carousel-next {
    left: 10px;
    right: auto;
}

.cafe-carousel-prev span {
    transform: scaleX(-1);
}

.cafe-carousel-next span {
    transform: scaleX(-1);
}

/* Grid Alignment | تراز شبکه */
.cafe-products-wrapper,
.cafe-categories-wrapper {
    direction: rtl;
}

/* Text Alignment | تراز متن */
.cafe-category-link,
.cafe-no-products,
.cafe-no-categories {
    text-align: right;
}

/* Buttons | دکمه‌ها */
.cafe-add-to-cart {
    direction: rtl;
}

