14k white gold diamond engagement ring.
14k white gold diamond engagement ring.
$1,840.00
3-Stone Engagement Ring
A classic three stone design representing your past present and future is decorated by hand engraving and milgraine finish for a vintage feel.
$2,820.00
3-Stone Halo Diamond Engagement Ring
Halos surround three stunning diamonds representing your past, present and future together. The diamond shoulders maximize the rings sparkle.
$6,380.00
3-Stone Halo Style Diamond Engagement Ring
A diamond cushion halo surrounds the center stone in this vintage inspired design. A diamond shape motif with an open polished link meets with a delicate pinched sparkling shank.
$2,240.00
3-Stone Halo Style Engagement Ring
Halos surround three stunning diamonds representing your past, present and future together. A decorative undergallery adds a vintage feel.
$7,350.00
6-Prong Diamond Engagement Ring
This 6-prong diamond engagement ring creates a 3-stone setting illusion with its side-stone accents - on both sides of the head, three accent diamonds adorn the sides of the center stone. The remainder of the shank features sword-edge polished gold,...
$1,510.00
6-Prong Diamond Engagement Ring
The center diamond is crowned by 6-prongs on this dazzling engagement ring. The shank splits into three rows - the central row is wide and filled with graduating diamonds, pointing towards the head, while the two outer thin polished gold...
$1,620.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$4,140.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$1,640.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$2,960.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$2,700.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$2,810.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$4,020.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$2,830.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$2,690.00
A diamond halo mount set in 14k white gold.
A diamond halo mount set in 14k white gold.
$3,210.00

Showing: 1 - 24 of 1907

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'); }