Feiner Sprühnebel verteilt das Produkt gleichmäßig und sanft
Ideal zum Auffrischen von Locken und Wellen am zweiten Tag oder zum Plopping
Vielseitig einsetzbar und nachfüllbar mit leichten Flüssigkeiten wie Tonern und alkoholhaltigen Lösungen. *Verwenden Sie keine dickflüssigen oder öligen Produkte in diesem Sprühgerät.
Kompaktes Design sorgt für einfache Handhabung ohne Wasserverunreinigungen durch längeren Gebrauch.
Perfekt zum Stylen der Haare.
Hergestellt aus recycelten Materialien.
Befülle die Dauersprühflasche mit Wasser, Leave-in-Conditioner, einer verdünnten Produktmischung oder einer beliebigen Flüssigkeit, die du gleichmäßig aufsprühen möchtest. Betätige den Hebel mehrmals, um Druck aufzubauen, und halte ihn dann gedrückt, um einen kontinuierlichen, feinen Sprühnebel zu erzeugen. Ideal zum Befeuchten der Haare vor dem Styling, zum Auffrischen von Locken zwischen den Waschtagen, zum gleichmäßigen Verteilen von Produkten oder zum Fixieren von Make-up. Spüle die Flasche zwischen den Anwendungen aus und lasse sie trocknen, wenn du das Produkt wechselst.
{
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: 3,
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;
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Dauersprühflasche - Schwarz`;
let bundleHandle = `dauerspruhflasche-schwarz`;
let bundleCount = 3;
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');
});
}
}">
Häufig zusammen gekauft
+
Total price:
Dauersprühflasche - Schwarz
$ 280.00
$ 280.00
Dauersprühflasche - Terrakotta
$ 280.00
$ 280.00
Dauersprühflasche - Weiß
$ 280.00
$ 280.00
{
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: 3,
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;
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Dauersprühflasche - Schwarz`;
let bundleHandle = `dauerspruhflasche-schwarz`;
let bundleCount = 3;
let bundleQty = 1;
let index = 0;
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 => {
this.$refs.addToCartButton.textContent = 'Auswahl in den Warenkorb legen';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Registrieren Sie sich, um eine Benachrichtigung zu erhalten, wenn dieser Artikel wieder auf Lager ist.
Bitte geben Sie eine gültige E-Mail Adresse ein.
Danke für die Anmeldung! Wir schicken Ihnen eine E-Mail, sobald das Produkt wieder verfügbar ist.
{
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">
Fantastic Spray Bottle With Multiple Ways to Use It!
This pretty spray bottle has multiple uses. You can use it to re-set your wavy/curly hair in the morning. You can use it to hydrate your face before adding moisturizer. You can use it to cool off while outside on a hot day. You can even use it to water your plants. I love my new terracotta continuous spray bottle. I've used it everyday for all the above and more. I'm sure I will find even more ways to use it. It's a beautiful color, pretty to look at, and a must to have for every day beauty care.
SM
Stacey M.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love the Continuous mist!!!
Just what I was looking for !!! Finally, a spray bottle that has a continuous mist instead of having to pump, pump, pump and ending up with my hair too wet. This is perfect for refreshing your curls or waves and the mist is just right for that little bit of dampness when using the heatless curlers. The bottle is very easy to hold and did I mention it sprays just the right amount to get that fine mist without soaking your hair ?
GN
Gemma N.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love this!!
This has been great for when I want to do heatless curls after my hair has dried, or attempt french braids in my daughter hair. It wets the hair just enough. I also add a few sprays of their leave in conditioner into the water too. Just remember to empty the bottle of water when you're done and spray until nothing comes out. If you leave any water in it, it can end up smelling a bit stagnant when you use it. But if you dry it out, no problem at all
JN
Janice N.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Time saver
I should have bought this a long time ago. Wow! What a time saver. You wouldn’t thing a simple spray bottle would make much a a difference… but Wow. I am addicted to Kitsch products.
ML
Megan L.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love it
Perfect size bottle, not too big, annd I love that it is clear so I can see how much water is in there or if it needs to be cleaned. The fine mist that comes out does an excellent job rehydrating my curls on non wash days. 10/10
MV
Mayra V.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
12 months ago
10/10 spray bottle!
I bought two of these for my daughter and one for myself. The quality is great, and the continuous spray works perfectly!
DH
Donna H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
One of my favorite accessories from Kitsch
I use my trusty spray bottle every hair-wash day. It works like a charm and the mist is exactly what my curly hair needs to reactivate curls. Just bought one for my daughter's birthday at the end of this month and I know she's going to love it as much as I do!
BD
Béatrice D.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Perfect for moistening hair before styling in the morning and removing creases at night.
Diffusion in a light and continuous mist in a nice spray bottle. Perfect for moistening hair before styling in the morning and removing creases at night regardless of hair texture or density. Very happy with my purchase;)
Translated from French
ET
Erin T.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
kitsch never disappoints
I filled my spray bottle with witch hazel for a quick refreshing spritz during the day and have been loving it!
TF
Theresa F.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love this hair sprayer!
I got this a free item on my rewards list, but it’s totally worth paying for. I use it for my son’s hair that is very bunched up every morning, and with the way the spray mists and keeps flowing out of this bottle it takes no time. He use to fight me now his hair went from 15, to 8 minutes. So this product is definitely worth getting.
Loading...
Loading...
Frequently Asked Questions
Wasser, Leave-in-Conditioner, verdünnte Stylingprodukte, Gesichtswasser oder jede für Haut und Haar sichere Flüssigkeit. Vermeide dickflüssige, unverdünnte Produkte, die die Düse verstopfen könnten.
Betätige den Hebel mehrmals, um Druck in der Flasche aufzubauen, und halte ihn dann gedrückt, um einen gleichmäßigen, kontinuierlichen feinen Sprühnebel zu erhalten. Sobald der Druck aufgebaut ist, musst du nicht mehr weiter pumpen.
Ja – die kompakte Größe eignet sich hervorragend für die Sporttasche, das Reiseset oder für deinen Frisiertisch.
Spüle sie regelmäßig mit warmem Wasser aus, besonders wenn du das Produkt wechselst. Nimm die Düse ab und lasse Wasser durchlaufen, um eventuelle Rückstände zu entfernen.
Ja – befülle sie mit Gesichtswasser, Rosenwasser oder einem feuchtigkeitsspendenden Spray für einen erfrischenden Kick in deiner Hautpflegeroutine.
Der Vergleichspreis entspricht dem Preis, zu dem das Produkt zuvor angeboten wurde, oder dem geschätzten Marktpreis vergleichbarer Artikel bei anderen Anbietern. Da Preise häufig schwanken, können wir nicht garantieren, dass der Vergleichspreis zu einem bestimmten Zeitpunkt dem aktuellen Marktpreis entspricht.
Wenn du dich für eine Auswahl entscheidest, wird die Seite komplett aktualisiert.