1/10 Ctw Split & Twisted Rope and Round Cut Diamond Huggie Earrings in 10K Yellow Gold

ASHI
676V8TCADTSERYG
Earrings
$320.00
Huggie earrings are unique and lend an individual touch to your looks. Try these for a style upgrade! Also, with the yellow gold trend back in a major way, these diamond huggie earrings offer even greater appeal. The huggie earrings features two split arms that form a double twist on the earring front. While one arm displays a rope pattern, the other is decorated with round cut diamonds. There are 11 each fishtail set round cut diamonds embellishing the huggies, a total of 22 diamonds on both earrings together. The huggie earring is fashioned in 10 karat yellow gold. Total diamond weight is 1/10 ctw.
The cookie settings on this website are set to 'allow all cookies' to give you the very best experience. Please click Accept Cookies to continue to use the site.
You have successfully subscribed!
This email has been registered
document.addEventListener('DOMContentLoaded', function () { // Check if the customer is logged in and is placing their first order if (Shopify && Shopify.checkout && isFirstOrder()) { applyDiscountCode('1STORDER'); } }); function isFirstOrder() { // You need to implement this function based on your logic to check if it's the first order // For example, you could use local storage, cookies, or a backend call to validate // This is a dummy implementation return !localStorage.getItem('hasOrdered'); } function applyDiscountCode(discountCode) { fetch('/cart.js') .then(response => response.json()) .then(cart => { if (cart && cart.discount_code === null) { fetch('/cart/update.js', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ updates: {}, discount_code: discountCode }) }) .then(response => response.json()) .then(cart => { console.log('Discount code applied:', cart); // Update the UI or inform the user if necessary }); } }); } // Set localStorage after the first order is placed // You might need to call this function after a successful checkout function setFirstOrderFlag() { localStorage.setItem('hasOrdered', 'true'); }