1/6 Ctw Oval Shape Split Twisted Shank Round Cut Diamond Precious Ring With 6x4MM Oval Cut Sapphire Center Stone in 10K White Gold

ASHI
42798TCADTSSPWG
Rings
$980.00
If you are looking to build a family heirloom, then a precious ring like this one here would be good way to start, as gemstones offer value to your collection. The ring features an oval shape center mount that is embellished with a 6x4mm oval cut Sapphire in the middle, haloed by round cut diamonds. There are 16 prong set round cut diamonds encircling the Sapphire center stone. A split twisted design defines the shank, which is further enhanced by 18 each, total 36, prong set round cut diamonds on either side. The diamond and Sapphire precious ring is crafted in 10 karat white gold. Total diamond weight is 1/6 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.
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'); }