WELCOME!

Scents by Sherry provides the finest in handmade home fragrance. Explore our collection of premium wax melts and air fresheners, backed by our commitment to your complete satisfaction.

Locations

You can find our products at the following locations:

Products

Welcome!

Indulge in the luxury of pleasant, long-lasting fragrances meticulously curated for the discerning nose. From our uniquely textured Wax Melt Brittle to our customizable Blendables, every SBS product is made with love and care. We combine premium ingredients with rich, complex notes to bring you a sophisticated sensory experience that makes any room feel wonderful!

Premium 6-Pack Tart Melts

Blendables

Wax Brittle

Freshener Sprays

If you have any questions or comments, feel free to send them here.


Place your order using the form below.



Products


const addProductBtn = document.getElementById('add-product'); const productsFieldset = document.getElementById('products-fieldset'); addProductBtn.addEventListener('click', () => { // Clone the first product entry const firstEntry = productsFieldset.querySelector('.product-entry'); const newEntry = firstEntry.cloneNode(true); // Clear the values in the cloned inputs newEntry.querySelectorAll('select, input').forEach(input => { if (input.tagName === 'SELECT') { input.selectedIndex = 0; } else if (input.type === 'number') { input.value = 1; } else { input.value = ''; } }); productsFieldset.appendChild(newEntry); }); function removeProduct(button) { const entries = productsFieldset.querySelectorAll('.product-entry'); if (entries.length > 1) { button.parentElement.remove(); } else { alert('You must have at least one product entry.'); } }