Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
Dead Sea Sponge
1 / 9

Dead Sea Sponge

Title
Please select a title
Price
$16.70
$0.00

Quantity

Real Dead Sea Sponge

Includes 1 sponge, approx 3-4" in size.  As these are natural products and real Dead Sea Sponges, they will vary in size and shape

BEST

Better than Loofah's and absolutely better than a dirty rag that holds tons of bacteria and doesn't foam soap up well.

These all natural Sea Sponges are one of the best products for cleaning your body with. These are ethically and directly sourced from the sea, which makes them all natural Dead Sea Sponges and are NOT synthetic material.

They can be used for cleaning your home and car too!

WHY?

Sea sponges have top-notch exfoliating, circulation-boosting, radiance-enhancing abilities. Softly textured, they allow for gentle but effective removal of dead skin cells and dry, flaky patches to give you softer, smoother skin.

highly absorbent
create a luxurious lather
are exceptionally soft
do not retain orders
contain enzymes that inhibit mold and bacteria growth
last longer than synthetic sponges
are useful for all skin types, even sensitive skin
are hypoallergenic

MORE BENEFITS

The minerals contained in sea sponges nourish and benefit the skin. Calcium, magnesium, sodium, iron, zinc, and potassium are included, but not limited to these minerals. Sea sponges offer gentle exfoliation.

Many of these natural products from sponges have shown a wide range of pharmacological activities such as anticancer, antifungal, antiviral, anthelmintic, antiprotozoal, anti-inflammatory, immunosuppressive, neurosuppressive, and antifouling activities.

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1726694338796').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);