SFS1006-GD12 EVERSTEIN Thermostatic Shower Faucet with Rough-in Valve Rainfall Shower System Ceiling Mounted with 6 Massage Body Jets and Handheld Sprayer

$554.00
Quantity
GUARANTEES!

Free delivery within the US
Sustainably made
Secure payments

Description

The EVERSTEIN Full-body Shower System is a high-quality, cUPC-certified product that provides users with a personalized and enjoyable shower experience. It features three functions that can be enabled simultaneously or independently according to user preference, an anti-scald thermostat valve, pressure balance showerhead valve, six adjustable body sprays, air pressure technology, extra-long stretchable metal hose, button diverter, easy installation, brushed nickel finish, corrosion resistance, durability, and a lifetime warranty.

Use All Functions At The Same time

Our full-body shower system comes with personalized button design, where each option is separately controlled. Users can enable three functions - the showerhead mode, body spray, and hand-held showerhead simultaneously or independently according to their preferred shower scene.

Prevention of water hammer & anti-scald thermostatic function

The anti-scald thermostat valve has two check valves, which effectively eliminate water hammer noise. The thermostatic rain shower system is equipped with a cUPC certified pressure balance showerhead valve made from brass to ensure quality and longevity, and prevent scalding due to sudden fluctuations in hot or cold water temperatures.

6 Pcs Body jets with Shut-off

Body spray shower system comes with adjustable spray face, Up, down, left, right rotation direction. Shower Body Spays with uniquely designed adjustable knobs that can be easily turned to control each body sprayer valve to adjust water pressure and flow.

High pressure & Saves water

The 12-inch ultra-thin shower head adopts air pressure boosting technology, which provides a strong water flow by increasing pressure and saves water up to 50%.

Flexible Hand Shower

With an extra-long 59-inch stretchable metal hose, this handheld spray allows you to clean specific areas that are hard to reach with an overhead rain shower, and you can use it to bathe children and pets or to clean the bathroom after a shower. Besides, the rain shower head with handheld spray comes with a silicone nozzle that wipes away mineral deposits with just a swipe of a finger.

Button diverter

EVERSTEIN has developed an improved water control mechanism that replaces the traditional square controller with a button diverter. This new mechanism ensures that users do not accidentally switch modes with slippery hands. Additionally, with the new button design, users can enable three shower modes - the showerhead mode, body spray, and hand-held showerhead - simultaneously in their preferred shower scene.

Easy installation

EVERSTEIN shower system is cUPC certified and complies with ASME A112.18.1-2018/CSA B125.1-18 standards. The design is for standard 1/2" American pipe connections and is approved by the California Energy Commission.

Anti-corrosion and anti-rust

Our product has a brushed nickel finish that is resistant to fingerprints, passing salt spray tests. It maintains its original shine even in damp bathroom environments. The brushed nickel provides a stylish modern appearance for bathrooms and walk-in showers and ensures corrosion resistance and durability.

100% satisfaction guarantee

We offer a lifetime warranty, and any product quality issues are eligible for free repair or replacement of the showerhead. EVERSTEIN always stands by every consumer. If you have any questions, please feel free to contact us, and we will reply within 24 hours.

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.