Step into the spirit of the West with our Cowboy Hat Canvas, available in seven fun colors! Perfectly fitting adults and matching kids’ sizes let the whole family join in. Whether you're at a rodeo or just want to be a cowboy for the day, these durable canvas hats bring playful charm and comfort wherever you go. Saddle up and tip your hat to adventure!
document.addEventListener('submit', function (e) {
const form = e.target;
if (!(form instanceof HTMLFormElement)) return;
// Only affect Classic Case product
if (!window.location.pathname.includes('/products/classic-case')) return;
// Only for add-to-cart
if (!form.action.includes('/cart/add')) return;
const qtyInput = form.querySelector('input[name="quantity"]');
if (!qtyInput) return;
qtyInput.value = '1';
qtyInput.min = '1';
qtyInput.setAttribute('data-min', '1');
}, true);
Choosing a selection results in a full page refresh.