/* Fix for AI generated unorganized lists (UL) in WooCommerce short description - RTL Support */

.woocommerce-product-details__short-description ul {
    list-style-type: disc !important;
    padding-right: 20px !important; /* Move bullets inside the container */
    padding-left: 0 !important;
    margin-right: 0 !important;
    text-align: right !important;
}

.woocommerce-product-details__short-description ul li {
    list-style-position: inside !important; /* Ensures the bullet is part of the text flow */
    margin-bottom: 8px !important;
    display: list-item !important; /* Overrides any Elementor/theme display flex/block */
    text-align: right !important;
}
