Skip to content
Home
Product Type
Product Type
T Shirts
Hats
Hoodies
Mugs
Posters
Contact
Home
Product Type
T Shirts
Hats
Hoodies
Mugs
Posters
Contact
Search
Cart
Item added to your cart
View cart
Check out
Continue shopping
Free Shipping in the USA! 👍
Contact
Your information is used only for purposes of your order. We do not sell your data.
Contact form
Name
Email
*
Phone number
Comment
Send
Choosing a selection results in a full page refresh.
Opens in a new window.
document.addEventListener("DOMContentLoaded", function() { // Adjust the selector to match Spotlight's variant input (could be select or radio buttons) const variantInput = document.querySelector('select[name="id"], input[name="id"][type="radio"]'); const thumbnailSelector = '.product__media-item'; function filterThumbnails(variantId) { document.querySelectorAll(thumbnailSelector).forEach(thumb => { const variantIds = thumb.getAttribute('data-variant-ids'); if (variantIds && variantIds.split(',').map(s => s.trim()).includes(variantId)) { thumb.style.display = ''; } else { thumb.style.display = 'none'; } }); } function updateOnSelection() { const selectedVariantId = this.value; filterThumbnails(selectedVariantId); } if (variantInput) { variantInput.addEventListener('change', updateOnSelection); // Initial filter on page load filterThumbnails(variantInput.value); } else { console.warn('Variant input not found—please verify the selector for Spotlight.'); } });