Diamond Crystal Gear Ring

$39.99
$79.99
-$40.00
Color:  Gold
Size:  6#
Quantity

Description

  • ✅Find yourself constantly playing with your wedding band or other rings? Perhaps its time to grab a Gear Ring to fool around with.
  • ✅This intriguing ring features six micro-precision gears scattered around the outside which allow the outer rims to spin independently of the ring itself. Great for watchmakers, engineers, and tinkerers alike.


Some say it's mesmerizing. Others say it's therapeutic. A few bold souls claim it's the best ring ever made.

  • ✅The Gear Ring is a fashion accessory, gadget, and toy all in one. You may get addicted. But hey.. a little spinning never hurt anyone.
  • ✅Get a Gear Ring in gunmetal or rose gold. Or be a super and collect all. Complex enough to play with, yet simple enough to wear.
  • ✅The Gear Ring is made from high-quality copper-gold alloy. It features micro-precision gears that turn when the outer rims are spun.


Available in 2 Styles

✅Main gem in gear: with 6 main gemstones on the gear only.
✅Full of diamonds: In addition to the 6 main gemstones on the gears, the entire band is set with 246 small diamonds.

Details

Material

  • Made of copper-gold alloy / titanium-platinum alloy.
  • Gold-filled (hypoallergenic).
    14K Gold fill is a pressure-bonded layer of gold that has 100 times more gold than plated jewelry. It is durable, won't chip or flake is tarnish-resistant, and is a great alternative to "karat" gold that is reasonably priced. Looks great and if taken care of should last for many years.

  • Gem: Artificial Diamonds.
  • Lab-Created: Yes.
    The term "lab-created" refers to synthetic gems that have the chemical and physical properties of natural gems but are manufactured in a laboratory instead of naturally formed and mined.
     

Measurement

  • Width: 9mm.


 

How do I care for my Gear Ring?

If your Gear Ring needs a cleaning, we recommend soaking it in warm soapy water for at least an hour and wiping it dry with a soft cloth or paper towel. Do not use any harsh abrasives or household chemicals that may damage its natural protective coat. Certain grainy materials (such as sand) may clog the gears, making the ring difficult to spin. Do not try to oil or lubricate the ring. Do not try to dismantle or modify the construction of the ring in any manner as it may make it impossible to repair. Contact us should the need arise. Take caution and do not wear while working with any machinery, equipment, or hazardous substance.

SIZE CHART

Find your ring size with our international size guide. Our sizes match standard PH/USA/UK/CAN/AUsizes.
If you are a half size, we recommend ordering the next whole size up (one half-size larger).

SHIPPING

Most of our products are hand-made and customized. As a result, please allow 3-7 working days for order processing. Below is our shipping details:

  • By airplane: 7~14 working days.(Because of the pure handmade, the number is limited, thank you for your understanding!)

Due to increased COVID-19 restrictions, we expect that some orders may take longer than usual. We are working hard to reduce delays across our delivery network and we apologize for any inconvenience you may experience. Once your order is dispatched, you will receive a shipping update on your phone or email. 

RETURN & EXCHANGE

All returns and exchanges due to change of mind are subjected to a 14-day return. Please refer to our for more details.

CUSTOMER SERVICE

support@hh160.com

 WORLDWIDE SHIPPING

Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.