Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone
Chakra Thumb Worry Stone

Olivenorma Chakra Thumb Worry Stone

This stone is designed to fit comfortably in the palm of your hand, with a thumb-sized indentation that allows you to rub the smooth surface of the stone for comfort and relaxation.
Price
$0.00
$23.59
Save  $-23.59
material
Please select a material
Quantity

MADE OF REAL NATURAL CRYSTAL  

The best chakra worry stone combines all seven crystals in one worry stone, allowing you to stimulate each chakra for healing.

Amethyst helps cleanse, clear, and balance the Crown Chakras, allowing spiritual energy to flow to and from the human body and mind, and the spiritual realm.
Lapis Lazuli resonates strongly at the third eye chakra.When this chakra is balanced, we feel clear, focused, and can judge between truth and illusion.
Turquoise has the color of the throat chakra – the energetic center of the body that governs the movement of communication.Helps improve communication skills and ward off physical ailments such as a sore throat or a cold in the head
Amazonite stone soothes and revitalizes the heart chakra
Tiger Eye can help you open your solar plexus chakra, empowering you to take control and feel more at ease spiritually and physically.
Amber Glowing with a golden quality, Amber is a dab hand at helping cleanse and clear the sacral chakra. It encourages creative self-expression and the purification of one's own thoughts.
Red Jasper activates the Base Chakra and stimulates the rise of the energy throughout the chakras, cleansing and strengthening the aura

WHAT IS A WORRY STONE?

A worry stone is a small, smooth stone (often made from a crystal or gemstone) that is shaped like an oval and has a thumb-shaped indentation. The object of worry stones is to rub the thumbprint back and forth as a way to calm the mind. Much like how prayer beads are used, the action of rubbing a stone and holding positive thoughts and intentions can help deal with anxiety or aid in prayer or meditation.

WHAT ARE THE BENEFITS?

  • Stress and anxiety
  • Soothe the nervous system
  • Ease negative thinking
  • Clear the mind
  • Help keep you grounded

WHEN TO USE A WORRY STONE?

  1. When you're feeling stressed.
    This encompasses so many scenarios; big interview coming up? Getting ready for a date? Stressing about the state of the world? The sky's the limit with these stones. If you are going through a challenging transit, or periods of anxiety, you have access to it.
  2. While meditating.
    Another way to work with a worry stone is by incorporating it into your meditation practice. Similar to a mala used in Hinduism, which involves saying a mantra for each bead on the necklace, you can recite an affirmation or mantra every time you rub your stone. Or, for a less-involved approach, you can simply hold it in your palm as you meditate. It gives the mind something to do and can add to the relaxation benefits.
  3. Before bed.
    Stress and anxiousness have a knack for striking at the worst times—like when you're trying to fall asleep. Let all the worries of the day go by grabbing your worry stone before bed, Lyons suggests. You could even have one in the bath with you if that feels nice.
  4. On a walk.
    So often we think of meditation as being passive, but it can be a walk in nature—more of an active thing. Indeed, meditation doesn't come easy for all, but by turning an afternoon stroll into a moving meditation, with the added benefit of incorporating the worry stone, you'll get all the benefits of fresh air and movement, plus channel some stress while you're at it.
  5. During a difficult conversation.
    And lastly, if you struggle to keep your cool during arguments, that's another great opportunity to call on your worry stone. Reach for it when you feel tempers flaring, and give yourself a moment to gently rub the stone a few times and take a deep breath before you decide to speak.

SPECIFICATIONS

  • Category: Worry Stone
  • Genuine gemstones: Amethyst, Lapis Lazuli, Turquoise, Amazonite, Tiger Eye, Amber, Red Agate,
  • Size: 1.38''(L)*1.77''(H)
  • Since the size above is measured by hand, the size of the actual item you received could be slight different from the size above.

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.