Aiuta a purificare l'acqua della doccia per essere più delicata su capelli, pelle e unghie
Filtrato con un alta concentrazione di 86% di KDF-55 (noto per le sue proprietà purificanti, alias il miglior amico dell'acqua pulita) che agisce con solfito di calcio per aiutare a ridurre cloro e impurità
Non compromette la pressione dell'acqua della doccia esistente**, quindi puoi continuare a goderti il tuo rituale di lavaggio
Progettato per collegarsi alla maggior parte dei tubi doccia standard US da ½” (1,27 cm) per l'uso con soffioni fissi, a pioggia e portatili.* *Per i clienti al di fuori degli Stati Uniti potrebbe essere necessario un adattatore.
Aiuta a neutralizzare gli odori e bilanciare i livelli di pH dell'acqua*, il che può favorire capelli e pelle più sani
Trasforma la tua doccia in una vera esperienza spa
Design facile da installare, a rotazione con cartuccia filtro senza complicazioni (nessun bisogno dell'idraulico!)
Include tutto il necessario per l’installazione: un filtro, una cartuccia, chiave inglese e nastro da idraulico
Per un’installazione sicura, assicurati che la tua doccia possa sostenere fino a 15 lb (6,8 kg).
*I risultati possono variare in base alla concentrazione di contaminanti e alle condizioni specifiche dell'acqua
**Soggetto a variazioni in base alla pressione iniziale dell'acqua
FASE 1. Svita il soffione della doccia per rimuoverlo dal tubo della doccia.
FASE 2. Avvolgi il nastro da idraulico incluso intorno ai filetti del tubo della doccia, quindi installa il filtro avvitandolo al tubo. Usa la chiave inglese in dotazione per una maggiore forza!
FASE 3. Riavvita il soffione della doccia fissandolo saldamente all'estremità del filtro.
FASE 4. Una volta riattaccato, fai scorrere l’acqua per almeno un minuto per attivare il nuovo filtro ed eliminare eventuali bolle d’aria per un flusso uniforme.
Consiglio pro: Per mantenere un'esperienza doccia ottimale, cambia la cartuccia del filtro ogni 3 mesi.*
*La capacità può variare in base alle condizioni locali dell'acqua
Il nostro filtro doccia è progettato per adattarsi alla maggior parte dei filetti per tubi doccia standard da ½” ed è compatibile con soffioni fissi, a pioggia e portatili.
{
discount_percentage = $event.detail?.percentage || 0;
})"
x-init="$watch('selected', value => {
if (value.length != total_items) {
discount_percentage = 0;
}else{
discount_percentage = 0;
}
})"
x-data="{
renderPrice(price){
let total = price;
if(this.discount_percentage > 0){
total = price - (price * (this.discount_percentage / 100));
}
return Unick.formatMoney(total);
},
selected: [],
fixed_product: false,
discount_percentage: 0,
total_items: 2,
imgSrc(src, width) {
if (!src) return '';
if (/[?&]width=/.test(src)) return src.replace(/([?&]width=)\d+/, '$1' + width);
return src + (src.includes('?') ? '&' : '?') + 'width=' + width;
},
getSrcset(src) {
if (!src) return '';
return [72, 100, 144, 200].map(w => this.imgSrc(src, w) + ' ' + w + 'w').join(', ');
},
add(item) {
this.selected.push(item)
},
remove(id) {
this.selected = this.selected.filter(item => item.id !== id)
},
isInBundle(id) {
return this.selected.some(item => item.id === id)
},
priceBeforeDiscount(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
return total;
},
totalPrice(){
let total = 0;
this.selected.forEach(function (item) {
total += item.price;
})
total = total - (total * (this.discount_percentage / 100));
let extraDiscount = 0;
let discount = 0;
this.selected.forEach(function (item) {
item.tags.forEach(function (tag) {
if(tag.includes('discount:') || tag.includes('Discount:') || tag.includes('discount: ') || tag.includes('Discount: ')){
discount = tag.split(':')[1];
}
})
})
if(discount > 0){
extraDiscount = total * (discount / 100);
}
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `La cartuccia di ricarica del filtro doccia`;
let bundleHandle = `the-shower-filter-refill-cartridge`;
let bundleCount = 2;
let bundleQty = 1;
let index = 0;
// Update button text to 'adding...'
this.$refs.addToCartButton.textContent = 'Adding...';
this.selected.forEach(function (item) {
cartObj.push({
quantity: 1,
id: item.variants[0].id,
properties: {
'_fbt_bundle': bundleTitle,
'_fbt_bundle_handle': bundleHandle,
'_fbt_bundle_count': bundleCount,
}
})
})
if(this.fixed_product && this.total_items == this.selected.length){
cartObj = [];
cartObj.push({
quantity: 1,
id: this.fixed_product,
})
}
fetch(routes.cart_add_url + '.js', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
items: cartObj
})
})
.then(response => {
// Update button text back to 'add to cart'
this.$refs.addToCartButton.textContent = 'Add to cart';
// Update cart with event dispatch
this.$dispatch('update-cart', { cart: response });
// Open cart after adding product
this.$dispatch('toggle-cart-drawer');
});
}
}">
Acquistati spesso insieme
+
Total price:
Il filtro doccia - Cromo
€47,95
€47,95
La cartuccia di ricarica del filtro doccia
€23,95
€23,95
Registratevi per ricevere una notifica quando questo articolo sarà di nuovo disponibile.
Inserire un indirizzo e-mail valido.
Grazie per esserti iscritto/a! Ti invieremo un'e-mail quando il prodotto sarà disponibile.
{
let mainAddToCart = document.querySelector('.product__info-wrapper .button-add-to-cart, .product__info-wrapper .product-form__submit');
if(mainAddToCart) {
let rect = mainAddToCart.getBoundingClientRect();
// Hide floating cart when main button is visible (with some buffer)
show = rect.top > window.innerHeight || rect.bottom < 0;
} else {
// If main button not found, show floating cart
show = true;
}
})"
x-init="$nextTick(() => {
// Delay initialization to ensure Alpine has rendered the main add-to-cart button
setTimeout(() => {
let mainAddToCart = document.querySelector('.product__info-wrapper .button-add-to-cart, .product__info-wrapper .product-form__submit');
if(mainAddToCart) {
let rect = mainAddToCart.getBoundingClientRect();
show = rect.top > window.innerHeight || rect.bottom < 0;
} else {
// Fallback: show sticky cart if main button not found after delay
show = true;
}
}, 500);
})"
class="add-to-cart-footer p-3 bg-white text-black fixed bottom-0 w-full z-20 shadow border-t">
4 motivi per cui milioni di donne stanno passando al filtro doccia di Kitsch
1. Facilità di installazione
Non è necessario chiamare l'idraulico. Abbiamo incluso tutto il necessario per installare il filtro. In pochi semplici passaggi, potrete migliorare la vostra doccia e iniziare la vostra routine in modo pulito. Quando sarà il momento di cambiare il filtro, basterà estrarre quello vecchio, inserire la nuova cartuccia filtrante e il gioco è fatto.
2. Purificazione istantanea
Il sistema filtra l'acqua della doccia con un'elevata concentrazione di KDF-55 e solfito di calcio. Insieme, questi elementi contribuiscono a rimuovere il cloro e le impurità e a bilanciare i livelli di pH dell'acqua* senza compromettere la pressione dell'acqua**.
3. Capelli e pelle più sani
Riduce i metalli pesanti, le incrostazioni, i batteri e le alghe, rendendo l'acqua più delicata per i capelli e la pelle.
4. Risparmiare sulla cura di sé
Il bello del nostro nuovo filtro doccia? L'abbiamo progettato per essere compatibile con la maggior parte dei tipi di soffioni doccia, come quelli fissi, a pioggia e a mano, in modo da poterlo utilizzare con il soffione che già possedete.
After using this... My hair feels healthier, My skin feels healthier, My skin is less irritated, My hair texture improved, My hair feels softer
Rated 5 out of 5 stars
3 months ago
Showers perfected!
This shower filter gives me peace of mind -I’m protecting my hair and skin from hard water chemicals! Repurchased and perfect size for my hand held shower head. Doesn’t leak as well.
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
BD
Brittany D.
Verified Buyer
I recommend this product
After using this... My hair feels healthier, My skin feels healthier, My hair feels softer
Rated 5 out of 5 stars
7 months ago
Works great
I have very mineral rich well water that turns my shower floor red from all the iron in the water. This filter system stops that. I no longer have the film of junk lingering on my hair and skin. This filter leaves my hair and skin soft and healthy ✨️
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
CC
Chloe C.
Verified Buyer
I recommend this product
After using this... My hair feels healthier, My skin feels healthier, My skin is less irritated
Rated 5 out of 5 stars
1 year ago
Reliable and Worth Repeating
This is my second time purchasing this shower filter refill, and I’ll definitely be buying more in the future. It works really well and makes a noticeable difference in the water quality. Super easy to replace and totally worth it!
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
BW
Brenda W. P.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
4 months ago
Great Filter
I have been using the filter for several months. I have well water, and it amazes me how well the filter works. I can always tell when it is time to change the filter (3-4 months) because a blue-green tint reappears in the shower. Great investment!
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
EM
Elisa M.
Verified Buyer
I recommend this product
After using this... My hair feels healthier, My hair texture improved, My hair feels softer, My skin feels healthier, My skin is less irritated
Rated 5 out of 5 stars
10 months ago
I love my shower filter🤍
Best light and transparent water, best shipping as well
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
JC
Janice C.
Verified Buyer
I recommend this product
After using this... My skin feels healthier, My hair feels healthier, My hair texture improved, My hair feels softer
Rated 5 out of 5 stars
10 months ago
I can feel the difference
The first time I showered after installing the filter I could feel the difference in the water! I’m very happy with this product and will be ordering refills in the future as needed.
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
KP
Kristen P.
Verified Buyer
I recommend this product
After using this... My hair feels healthier, My hair texture improved, My skin feels healthier, My hair feels softer, My skin is less irritated
Rated 5 out of 5 stars
1 year ago
Easy To Use!
This is my first ever shower filter I've purchased. I was hesitant as first before buying, but it turned out to be really easy to install and water feels great on my skin!
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
AP
ALICE P.
Verified Buyer
I recommend this product
After using this... My hair feels healthier, My hair texture improved, My skin feels healthier, My hair feels softer, My skin is less irritated
Rated 5 out of 5 stars
1 year ago
Very helpful with poor water quality
So thankful for the shower filter. We have terrible water here and the filter has made an amazing difference in the hard to remove shower scum as well as on our skin. We are no longer smelling a strong chlorine smell after showering. I would put a filter on every sink and tub faucet if I could.
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
C
coral
I recommend this product
After using this... My hair feels healthier, My skin feels healthier, My skin is less irritated, My hair texture improved, My hair feels softer
Rated 5 out of 5 stars
1 year ago
SHOWER!!
yes I have the shower head! Iove it!! I used to keep a jug of filtered water by the shower. it was cold an awkward. this is wonderful!! and don't get me started on the shampoo. it's all! wonderful!
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
JS
Jordin S.
Verified Buyer
I recommend this product
After using this... My hair feels healthier, My skin feels healthier, My hair feels softer
Rated 5 out of 5 stars
1 year ago
Easy affordable filter
If you are thinking about finally jumping on the water filter train, this one is an easy and affordable option and works pretty well. Will probably buy a second
Ease of InstallRated 1.0 on a scale of 1 to 5
Super Easy Hard
Loading...
Loading...
Frequently Asked Questions
FASE 1: Ruotare il soffione per rimuoverlo dal tubo della doccia.
FASE 2: avvolgere il nastro adesivo in dotazione intorno al tubo della doccia, quindi installare il filtro doccia ruotandolo sul tubo della doccia. Utilizzare la chiave in dotazione per un maggiore olio di gomito!
FASE 3: riattaccare il soffione della doccia avvitandolo saldamente all'estremità del filtro doccia.
FASE 4: Far scorrere l'acqua per almeno un minuto per attivare il filtro ed eliminare le bolle d'aria per un flusso continuo.
Suggerimento: per mantenere la vostra esperienza di doccia elevata, cambiate le cartucce del filtro ogni 3 mesi.
Per sapere se l'acqua è dura basta lavarsi le mani. Se l'acqua è dura, dopo il lavaggio con il sapone rimangono dei residui sulle mani. I residui si formano perché il sapone reagisce con il calcio formando una pellicola vischiosa, nota come “schiuma di sapone”.
Fin dalla prima doccia, il nostro filtro si mette al lavoro per rimuovere impurità, cloro e altri contaminanti, in modo che possiate vedere e sentire i miglioramenti nei vostri capelli, nella vostra pelle e nel benessere di tutto il corpo. I risultati possono variare, ma è possibile che si inizino a notare benefici di bellezza a 360°, come una pelle più pulita, meno irritazioni del cuoio capelluto e capelli più idratati.
Sì, funziona su tutti i tipi di doccia, comprese quelle fisse, a pioggia, combinate, doppie e portatili. Non richiede attrezzi.
Si consiglia di sostituire il filtro ogni 3 mesi. Se volete mantenere i benefici di bellezza che avete riscontrato, come una pelle più calma, un cuoio capelluto lenito e capelli più sani, è fondamentale sostituire il filtro ogni 3 mesi*.
No, abbiamo progettato il filtro doccia in modo che non abbia alcun impatto sulla pressione dell'acqua attuale.
Si consiglia di sostituire il filtro ogni 3 mesi. Se volete mantenere i benefici di bellezza che avete riscontrato, come una pelle più calma, un cuoio capelluto lenito e capelli più sani, è fondamentale sostituire il filtro ogni 3 mesi*.
Il filtro doccia pesa 360 grammi
È possibile utilizzare il filtro per doccia Kitsch a condizione che il soffione della doccia abbia una filettatura standard da 1,27cm.
Il soffione che verrà utilizzato deve avere una capacità di peso massima di 6,8 kg
Politica dei prezzi
Prezzo di confronto
Il prezzo di confronto rappresenta il prezzo al quale il prodotto era precedentemente offerto o il prezzo di mercato stimato per articoli comparabili venduti altrove. Poiché i prezzi possono variare frequentemente, non possiamo garantire che il prezzo di confronto rifletta il prezzo di mercato corrente in un determinato momento.
Scegliendo una selezione si ottiene un aggiornamento completo della pagina.