Zoe - Earring (Silver)
$24.00
For an elegant and feminine statement, secure a pair of our Zoe - Earring. Our earring is best for a more elevated day to day look, which is an unassuming addition to your outfit and will surely draw attention to...
12083363-silver-plated-china
Best Sellers Earrings New Arrivals
For an elegant and feminine statement, secure a pair of our Zoe - Earring. Our earring is best for a more elevated...

You renderd the snippet swatch.liquid with the name of a product option — 'Metal 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'.

Zoey Leaf - Earring (Rose Gold)
$20.00
For an elegant and feminine statement, secure a pair of our Zoey - Earring. Our earring is best for a more elevated day to day look, which is an unassuming addition to your outfit and will surely draw attention to...
37591116-rose-gold-china
Best Sellers Earrings New Arrivals Rose Gold
For an elegant and feminine statement, secure a pair of our Zoey - Earring. Our earring is best for a more elevated...

You renderd the snippet swatch.liquid with the name of a product option — 'Metal 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'.

Zoey Leaf - Earring (Silver)
$20.00
For an elegant and feminine statement, secure a pair of our Zoey - Earring. Our earring is best for a more elevated day to day look, which is an unassuming addition to your outfit and will surely draw attention to...
37591116-platinum-plated-china
Best Sellers Earrings New Arrivals
For an elegant and feminine statement, secure a pair of our Zoey - Earring. Our earring is best for a more elevated...

You renderd the snippet swatch.liquid with the name of a product option — 'Metal 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); });