.elementor-3283 .elementor-element.elementor-element-d82563d{--display:flex;}/* Start custom CSS *//* Hide the entire table containing WooCommerce's
   default attribute body.elementor-page-3283s */
form.variations_form.cart table.variations {
    display: none;
}

/* Also hide any related clear
   variation messages/buttons if they appear */
.reset_variations {
    display: none;
}
/* Aggressively hide the quantity input field and its container */

/* Target the quantity wrapper div */
div.quantity,
.quantity {
    display: none !important;
    visibility: hidden !important; /* Added for extra force */
    position: absolute !important; /* Move it off-screen just in case */
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Target the actual number input within the quantity container */
.quantity input.qty,
input.qty {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Ensure the quantity label is also hidden if it appears separately */
.quantity label.screen-reader-text,
label.screen-reader-text[for^="quantity_"] { /* Targets labels for quantity specifically */
    display: none !important;
    visibility: hidden !important;
}/* End custom CSS */