/**
 * ji_autocustomization
 * Hides the native "Save customization" button.
 * The submit via button[name="submitCustomizedData"] is handled
 * automatically by the module's JS before add-to-cart.
 */

/* Hide the save customization button and its wrapper */
.product-customization-item .custom-submit {
    display: none !important;
}

/* Fallback: target button directly by name attribute */
button[name="submitCustomizedData"],
input[name="submitCustomizedData"] {
    display: none !important;
}

/* 
 * In some themes the button is inside a specific wrapper.
 * Target the common classic theme structure.
 */
.product-customization .card-body > .text-xs-right,
.product-customization .card-body > .text-end {
    display: none !important;
}