document.querySelector('body').addEventListener("productOptionsLoadedJS", function(e) {
//console.log("Product Options Loaded");
var btn = document.querySelector("button.btn--add-to-cart");
if(btn != null){
btn.removeAttribute("disabled");
}
setTimeout(function() {
btn.removeAttribute("disabled");
}, 3000);
});