/**
 * Cookie Consent Banner Styles - Valentina Estetics
 * RTL (Right-to-Left) version for Hebrew
 */

.cookie-consent-banner.rtl {
    direction: rtl;
    text-align: right;
}

.cookie-consent-banner.rtl .cookie-consent-container {
    flex-direction: row-reverse;
}

.cookie-consent-banner.rtl .cookie-consent-content {
    text-align: right;
}

.cookie-consent-banner.rtl .cookie-consent-buttons {
    flex-direction: row-reverse;
}

/* Responsive Design for RTL */
@media (max-width: 768px) {
    .cookie-consent-banner.rtl .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-banner.rtl .cookie-consent-content {
        text-align: center;
    }

    .cookie-consent-banner.rtl .cookie-consent-buttons {
        flex-direction: row-reverse;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner.rtl .cookie-consent-buttons {
        flex-direction: column;
    }
}
