(function () {
function hideWriteBtn() {
var root = document.querySelector('.reviews-hub');
if (!root) return;
root.querySelectorAll(
'.yotpo-header-actions, .yotpo-header .yotpo-btn, .yotpo-header .yotpo-default-button, .yotpo-header .write-review, .yotpo-header [class*="write"]'
).forEach(function(el){ el.style.display = 'none'; });
}
// Initial pass + keep watching for Yotpo re-render
document.addEventListener('DOMContentLoaded', hideWriteBtn);
hideWriteBtn();
new MutationObserver(hideWriteBtn).observe(document.body, {subtree:true, childList:true});
})();