7/8 Ctw Diamond Engagement Ring with 3/8 Ct Princess Cut Center Stone in 14K White and Rose Gold

ASHI
200E2TCADFVWP-LE
Rings
$4,870.00
A perfect expression of your love and commitment! This glorious lattice diamond engagement ring with a 3/8 princess cut center stone in double diamond halo is majestic. encrusted with round diamonds, the split shank adds more brilliance to the center while the Rose Gold work underneath the mounting along with milgrain finish all over the ring gives the piece a desired vintage touch. In 14 Karat White and Rose Gold with 78 pave set round diamonds, this halo diamond ring is a stunning choice to embrace timeless brilliance. Total diamond weight is 7/8 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'); }