/* RTL CSS for Arabic version of new hero section */
/* This file flips left/right positioning for RTL layout */

/* Main white dog positioning - flip from left to right */
[dir="rtl"] .main-page__white-dog[data-v-c4136270] { 
    left: auto;
    right: 48%; 
    transform: translateX(50%);
    width: 85rem; /* Reduced from 112.5rem */
    max-width: 1360px;
} 

/* Main details positioning - flip from left to right */
[dir="rtl"] .main-page__details[data-v-c4136270] { 
    left: auto;
    right: 50%; 
    transform: translateX(50%); 
} 

/* Hero ball positioning - flip left to right */
[dir="rtl"] .main-page__hero-ball[data-v-c4136270] { 
    left: auto;
    right: 0; 
} 

[dir="rtl"] .main-page__hero-ball.n2[data-v-c4136270] { 
    left: auto;
    right: 18.75rem; 
} 

[dir="rtl"] .main-page__hero-ball.n3[data-v-c4136270] { 
    left: auto;
    right: 50%; 
} 

[dir="rtl"] .main-page__hero-ball.n4[data-v-c4136270] { 
    right: auto;
    left: 0; 
    transform: translate(-40%,65%); 
} 

/* Circle link - flip from left to right */
[dir="rtl"] .main-page__circle-link[data-v-c4136270] { 
    left: auto;
    right: 55%; 
} 

[dir="rtl"] .main-page__circle-link > p[data-v-c4136270]  { 
    right: auto;
    left: 6.5625rem; 
} 

[dir="rtl"] .main-page__circle-link > p[data-v-c4136270]::after { 
    left: auto;
    right: calc(100% + .625rem); 
} 

/* Social links - flip from left to right */
[dir="rtl"] .main-page__social-links[data-v-c4136270] { 
    left: auto;
    right: 0; 
} 

/* Social link margins - flip */
[dir="rtl"] .social-link[data-v-c4136270]:not(:last-child) { 
    margin-right: 0;
    margin-left: 1.5rem;
} 

/* Bottom title - flip from margin-left auto to margin-right auto */
[dir="rtl"] .bottom-title[data-v-c4136270] { 
    margin-left: 0;
    margin-right: auto; 
    text-align: left; 
} 

/* Small title - flip position */
[dir="rtl"] .small_title[data-v-c4136270] { 
    right: auto;
    left: 6.4375rem; 
    text-align: left; 
} 

/* Text line wraps - flip text align */
[dir="rtl"] #style-gFD96.style-gFD96,
[dir="rtl"] #style-lBhNs.style-lBhNs,
[dir="rtl"] #style-jgjWv.style-jgjWv {  
    text-align: left;  
}

[dir="rtl"] #style-4GlSL.style-4GlSL,
[dir="rtl"] #style-FjAwf.style-FjAwf,
[dir="rtl"] #style-oHejW.style-oHejW {
    text-align: left;
}

/* Adjust Arabic font family if needed */
[dir="rtl"] .h2 { 
    font-family: 'Bayon', Arial, sans-serif;
    letter-spacing: 0; /* Arabic doesn't need letter spacing reduction */
}

/* Tablet RTL adjustments */
@media screen and (max-width: 1024px) {
    [dir="rtl"] .main-page__white-dog[data-v-c4136270] {
        width: 85%;
        max-width: 600px;
        position: relative;
        top: 0;
        left: auto !important;
        right: 50% !important;
        transform: translateX(50%) !important;
        margin: 3rem auto 0;
        opacity: 1;
        display: block;
    }

    [dir="rtl"] .main-page__social-links[data-v-c4136270] {
        left: auto;
        right: auto;
    }

    /* Center aligned text on tablet - no RTL flip needed */
    [dir="rtl"] #style-gFD96.style-gFD96,
    [dir="rtl"] #style-lBhNs.style-lBhNs,
    [dir="rtl"] #style-jgjWv.style-jgjWv {
        text-align: center !important;
    }
}

/* Mobile RTL adjustments */
@media screen and (max-width: 767px) {
    [dir="rtl"] .main-page__white-dog[data-v-c4136270] {
        left: auto;
        right: auto;
        transform: none;
    }

    [dir="rtl"] .main-page__social-links[data-v-c4136270] {
        left: auto;
        right: auto;
    }

    /* Center aligned text on mobile - no RTL flip needed */
    [dir="rtl"] #style-gFD96.style-gFD96,
    [dir="rtl"] #style-lBhNs.style-lBhNs,
    [dir="rtl"] #style-jgjWv.style-jgjWv {
        text-align: center !important;
    }
}

