/*
RTL Styles for IPTV Smarters Theme
*/

/* Basic RTL adjustments */
body {
    direction: rtl;
    text-align: right;
}

/* Navigation adjustments */
.nav-menu ul {
    flex-direction: row-reverse;
}

.nav-menu ul li {
    margin-right: 0;
    margin-left: 10px;
}

/* Content sections RTL fixes */
.content-section .text-box {
    text-align: right;
}

#content-2 .text-box,
#content-4 .text-box {
    text-align: left;
}

/* Feature cards RTL */
.feature-card {
    text-align: right;
}

/* Accordion RTL */
.accordion-title {
    text-align: right;
    flex-direction: row-reverse;
}

.accordion-icon {
    margin-right: 0;
    margin-left: -23px;
}

.accordion-content {
    text-align: right;
}

/* Footer RTL */
.footer-top-col ul {
    text-align: center;
}

/* Form elements RTL */
.search-form {
    flex-direction: row-reverse;
}

.search-field {
    border-right: none;
    border-left: 2px solid var(--color-primary);
    border-radius: 0 25px 25px 0;
}

.search-submit {
    border-radius: 25px 0 0 25px;
}

/* Product cards RTL */
.product-card {
    text-align: center;
}

/* Comments RTL (if used) */
.comment-content {
    text-align: right;
}

/* Media queries for RTL mobile */
@media (max-width: 767px) {
    .nav-container {
        flex-direction: row-reverse;
    }
    
    .logo-container {
        text-align: right;
    }
    
    .content-section .text-box {
        text-align: right;
    }
    
    #content-2 .text-box,
    #content-4 .text-box {
        text-align: right;
    }
}