Your shopping cart is empty.

Nice Things

7 Products
Special Collection
SALE
Painted Flowers Crinkled Button Up Top
$50.00 $82.00
Sustainable cotton fabric. Open tunic collar and button placket in natural mother-of-pearl. Long sleeves with cuff and button. Presented in a bag of the same fabric to "re-crinkle". 100% Cotton Wash Cold by Nice Things Final sale on clearance items!
New Folk Printed Blouse
$145.00
Flowing straight printed blouse 100% viscose Wash  by Nice Things
Blue Striped Rib Sweater
$132.00
Super soft blue striped mixed-knit round-neck sweater.  50% nylon, 22% acrylic, 18% cotton, 5%wool, 5% spandex Wash  by Nice Things
Brown Jacquard Shawl-Collar Cardigan
$140.00
Brown Jacquard Shawl-Collar Cardigan 74% acrylic, 22% polyester, 4% elastane Wash  by Nice Things
Ikebana Printed Button Up Top
$92.00
This beige printed button up is made of sustainable cotton fabric and features a classic collar.  100% Cotton Wash  by Nice Things
Flower Folk Jacquard Sweater
$160.00
This cozy brown sweater features a round neck and lovely flower detail on its front, making it perfect for winter.  34% nylon, 31% wool, 25% viscose, 6% alpaca, 4% elastane Wash  by Nice Things
SALE
Sketched Flowers Statement Back Sweater
$100.00 $132.00
Crew neck sweater with a gorgeous statement floral back.  80% Cotton, 20% Nylon Wash Cold by Nice Things Final sale on clearance items!
is added to your shopping cart.
Go to Cart
is added to your wishlist.
Go to Wishlist
document.addEventListener('DOMContentLoaded', function() { const productJson = document.querySelectorAll('[id`^`=ProductJson-'); if (productJson.length > 0) { for (let i = 0; i < productJson.length; i++) { const current = productJson[i]; const sectionId = current.id.replace('ProductJson-', ''); const section = document.querySelector('[data-section-id="' + sectionId + '"]'); const product = JSON.parse(current.text); if (product.options.length === 1) { const unavailableVariants = []; for (let j = 0; j < product.variants.length; j++) { const variant = product.variants[j]; if (!variant.available) { unavailableVariants.push(variant); } } if (unavailableVariants.length > 0) { const mutationCallback = function() { const variantOptions = section.querySelectorAll('.single-option-selector option'); if (variantOptions.length > 0) { for (let k = 0; k < unavailableVariants.length; k++) { const unavailableVariant = unavailableVariants[k]; for (let l = 0; l < variantOptions.length; l++) { const option = variantOptions[l]; if (unavailableVariant.title === option.value) { option.remove(); } } } if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } } } const observer = new MutationObserver(mutationCallback); const addToCartForm = document.querySelector('form[action*="/cart/add"]'); mutationCallback(); if (window.MutationObserver && addToCartForm.length) { const config = { childList: true, subtree: true }; if (typeof observer === 'object' && typeof observer.disconnect === 'function') { observer.disconnect(); } observer.observe(addToCartForm, config); } } } } } });