Citrus Love Bundle

House Of 925 | "Own It, Wear It, Boss It!"

🍊 The Citrus & Love Bundle: Real Leather Circular Purse & Heart Keyring 🍊

Add a splash of vibrant sunshine to your everyday accessories! We’ve matched two of our absolute best-sellers to bring you a coordinated, feel-good duo wrapped in the most delightful orange tones.

Crafted from beautiful, high-quality pebbled real leather, this bundle combines effortless organization with a pop of playful charm.

What’s included:

  • 🍊 The Circular Real Leather Coin Purse: A compact, chic round pouch in a rich tangerine orange. Designed with a smooth wrap-around zipper and a premium silver-toned clip, it’s perfect for safely tucking away your coins, keys, or lip balm.

  • 🧡 The Real Leather Heart Keyring: Made from matching textured leather in a softer coral-orange hue, this cute heart charm features durable white contrast stitching. It comes with a robust silver key ring and an easy-snap lobster clasp.

Why you’ll love it:

  • 100% Genuine Leather: Both pieces feel luxury-soft, durable, and built to last.

  • Mix & Match Versatility: Clip them together to elevate your favorite handbag, hook them onto your fave handbag, or keep your keys and coins separated.

  • Perfect Gift Idea: A bright, heartwarming gift for a friend (or a lovely little self-care treat!).

  • Bundle Deal: Beautifully coordinated aesthetic styling at an exclusive bundle price.

Brighten up your bag game and grab this juicy little duo before it's gone! 🛒✨

£10.00
£10.00

🍊 The Citrus & Love Bundle: Real Leather Circular Purse & Heart Keyring 🍊

Add a splash of vibrant sunshine to your everyday accessories! We’ve matched two of our absolute best-sellers to bring you a coordinated, feel-good duo wrapped in the most delightful orange tones.

Crafted from beautiful, high-quality pebbled real leather, this bundle combines effortless organization with a pop of playful charm.

What’s included:

  • 🍊 The Circular Real Leather Coin Purse: A compact, chic round pouch in a rich tangerine orange. Designed with a smooth wrap-around zipper and a premium silver-toned clip, it’s perfect for safely tucking away your coins, keys, or lip balm.

  • 🧡 The Real Leather Heart Keyring: Made from matching textured leather in a softer coral-orange hue, this cute heart charm features durable white contrast stitching. It comes with a robust silver key ring and an easy-snap lobster clasp.

Why you’ll love it:

  • 100% Genuine Leather: Both pieces feel luxury-soft, durable, and built to last.

  • Mix & Match Versatility: Clip them together to elevate your favorite handbag, hook them onto your fave handbag, or keep your keys and coins separated.

  • Perfect Gift Idea: A bright, heartwarming gift for a friend (or a lovely little self-care treat!).

  • Bundle Deal: Beautifully coordinated aesthetic styling at an exclusive bundle price.

Brighten up your bag game and grab this juicy little duo before it's gone! 🛒✨

Returns Policy

You may return most new, unopened items within 14 days of delivery for a full refund. We'll also pay the return shipping costs if the return is a result of our error (you received an incorrect or defective item, etc.).

You should expect to receive your refund within four weeks of giving your package to the return shipper, however, in many cases you will receive a refund more quickly. This time period includes the transit time for us to receive your return from the shipper (5 to 10 business days), the time it takes us to process your return once we receive it (3 to 5 business days), and the time it takes your bank to process our refund request (5 to 10 business days).

If you need to return an item, simply login to your account, view the order using the 'Complete Orders' link under the My Account menu and click the Return Item(s) button. We'll notify you via e-mail of your refund once we've received and processed the returned item.

Shipping

We can ship to virtually any address in the world. Note that there are restrictions on some products, and some products cannot be shipped to international destinations.

When you place an order, we will estimate shipping and delivery dates for you based on the availability of your items and the shipping options you choose. Depending on the shipping provider you choose, shipping date estimates may appear on the shipping quotes page.

Please also note that the shipping rates for many items we sell are weight-based. The weight of any such item can be found on its detail page. To reflect the policies of the shipping companies we use, all weights will be rounded up to the next full pound.

Recently Viewed Products

const selectVariantByClickingImage = { // Create variant images from productJson object _createVariantImage: function (product) { const variantImageObject = {}; product.variants.forEach((variant) => { if ( typeof variant.featured_image !== 'undefined' && variant.featured_image !== null ) { const variantImage = variant.featured_image.src .split('?')[0] .replace(/http(s)?:/, ''); variantImageObject[variantImage] = variantImageObject[variantImage] || {}; product.options.forEach((option, index) => { const optionValue = variant.options[index]; const optionKey = `option-${index}`; if ( typeof variantImageObject[variantImage][optionKey] === 'undefined' ) { variantImageObject[variantImage][optionKey] = optionValue; } else { const oldValue = variantImageObject[variantImage][optionKey]; if (oldValue !== null && oldValue !== optionValue) { variantImageObject[variantImage][optionKey] = null; } } }); } }); return variantImageObject; }, _updateVariant: function (event, id, product, variantImages) { const arrImage = event.target.src .split('?')[0] .replace(/http(s)?:/, '') .split('.'); const strExtention = arrImage.pop(); const strRemaining = arrImage.pop().replace(/_[a-zA-Z0-9@]+$/, ''); const strNewImage = `${arrImage.join('.')}.${strRemaining}.${strExtention}`; if (typeof variantImages[strNewImage] !== 'undefined') { product.variants.forEach((option, index) => { const optionValue = variantImages[strNewImage][`option-${index}`]; if (optionValue !== null && optionValue !== undefined) { const selects = document.querySelectorAll('#'+ id + ' [class*=single-option-selector]'); const options = selects[index].options; for (let option, n = 0; (option = options[n]); n += 1) { if (option.value === optionValue) { selects[index].selectedIndex = n; selects[index].dispatchEvent(new Event('change')); break; } } } }); } }, _selectVariant: function() { const productJson = document.querySelectorAll('[id^=ProductJson-'); if (productJson.length > 0) { productJson.forEach((product) => { const sectionId = product.id.replace("ProductJson-", "shopify-section-"); const thumbnails = document.querySelectorAll('#'+ sectionId + ' img[src*="/files/"]'); if (thumbnails.length > 1) { const productObject = JSON.parse(product.innerHTML); const variantImages = this._createVariantImage(productObject); // need to check variants > 1 if (productObject.variants.length > 1) { thumbnails.forEach((thumbnail) => { thumbnail.addEventListener('click', (e) => this._updateVariant(e, sectionId, productObject, variantImages), ); }); } } }); } }, }; if (document.readyState !== 'loading') { selectVariantByClickingImage._selectVariant(); } else { document.addEventListener( 'DOMContentLoaded', selectVariantByClickingImage._selectVariant(), ); }