1/20 Ctw Oval 10x8 MM Blue Topaz Round Diamond Sterling Silver Lariat Bracelet

ASHI
81149TCADSSBTSLTB
Bracelets
$270.00
This beautiful bracelet makes for an instant attraction. The brilliant 10x8 MM oval cut Blue Topaz that sits pretty in the center, is the main attracting force of this stunning lariat bracelet. To top it up, the oval cut Blue Topaz is encircled by 18 pave set round cut diamonds. Also featuring is a milgrain finish to the mount's rim. An open ended lariat link chain connects to the oval mount via a twisted loop accent. A sliding clasp offers easy adjustment to fit different wrist sizes. The lovely bracelet is styled in sterling silver. Total diamond weight is 1/20 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'); }