14KT Gold Ladies Diamond Ring
LDS RG 3.00 LONDON BLUE TOPAZ 3.16 TGW
$2,175.00
14KT Gold Earrings
EARRINGS .55 TW
$4,224.00
14KT Gold Earrings
EARR .34 TW
$3,750.00
14KT Gold Earrings
EARR .08 BAG .33 TW
$1,614.00
14KT Gold Necklace
NECK 1.58 LONDON BLUE TOPAZ 1.70 TGW
$1,686.00
14KT Gold Earrings
EARR 10.80 BLUE TOPAZ 11.00 TGW
$4,443.00
14KT Gold Necklace
NECKLACE 1.30 CT PERIDOT
$1,185.00
14KT Gold Necklace
NECKLACE 1.27 TW (17.25 INCHES)
$20,856.00
14KT Gold Earrings
EARR 1.65 YELL DIAS 1.88 TW
$7,854.00
14KT Gold Semi-Mount Engagement Ring
LDS SEMI DIA RG .09 TW (FOR .75 CTR) - HOLDS 0.75 CTR
$1,719.00
14KT Gold Ladies Wedding Ring
LDS DIA WED RG 1.20 YELLOW DIA 1.64 TW
$8,328.00
14KT Gold Bracelet
BANGLE .50 TW
$4,770.00
14KT Gold Earrings
EARR .25 TW
$1,509.00
14KT Gold Semi-Mount Engagement Ring
LDS SEMI DIA RG .12 TW - HOLDS 0.75 CTR
$1,752.00
14KT Gold Ladies Diamond Ring
LDS RG 1.10 MORG 1.26 TGW (7MM MORG)
$2,343.00
14KT Gold Necklace
NECK .34 GREEN GARNET .53 TGW
$1,923.00
14KT Gold Bracelet
BRACELET .26 TW
$3,792.00
14KT Gold Necklace
NECKLACE 1.00 TW
$3,894.00

Showing: 1 - 24 of 781

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