Get FREE SHIPPING on all Paparazzi Jewelry orders $75 or more!

Refund and Return Policy

Returns 

Items may be returned for a credit only if the item is defective. To return an item, please notify us within 24 hours upon receipt of the item that you wish to return. The item must be returned to us within 5 days of the initial request to return. Upon receipt of your request to return an item, we will provide instructions for how to return the item to us. If you do not follow the instructions, you will be responsible for the return postage. Upon receipt of the item, provided it is returned in the same condition in which it was sent, and under the terms described, we will issue a refund via store credit or credit the original payment method. We only accept returns if items are defective, once an item has been worn and/or removed from original packaging it will not be accepted for a return.

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 variantSKU = document.querySelector('#' + sectionId + ' .variant-sku'); const inputSelects = [...document.querySelectorAll('#' + sectionId + ' .single-option-selector')]; const productInfo = JSON.parse(product.innerHTML); const inputValues = []; const optionValues = []; let count = 0; inputSelects.forEach((input) => { inputValues.push(input.value); optionValues.push(count); input.addEventListener('change', (evt) => { const currentValue = evt.currentTarget.value.toString(); const changedIndex = inputSelects.indexOf(evt.target); inputValues[changedIndex] = currentValue; variantSKU.innerText = ' '; productInfo.variants.forEach((variant) => { if (JSON.stringify(variant.options) == JSON.stringify(inputValues)) { variantSKU.innerText = variant.sku; } }); }); count += 1; }); }); } });