* All Products Are Fitted Free When Bought In Conjunction With a Mastercraft Bespoke Kitchen
document.addEventListener("DOMContentLoaded", function () {
// Target the pricing table
var pricingTable = document.querySelector("#pricing-table-row-1 .appts-table-item-wrapper");
if (pricingTable) {
// Monitor the table's style and correct it if necessary
var observer = new MutationObserver(function () {
if (pricingTable.style.width !== "100%") {
pricingTable.style.width = "100%"; // Force full width
}
});
// Observe the table for changes in attributes
observer.observe(pricingTable, { attributes: true, attributeFilter: ["style"] });
}
});