1/10 Ctw Pear Shape 9x6mm Blue Topaz & Round Cut Diamond Semi Precious Pendant With Chain in 10K White Gold

ASHI
61448TCADTSPDBTWG
Pendants
$610.00
This chic semi-precious pendant can add glory to numerous outfits, making it a fashionable addition to one's jewelry box. The pendant features a pear shape center mount housing a 9x6mm Blue Topaz center stone in the same shape. A double row of milgrain defines the center stone. Apart from this, rectangular bar accents surround the center mount, each of which is embellished with an illusion set round cut diamond. An Box chain is included with the pendant. Both chain and pendant are styled in 10 karat white 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'); }