/*
Theme Name: Gosary Classic RTL
Description: Adds support for right-to-left languages for the Gosary Classic theme. This file is loaded automatically by WordPress for RTL languages.
Version: 1.0.5
*/

/* --- General RTL Adjustments --- */
body {
    direction: rtl;
}

/* --- Text Alignment --- */

/* Default text alignment to right for RTL */
.pillar p,
.blog-card,
.footer-widget {
    text-align: right;
}

/* Force left-aligned elements to be right-aligned in RTL */
.shop-hero-section {
    text-align: right;
}

/* Keep centered elements centered */
.hero-section,
.front-page-section,
.feature-item,
.woocommerce ul.products li.product,
.product-card,
.footer-bottom {
    text-align: center;
}

/* ==============================================
MAGAZINE PAGE RTL STYLES
==============================================
*/

/* --- Featured Posts Section --- */
.slide-content,
.latest-post-item .post-item-title {
    text-align: right;
}

/* Flip the slideshow navigation buttons */
.prev-slide {
    left: auto;
    right: 10px;
}
.next-slide {
    right: auto;
    left: 10px;
}

/* --- Specific Component Overrides --- */

/* Make sure the category overlay text is on the right */
.category-card .category-overlay {
    left: auto;
    right: 0;
}

/* Align text inside the newsletter input field to the right */
.newsletter-form input[type="email"] {
    text-align: right;
}

/* --- WooCommerce RTL Fixes --- */

/* Adjust star rating position */
.woocommerce ul.products li.product .star-rating {
    float: right;
}

