Annabelle - Ring (Rose Gold)
$74.00
Treat yourself and flaunt your style with this beautifully crafted Annabelle - Ring.  It is handcrafted with sterling silver to give your jewelry a brilliant shine. Sterling silver is hypoallergenic and nickel-free, making this an excellent choice for individuals with...
37520344-resizable-silver-1
Best Sellers Crystal New Arrivals Rings Sterling Silver
Treat yourself and flaunt your style with this beautifully crafted Annabelle - Ring.  It is handcrafted with sterling silver to give your...

You renderd the snippet swatch.liquid with the name of a product option — 'Color' — that does not belong to your product.

Use {% render 'swatch' with 'name of your product option here' %}

Example: {% render 'swatch' with 'Color' %}

This is case-sensitive! Do not put in 'color' if your product option name is 'Color'.

Free Shipping Over $75
Free Returns
Genuine Product Guarantee
Secure Shopping Guarantee
Cart cart 0
You have successfully subscribed!
document.addEventListener('DOMContentLoaded', function () { const freeGiftProductId = ; // Replace `id` with the actual ID field of your freepdp const freeShippingThreshold = ; function addFreeGiftToCart() { fetch('/cart.js') .then(response => response.json()) .then(cart => { const qualifiesForFreeGift = cart.total_price >= freeShippingThreshold; const hasFreeGift = cart.items.some(item => item.id === freeGiftProductId); if (qualifiesForFreeGift && !hasFreeGift) { fetch('/cart/add.js', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ id: freeGiftProductId, quantity: 1 }) }).then(() => { console.log('Free gift added to cart.'); }); } else if (!qualifiesForFreeGift && hasFreeGift) { fetch('/cart/change.js', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ id: freeGiftProductId, quantity: 0 }) }).then(() => { console.log('Free gift removed from cart.'); }); } }); } addFreeGiftToCart(); // Re-run when cart is updated document.addEventListener('cart:updated', addFreeGiftToCart); });