Get access to your Orders, Wishlist and Recommendations.
Signup
Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Yes, I Accept
(function() {
function linkifyTerms() {
var nodes = document.querySelectorAll('.ppom-wrapper *, .ppom-field-container *');
nodes.forEach(function(node) {
// Find element containing the phrase that has no child elements
if (node.children.length === 0 && node.textContent.indexOf('package labeling') !== -1) {
var container = node.closest('label') || node;
if (!container.dataset.termsLinked) {
container.dataset.termsLinked = "true";
container.innerHTML = 'I accept package labeling & processing terms*';
}
}
});
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', linkifyTerms);
} else {
linkifyTerms();
}
// Watch for dynamic PPOM re-renders
var observer = new MutationObserver(linkifyTerms);
observer.observe(document.body, { childList: true, subtree: true });
})();