thebackvault.com
Open in
urlscan Pro
2620:127:f00f:3::
Public Scan
URL:
https://thebackvault.com/
Submission: On November 19 via manual from PK — Scanned from CA
Submission: On November 19 via manual from PK — Scanned from CA
Form analysis
13 forms found in the DOMPOST /localization
<form method="post" action="/localization" id="annbar-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
<div class="localization__grid">
<div class="localization__selector">
<input type="hidden" name="country_code" value="CA">
<country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-button">Country/Region</label>
<div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-button">
<span class="text-start">Canada (CAD $)</span>
<svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
<path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
</svg>
</button>
<ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
<li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0" role="option" data-value="CA" aria-selected="true">
<span class="pointer-events-none">Canada (CAD $)</span>
</li>
</ul>
</div>
</country-selector>
</div>
</div>
<script>
customElements.whenDefined('custom-select').then(() => {
if (!customElements.get('country-selector')) {
class CountrySelector extends customElements.get('custom-select') {
constructor() {
super();
this.loaded = false;
}
async showListbox() {
if (this.loaded) {
super.showListbox();
return;
}
this.button.classList.add('is-loading');
this.button.setAttribute('aria-disabled', 'true');
try {
const response = await fetch('?section_id=country-selector');
if (!response.ok) throw new Error(response.status);
const tmpl = document.createElement('template');
tmpl.innerHTML = await response.text();
const el = tmpl.content.querySelector('.custom-select__listbox');
this.listbox.innerHTML = el.innerHTML;
this.options = this.querySelectorAll('.custom-select__option');
this.popular = this.querySelectorAll('[data-popular]');
if (this.popular.length) {
this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
}
this.selectedOption = this.querySelector('[aria-selected="true"]');
if (!this.selectedOption) {
this.selectedOption = this.listbox.firstElementChild;
}
this.loaded = true;
} catch {
this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
} finally {
super.showListbox();
this.button.classList.remove('is-loading');
this.button.setAttribute('aria-disabled', 'false');
}
}
setButtonWidth() {
return;
}
}
customElements.define('country-selector', CountrySelector);
}
});
</script>
<script>
document.getElementById('annbar-localization').addEventListener('change', (evt) => {
const input = evt.target.closest('.localization__selector').firstElementChild;
if (input && input.tagName === 'INPUT') {
input.value = evt.detail ? evt.detail.selectedValue : evt.target.value;
evt.currentTarget.submit();
}
});
</script>
</form>
GET /search
<form class="main-search__form" action="/search" method="get" autocomplete="off">
<div class="main-search__input-container">
<input class="main-search__input" type="text" name="q" autocomplete="off" placeholder="Search our store" aria-label="Search">
<button class="main-search__button" type="submit" aria-label="Search"><svg class="icon" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation">
<g transform="translate(3 3)" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd">
<circle cx="7.824" cy="7.824" r="7.824"></circle>
<path stroke-linecap="square" d="m13.971 13.971 4.47 4.47"></path>
</g>
</svg></button>
</div>
<script src="//thebackvault.com/cdn/shop/t/18/assets/search-suggestions.js?v=136224079820713396391717708868" defer=""></script>
<search-suggestions></search-suggestions>
</form>
POST /localization
<form method="post" action="/localization" id="annbar-localizationMobileNav" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
<div class="localization__grid">
<div class="localization__selector">
<input type="hidden" name="country_code" value="CA">
<country-selector><label class="label visually-hidden no-js-hidden" for="annbar-localization-country-buttonMobileNav">Country/Region</label>
<div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="annbar-localization-country-buttonMobileNav">
<span class="text-start">Canada (CAD $)</span>
<svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
<path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
</svg>
</button>
<ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="annbar-localization-country-opt-0">
<li class="custom-select__option flex items-center js-option" id="annbar-localization-country-opt-0MobileNav" role="option" data-value="CA" aria-selected="true">
<span class="pointer-events-none">Canada (CAD $)</span>
</li>
</ul>
</div>
</country-selector>
</div>
</div>
<script>
customElements.whenDefined('custom-select').then(() => {
if (!customElements.get('country-selector')) {
class CountrySelector extends customElements.get('custom-select') {
constructor() {
super();
this.loaded = false;
}
async showListbox() {
if (this.loaded) {
super.showListbox();
return;
}
this.button.classList.add('is-loading');
this.button.setAttribute('aria-disabled', 'true');
try {
const response = await fetch('?section_id=country-selector');
if (!response.ok) throw new Error(response.status);
const tmpl = document.createElement('template');
tmpl.innerHTML = await response.text();
const el = tmpl.content.querySelector('.custom-select__listbox');
this.listbox.innerHTML = el.innerHTML;
this.options = this.querySelectorAll('.custom-select__option');
this.popular = this.querySelectorAll('[data-popular]');
if (this.popular.length) {
this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
}
this.selectedOption = this.querySelector('[aria-selected="true"]');
if (!this.selectedOption) {
this.selectedOption = this.listbox.firstElementChild;
}
this.loaded = true;
} catch {
this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
} finally {
super.showListbox();
this.button.classList.remove('is-loading');
this.button.setAttribute('aria-disabled', 'false');
}
}
setButtonWidth() {
return;
}
}
customElements.define('country-selector', CountrySelector);
}
});
</script>
<script>
document.getElementById('annbar-localization').addEventListener('change', (evt) => {
const input = evt.target.closest('.localization__selector').firstElementChild;
if (input && input.tagName === 'INPUT') {
input.value = evt.detail ? evt.detail.selectedValue : evt.target.value;
evt.currentTarget.submit();
}
});
</script>
</form>
<form aria-live="polite" class="needsclick klaviyo-form klaviyo-form-version-cid_1 go2622060961 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-VwX5Gq" novalidate=""
style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; max-width: 320px; float: left; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgba(255, 255, 255, 0); background-repeat: no-repeat; background-position-y: 50%; padding-right: 0px; padding-bottom: 0px; flex: 1 1 0%;">
<div class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; min-height: 200px; justify-content: center;">
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 0px; position: relative; flex: 1 0 0px;">
<div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-016JB91TTR00000000003QNN7T" style="width: 100%;">
<div><span style="font-family: 'Nunito Sans', Helvetica, Arial, sans-serif; font-weight: 400; font-style: normal; color: rgb(92, 92, 92); font-size: 20px;">Join for exclusive offers and more!</span></div>
</div>
</div>
</div>
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1"
style="display: flex; justify-content: flex-start; padding: 10px 0px; position: relative; background-color: rgba(255, 255, 255, 0); flex: 1 0 0px;">
<div class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><label class="needsclick klaviyo-sr-only kl-private-reset-css-Xuajs1"
id="label-email_016JB91TTR00000000003QNN7V" for="email_016JB91TTR00000000003QNN7V"
style="color: rgb(0, 0, 0); font-family: "Nunito Sans", Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 2px; padding-bottom: 6px;">Email</label><input id="email_016JB91TTR00000000003QNN7V"
class="needsclick go2862442955 kl-private-reset-css-Xuajs1" type="email" autocomplete="email" name="email" tabindex="0" placeholder="Your Email" aria-required="true" aria-invalid="false" options="[object Object]"
style="box-sizing: border-box; border-radius: 4px; padding: 0px 0px 0px 16px; height: 45px; text-align: left; color: rgb(0, 0, 0); font-family: "Nunito Sans", Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 2px; background-color: rgba(255, 255, 255, 0); border: 1px solid rgb(0, 0, 0);">
<div class="needsclick kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
</div>
</div>
</div>
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1"
style="display: flex; justify-content: flex-start; padding: 10px 0px; position: relative; background-color: rgba(255, 255, 255, 0); flex: 0 1 auto;"><button class="needsclick go2534619395 kl-private-reset-css-Xuajs1" type="button"
tabindex="0"
style="background: rgb(0, 0, 0); border-radius: 2px; border-style: none; border-color: rgb(33, 29, 28); border-width: 3px; color: rgb(255, 255, 255); font-family: "Nunito Sans", Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 2px; line-height: 1; white-space: normal; padding: 0px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; pointer-events: auto; height: 40px;">SUBSCRIBE</button>
</div>
</div>
</div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>
POST /localization
<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
<div class="localization__grid">
<div class="localization__selector">
<input type="hidden" name="country_code" value="CA">
<country-selector><label class="label visually-hidden no-js-hidden" for="footer-localization-country-button">Country/Region</label>
<div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-country-button">
<span class="text-start">Canada (CAD $)</span>
<svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
<path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
</svg>
</button>
<ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
<li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="CA" aria-selected="true">
<span class="pointer-events-none">Canada (CAD $)</span>
</li>
</ul>
</div>
</country-selector>
</div>
</div>
<script>
customElements.whenDefined('custom-select').then(() => {
if (!customElements.get('country-selector')) {
class CountrySelector extends customElements.get('custom-select') {
constructor() {
super();
this.loaded = false;
}
async showListbox() {
if (this.loaded) {
super.showListbox();
return;
}
this.button.classList.add('is-loading');
this.button.setAttribute('aria-disabled', 'true');
try {
const response = await fetch('?section_id=country-selector');
if (!response.ok) throw new Error(response.status);
const tmpl = document.createElement('template');
tmpl.innerHTML = await response.text();
const el = tmpl.content.querySelector('.custom-select__listbox');
this.listbox.innerHTML = el.innerHTML;
this.options = this.querySelectorAll('.custom-select__option');
this.popular = this.querySelectorAll('[data-popular]');
if (this.popular.length) {
this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
}
this.selectedOption = this.querySelector('[aria-selected="true"]');
if (!this.selectedOption) {
this.selectedOption = this.listbox.firstElementChild;
}
this.loaded = true;
} catch {
this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
} finally {
super.showListbox();
this.button.classList.remove('is-loading');
this.button.setAttribute('aria-disabled', 'false');
}
}
setButtonWidth() {
return;
}
}
customElements.define('country-selector', CountrySelector);
}
});
</script>
<script>
document.getElementById('footer-localization').addEventListener('change', (evt) => {
const input = evt.target.closest('.localization__selector').firstElementChild;
if (input && input.tagName === 'INPUT') {
input.value = evt.detail ? evt.detail.selectedValue : evt.target.value;
evt.currentTarget.submit();
}
});
</script>
</form>
GET /search
<form action="/search" method="get" class="input-group search__bar" role="search" data-searchwishlist="" onsubmit="return false;">
<input type="search" name="q" value="" placeholder="" class="input-group-field" aria-label="Search our store" data-wishlistsearch="" tabindex="5">
</form>
<form>
<ul class="choose-wishlist-option" data-userwishlists="">
</ul>
<ul class="choose-wishlist-option">
<li data-opencreatesection="">
<a href="#" class="creat_link">
<span class="icon-wishlist-plus hulkThemeColor"></span><span data-createwishlisttext="" class="hulkThemeColor">Create New wishlist</span>
</a>
</li>
<li data-addnewwishlist="" style="display: none">
<div class="input-group">
<button class="close-new-wishlist-input" data-closenewwishlistinput="" style="font-size: 10px;float: right;padding: 6px; color: #aaa;">
<span class="icon-wishlist-cross"></span>
</button>
<label for="newWishlist" class="wishlist-checkbox"><span></span><input data-newwishlist="" type="text" placeholder="Ex. Watch" value=""></label>
<button class="wishlist-btn hulkBtnStyle" data-savenewwishlist="">Save</button>
</div>
</li>
</ul>
</form>
POST /share-wishlist
<form action="/share-wishlist" method="post" class="floating-form" role="share-wishlist" data-hulkemailform="">
<div class="floating-label">
<input type="text" class="floating-input" placeholder=" " name="name" value="" aria-label="Search our store">
<span class="highlight"></span>
<label id="from_name_label">Sender Name*</label>
</div>
<div class="floating-label">
<input type="email" class="floating-input" placeholder=" " name="email" value="" aria-label="Search our store">
<span class="highlight"></span>
<label id="email_label">Recipients Email*</label>
</div>
<div class="floating-label">
<input type="text" class="floating-input" placeholder=" " name="subject" value="" aria-label="Search our store">
<span class="highlight"></span>
<label id="subject_label">Subject*</label>
</div>
<div class="floating-label">
<textarea id="body" class="floating-input" placeholder=" " name="body" rows="4" style="width: 100%"></textarea>
<span class="highlight"></span>
<label for="body" id="email_body_label">Message*</label>
</div>
<div class="floating-label" style="margin-bottom: 20px;">
<button type="submit" class="wishlist-btn hulkBtnStyle" data-hulksendemailbutton="">SHARE WISHLIST</button>
</div>
</form>
<form class="input-group search-bar" style="padding: 0;">
<input type="text" id="shareURL" value="" class="input-group-field" data-shareurl="" readonly="">
<span class="input-group-btn">
<button type="button" class="wishlist-btn hulkBtnStyle" data-copyshareurlbutton=""></button>
</span>
</form>
POST /subscribe
<form action="/subscribe" method="post" class="input-group search-bar" role="subscribe" data-hulksubscribeform="">
<input type="email" name="email" value="" placeholder="user@gmail.com" class="input-group-field" aria-label="Search our store">
<span class="input-group-btn">
<button type="submit" class="wishlist-btn hulkBtnStyle" data-hulksubscribebutton="">Subscribe</button>
</span>
</form>
<form class="input-group search-bar" style="padding: 0;">
<input type="text" id="guestShareURL" value="" class="input-group-field" data-shareguesturl="" readonly="">
<span class="input-group-btn">
<button type="button" class="wishlist-btn hulkBtnStyle" data-copyguestshareurlbutton=""></button>
</span>
</form>
<form class="input-group search-bar" style="padding: 0;">
<input type="text" id="productShareURL" value="" class="input-group-field" data-productshareurl="" readonly="">
<span class="input-group-btn">
<button type="button" class="wishlist-btn hulkBtnStyle" data-copyproductshareurlbutton=""></button>
</span>
</form>
<form></form>
Text Content
Skip to content * Facebook * Instagram * Pinterest Explore the Finest Vintage Jewelry Collection at Prices You'll Love! Country/Region Canada (CAD $) * Canada (CAD $) Search * NEW ARRIVALS * DESIGNERS * JEWELRY * RINGS * WATCHES * IN HOUSE DESIGN * SELL WITH US Search Account Cart Bvlgari Watches 40 products Cartier Jewelry 356 products David Webb Jewelry 895 products Tiffany & Co. Jewelry 172 products Van Cleef & Arpels Jewelry 132 products * NEW ARRIVALS * DESIGNERS * TOP DESIGNERS * Bvlgari * Cartier * David Webb * Tiffany & Co. * Van Cleef & Arpels * DESIGNER INDEX A-C * Aldo Cipullo * Aletto Brothers * Angela Cummings * Asprey * Audemars Piguet * Bailey Banks & Biddle * Bert H. Satz * Boucheron * Buccellati * Bvlgari * Carrera Y Carrera * Cartier * Carvin French * Chanel * Chaumet * Chopard * DESIGNER INDEX D-J * David Webb * De Grisogono * Di Modolo * Franck Muller * Frascarolo * French * GRAFF * Gucci * H. Stern * Hammerman Brothers * Henry Dunay * Hermes * Hublot * Hueb * Jahan * Jean Vitau * Jose Hess * DESIGNER INDEX K-P * Kat Florence * Kieselstein-Cord * Kurt Wayne * Leon Mege * Louis Vuitton * Lucien Piccard * Marcus & Co. * Marina B. * Mauboussin * Mellerio dits Meller * Oscar Heyman * Panerai * Paul Flato * Patek Philippe * Piaget * Picchiotti * DESIGNER INDEX R-Z * Raymond C Yard * Renee Lewis * Roberto Coin * Roberto Legnazzi * Roger Dubuis * Rolex * Schumann Sons * Seaman Schepps * Tanagro * Tiffany & Co. * Trianon * Van Cleef & Arpels * Verdura * Vhernier * Wander France * William Ruser * JEWELRY * All Jewelry * Bracelets * Brooches & Pins * Cufflinks * Earrings * Fancy Yellow Jewelry * Jewelry Sets * Necklaces * Pearls * Pendants * Diamonds By The Yard * Rings * Studs * RINGS * All Rings * Designer & Estate * Vintage Engagement * Modern Engagement * Eternity Bands * Wedding Bands * Fancy Yellow Rings * WATCHES * Women's Watches * Men's Watches * IN HOUSE DESIGN * SELL WITH US * NEW ARRIVALS * DESIGNERS * TOP DESIGNERS * Bvlgari * Cartier * David Webb * Tiffany & Co. * Van Cleef & Arpels * DESIGNER INDEX A-C * Aldo Cipullo * Aletto Brothers * Angela Cummings * Asprey * Audemars Piguet * Bailey Banks & Biddle * Bert H. Satz * Boucheron * Buccellati * Bvlgari * Carrera Y Carrera * Cartier * Carvin French * Chanel * Chaumet * Chopard * DESIGNER INDEX D-J * David Webb * De Grisogono * Di Modolo * Franck Muller * Frascarolo * French * GRAFF * Gucci * H. Stern * Hammerman Brothers * Henry Dunay * Hermes * Hublot * Hueb * Jahan * Jean Vitau * Jose Hess * DESIGNER INDEX K-P * Kat Florence * Kieselstein-Cord * Kurt Wayne * Leon Mege * Louis Vuitton * Lucien Piccard * Marcus & Co. * Marina B. * Mauboussin * Mellerio dits Meller * Oscar Heyman * Panerai * Paul Flato * Patek Philippe * Piaget * Picchiotti * DESIGNER INDEX R-Z * Raymond C Yard * Renee Lewis * Roberto Coin * Roberto Legnazzi * Roger Dubuis * Rolex * Schumann Sons * Seaman Schepps * Tanagro * Tiffany & Co. * Trianon * Van Cleef & Arpels * Verdura * Vhernier * Wander France * William Ruser * JEWELRY * All Jewelry * Bracelets * Brooches & Pins * Cufflinks * Earrings * Fancy Yellow Jewelry * Jewelry Sets * Necklaces * Pearls * Pendants * Diamonds By The Yard * Rings * Studs * RINGS * All Rings * Designer & Estate * Vintage Engagement * Modern Engagement * Eternity Bands * Wedding Bands * Fancy Yellow Rings * WATCHES * Women's Watches * Men's Watches * IN HOUSE DESIGN * SELL WITH US Country/Region Canada (CAD $) * Canada (CAD $) * Facebook * Instagram * Pinterest Expertly Authenticated Free Click & Collect to US store 7 day - Free and easy returns Expertly Authenticated PREVIOUS NEW ARRIVALS NEXT View all New arrival Quick View 1.06 carat Round Diamond L Ring $4,555.00 New arrival Quick View David Webb 18K Yellow Gold 1970's Pave Set Diamond Cocktail Vintage Ring $24,906.00 New arrival Quick View Kieselstein Cord 18K Yellow Gold Citrine And Diamond Sunburst Necklace $50,808.00 New arrival Quick View Kieselstein Cord 18K Yellow Gold Sunburst Citrine Diamond Earrings $8,255.00 New arrival Quick View Bvlgari 18K Yellow Gold BB 33 DGG 33mm Diamond Dial Watch $26,757.00 New arrival Quick View David Webb Platinum & 18K Yellow Gold Pave Set Diamonds and Black Enamel Ring $23,056.00 New arrival Quick View Cartier Panthere 18K Yellow Gold Black Onyx Nose And Green Eyes Cuff Links $16,083.00 New arrival Quick View Cartier Agrafe 18K Yellow Gold Agrafe Clasp Necklace $21,206.00 New arrival Quick View Kieselstein Cord 18K Yellow Gold Alligator Cuff Bracelet $43,408.00 New arrival Quick View Cartier 18K Yellow Gold 1970's 1 Oz Ingot Bar Pendant $11,955.00 New arrival Quick View Platinum 40.00cttw Diamond And Sapphire Estate Panthere Bracelet $120,260.00 New arrival Quick View Platinum 26 Old European Cuts approx. 15 carats Necklace $39,708.00 Sold out New arrival Quick View Flower 14K White Gold 4.08 Carat Diamond Drop Dangle Earrings $11,955.00 Sold out New arrival Quick View David Webb Platinum & 18K Yellow Gold Cabochon Pear Shaped Lapis And Diamond Clip Earrings $39,708.00 New arrival Quick View Cartier Love 18K Yellow Gold Size 18 Bracelet $9,678.00 New arrival Quick View David Webb Platinum & 18K Yellow Gold Coral, Onyx, Turquoise Necklace $71,587.00 New arrival Quick View Van Cleef & Arpels 18K Yellow Gold Manchette Hammered Cuff Bracelet $126,665.00 New arrival Quick View David Webb Platinum & 18K Yellow Gold With Bark Finish Estate Step Ring $16,652.00 New arrival Quick View 14K White Gold Round And Baguette Diamond Brooch $9,678.00 New arrival Quick View Platinum Delicate Diamond Vintage Eternity Ring $570.00 Luxury Under 5k Our Story Panthere de Cartier Shop Cartier Schlumberger Collection Shop Tiffany & Co. PREVIOUS SHOP BY DESIGNER NEXT Cartier Jewelry Van Cleef & Arpels Jewelry Tiffany & Co. Jewelry David Webb Jewelry Bvlgari Jewelry Verdura Jewelry Chaumet Jewelry Rolex Watches Hermes Jewelry Our happy Customers Our happy Customers > The Marina B bracelet was as pretty as the picture. They have the best > selection of estate pieces. The whole process was perfect. Since this purchase > I am now a repeat customer! — Andrea Our happy Customers > Extremely happy with the necklace I bought for my wife. Beautifully packaged > and arrived quickly. Great customer service. Thanks! — Guilherme Our happy Customers > Purchased a vintage Cartier Panthere necklace and it's absolutely stunning! > Very rare piece. — Yen Previous Next FALL ESSENTIALS VINTAGE CHARMS Get in on the charm Craze and accessorize from our latest collection! Shop Charms CHUNKY CHAINS Elevate Your Fall Wardrobe with Chunky Chains. Shop Collection PIN IT! Brooches: Add some bling to your everyday look! Shop Brooches Free Delivery Visit Us 7 - Day Returns Authenticity Guaranteed Who we are We are collectors of Fine Vintage Jewelry and believe our curated pieces are timeless heirlooms that are meant to be worn, not in the vault! Contact Us: support@thebackvault.com +1 (833) 998-2858 * Facebook * Instagram * Pinterest Quick links * About * Contact Us * FAQ Navigation * Authenticity Guarantee * Order + Shipping * Returns * Sell with us * Blog Get on the List Join for exclusive offers and more! Email SUBSCRIBE American Express Apple Pay Diners Club Discover Meta Pay Google Pay Mastercard PayPal Shop Pay Venmo Visa * Create Account/ Sign In * Jewelry Care * Terms of Service * Privacy Policy Country/Region Canada (CAD $) * Canada (CAD $) © 2024 The Back Vault. All items are pre-owned. The trademarks featured belong to their respective brand owners. This advertisement is not endorsed or sponsored by any brand owner, nor does it imply any association or affiliation with The Back Vault. Your cart Close Checkout Close Your cart is empty Start shopping Your wishlist Please add product to your wishlist to see them here. Login to see your wishlist! * Select All * Move to cart * Delete Login Explore more products Add products Close My wishlist Please add product to your wishlist to see them here. Login to see your wishlist! * Select All * Move to cart * Delete Login Explore more products Add products Add to wishlist Choose your wishlist to be added * Create New wishlist * Save My Wishlist Save Share List Via Email Sender Name* Recipients Email* Subject* Message* SHARE WISHLIST -------------------------------------------------------------------------------- Or Share Via * * * * Subscribe and get alerts about your Wishlist We will notify you on events like Low stock, Restock, Price drop or general reminders so that you don’t miss the deal Subscribe Move to cart See Product Details Are you sure you want to delete this wishlist? Yes No Are you sure you want to delete selected wishlist products? Yes No Out of stock products will be not move. Are you want to move selected wishlist products? Yes Cancel Wishlist management page * This page allows you to manage and add wishlist items directly to the cart. * Share your public wishlist on social media, through links, and via custom email. * You can subscribe to get update about your wishlist items You have been unsubscribed You will no longer receive emails about wishlist activities from this store. Close Guest shopper You are currently shopping anonymously! Login to save your wishlist. Login Copy link to share SHARE THIS CREATION Or Share Via * * * * × OFFERLY SUPPORT Don't fret! This pop up only shows up in Shopify Editor Mode. Offerly could not find your add to cart button! This can happen for one of the following reasons: 1. This product is sold out. To solve this please navigate to a different product! 2. Your Theme is custom or uses different text for the "Add to Cart" button. If this is the case, please contact support and we will add support for your theme! Dismiss × Please wait... MAKE AN OFFER Name Email Phone Quantity Offer Message Send Offer Add to Cart SKU: My Wishlist 0