Boredom busters: Dog activities that engage body and mind
// Listen for cart drawer openings (common pattern)
document.addEventListener('click', function(e) {
if (e.target.matches('.cart-drawer-trigger, .cart-icon, [href*="cart"]')) {
setTimeout(globalCartShuffle, 1000);
}
});