20% off the store --- free/reduced shipping on most orders
Carina Top (more colors)
Carina Top (more colors)
Carina Top (more colors)
Carina Top (more colors)
Carina Top (more colors)
Carina Top (more colors)
Carina Top (more colors)
Carina Top (more colors)
Carina Top (more colors)
$ 11.00

$ 49.00

Carina Top (more colors)

Super comfy soft cotton jersey, contrast lining in hood with coordinating elbow patches.
95/5 cotton-lycra, machine wash cold, tumble dry lowest heat

document.addEventListener('DOMContentLoaded', () => { const productJson = [...document.querySelectorAll('[id^=ProductJson-')]; if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const productVariants = JSON.parse(product.innerHTML); const unavailableVariants = []; productVariants.variants.forEach((variant) => { if (variant.available === false) { unavailableVariants.push(variant); } }); const variantOptions = [...document.querySelectorAll('#' + sectionId + ' .single-option-selector option')] const observer = new MutationObserver((mutation) => { unavailableVariants.forEach((item) => { variantOptions.forEach((option) => { if (option.value === item.title) option.remove(); }); }); observer.disconnect(); }); if (unavailableVariants.length > 0 && productVariants.options.length === 1) { const addToCartForm = document.querySelector('form[ action="/cart/add"]'); if (window.MutationObserver && addToCartForm.length) { if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } const config = { childList: true, subtree: true }; observer.observe(addToCartForm, config); } } }); } });