<script>
document.addEventListener("DOMContentLoaded", function () {
const bookNowWrapper = document.querySelector("section.region .button-block");
const pdpDetailsExcerpts = document.querySelectorAll(".pdp-details-excerpt, .product-description");
if (bookNowWrapper && pdpDetailsExcerpts.length > 0) {
pdpDetailsExcerpts.forEach(function(excerpt, index) {
if (index === 0) {
excerpt.appendChild(bookNowWrapper);
} else {
const clonedWrapper = bookNowWrapper.cloneNode(true);
excerpt.appendChild(clonedWrapper);
}
});
}
});
</script>