Erziele meerjungfrauenwürdige Beach-Wellen mit einem Hauch Glanz—kein Crunch, nur fühlbare Textur.
Angereichert mit Rosmarin, Biotin und Magnesium zur Stärkung und Hydratation des Haares
Amaze® SP-Polymer bekämpft Frizz und Feuchtigkeit für den ganzen Tag Volumen und Sprungkraft
Leichtes Spray, das natürliche Wellen und Locken verstärkt mit nur wenigen Sprühstößen
Pflanzenbasierter Polymer versiegelt das Haar und verleiht Glanz ohne Rückstände
Angereichert mit unserem charakteristischen Duft aus süßem Lavendel und Rosmarin
Vegan, tierversuchsfrei und Leaping Bunny-zertifiziert
Frei von Parabenen, Phthalaten, Silikonen und Sulfaten
Leicht auf feuchtes oder trockenes Haar von der Mitte bis zu den Spitzen sprühen. Mit den Händen einkneten und an der Luft trocknen lassen für natürliche Beach-Waves.
Profi-Tipp: Vor dem Auftragen das nasse Haar mit Kitsch Moisturizing Argan Milk Leave-In Conditioner besprühen für zusätzliche Feuchtigkeit und Pflege.
Rosmarin-Extrakt
Rosmarinextrakt hilft, Ihr Haar zu unterstützen, beginnend an der Kopfhaut, indem er die Durchblutung fördert, die Haarfollikel nährt und Reizungen lindert, um stärkeres, längeres, weicheres Haar zu fördern.
Biotin
Verstärke dein Haarpflege-Ritual mit Biotin, um stärkeres, dicker aussehendes Haar mit einem seidigen, frizzfreien Glanz zu fördern.
Magnesium
Magnesium spielt eine Rolle bei der Unterstützung der allgemeinen Haargesundheit, indem es zu einer gesunden Follikelfunktion beiträgt. Es kann helfen, die Kalziumablagerungen auf der Kopfhaut zu regulieren, die das Haarwachstum beeinträchtigen können, und unterstützt die Fähigkeit des Körpers, Proteine zu synthetisieren, die für starke, gesunde Strähnen benötigt werden.
Amaze®️ SP
AmazeSP ist ein Polymer auf pflanzlicher Basis, das aus nachhaltigen Quellen gewonnen wird. Es wurde klinisch nachgewiesen, dass es hilft, die Haarkutikula zu versiegeln und so zu einem glatteren und glänzenderen Aussehen beiträgt. Der Inhaltsstoff unterstützt auch die Haltbarkeit der Frisur unter feuchten Bedingungen und kann helfen, Frizz zu reduzieren, Volumen zu verleihen und einen leichten, flexiblen Halt zu bieten.
Wir sind Leaping Bunny zertifiziert! Das Leaping Bunny-Logo ist das einzige international anerkannte Symbol, das den Verbrauchern garantiert, dass bei der Entwicklung eines Produkts, das dieses Logo trägt, keine neuen Tierversuche durchgeführt wurden.
{
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: 4,
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 = `Texturierendes Meersalzspray`;
let bundleHandle = `texturizing-sea-salt-spray`;
let bundleCount = 4;
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:
Texturierendes Meersalzspray
$18.00$18.00
Hitzeschutzspray
$19.00$19.00
Feuchtigkeitsspendender Leave-In-Conditioner mit Arganmilch
$15.00$15.00
Humidity Blocking Frizz Shield Spray
$26.00$26.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: 4,
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 = `Texturierendes Meersalzspray`;
let bundleHandle = `texturizing-sea-salt-spray`;
let bundleCount = 4;
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');
});
}
}">
Häufig zusammen gekauft
Texturierendes Meersalzspray
$18.00$18.00
+
Hitzeschutzspray
$19.00$19.00
+
Feuchtigkeitsspendender Leave-In-Conditioner mit Arganmilch
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">
I was able to test the Kitsch sea salt spray. I had never used a sea salt spray before, but i am always looking for ways to give my thin curly hair volume. I used it at the front of my hairline for added texture and volume for my front poof! I loved it it gave nice volume and the Bobby pins held well all day. My hair ends are very damaged, and i found the spray gave the ends of y hair a weird feel, but after a regular shampoo and condition, they were back to normal.
E
Erin
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Styling product I can feel good about!
I absolutely loved this spray! And it will definitely go on reorder again and again.
I stopped using any styling products and hair spray after switching to Kitsch. I was so happy when this came out. It definitely helped my natural curls stay defined longer. It didn't leave my hair feeling stiff or crunchy. It washed out cleanly without feeling like there was residue left in my hair. The smell was wonderful and light - not too strong.
M
Mel
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Just what I’ve been looking for!
I recently got my long locks chopped and unfortunately turned out to be a really disastrous situation. The hairdresser botched the cut and now I’m very impatiently waiting for it to grow back.
I don’t usually use styling products but I’m now forced to. Luckily kitsch gets me and created this magic mist of perfection! I have straight think hair and wanted some volume without the crunch or stick of hair products (paste/ spray/putty/gel). Also wanted something safe to use in my hair for daily use without damaging my short strands!
This smells amazing, feels great in my hair and created waves I never knew I had! My hair feels soft and subtle… hydrated and frizz free! Can’t go wrong with kitsch! Love love love !!! Keep in mind that the photos I’ve posted attached to this review were taken on a hair wash day … so my roots look a little oilier than they should look. That’s not the from the product.. just me being lazy lol!
TM
Taylor M.
Verified Buyer
I recommend this product
Rated 4 out of 5 stars
1 year ago
Really enhances natural waves!
This really helped to enhance my naturally wavy hair! Pros:
•Smells amazing-it has a strong lavender smell in the bottle, but once it’s sprayed on it doesn’t smell as strong and it’s really pleasant!
• Scent lasts perfect amount of time-sometimes I can get headaches from strong scents but this didn’t give me one at all and the scent lasts throughout the day
• really held my waves all day long! They didn’t budge or relax at all, it was amazing!
• tamed some frizz- helped with frizz, but not as much as a leave in would. But I didn’t try using them together, so maybe if I did that it would tame the frizz even better
Cons:
• hair felt a bit tangled-it was tough to brush out at the end of the day, not sure if I should have wet my hair, then brushed it out, but just brushing it dry was challenging.
• hair felt a bit drier than if I didn’t put the spray in, but I think that’s the point of being able to keep the hold for the waves/curls.
Overall:
Would recommend and would purchase again!
CC
Clare C.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
What?! OMG it's amazing
I'll start by saying this is the 1476th time (not literally) I have purchased a texturizing sea salt spray. They never work for me, cheap ones, expensive ones, nada. I really wasn't going to try this, but decided I have literally loved all of my purchases from Kitsch so far, what the heck?
I bought it, received it, and it sat in my bathroom for weeks. Finally tried it and wow. Whose hair was that on my head?! I wish I had taken a photo, but my hair had these beautiful curly waves, curlier than I anticipated, it smelled amazing, and lasted all day!
SS
Sydney S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Solid texturizing spray with a lovely scent
I have long hair that I typically wear braided. I love a good texturizing spray to help the braid hold. I love Kitsch and haven't found a product I don't like so I was excited to try out the texturizing spray. It has the same scent at the biotin and rosemary hair bars (so a lavender scent) that I really enjoy and don't find overpowering. The spray gives my hair the texture it needs to stay in the braid without making it feel sticky. Looks like another wonderful product from Kitsch to add to my collection!
M
Michelle
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Replaced my favorite texturizing spray
I have fine hair that curls and needs a little support. This perfectly defines my curls without weighing them down. I like that this makes my curls last even after a few days. I have many allergies and are autoimmune. I have no issues with being irritated as I would my last product. 10/10!
DR
Delgado R.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
11 months ago
Game changer
I've tried so many products for my soft curl hair. This product leaves my hair textured with my soft curls enhanced. I can run my fingers through my hair again!
DG
Debbie G.
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love this stuff!
I wasn't sure about this spray when I first received it. It only took me a couple of uses to realize how great this is. Down here we get plenty of humidity , and this helps keep the frizz away, but does not weigh down the hair at all. The smell is awesome & I love that it protects my hair from heat & styling.
S
Sofi
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Best texturizing product, smells very good.
I applied on moist hair and then use the hair dryer, my hair is straight but it have some soft waves and volume. I have the Dyson air wrap and it somehow helped the curls to stay on and gave them volume.
On top of that has a strong scent to lavender, which I personally love!
10000% recommend to try this product.
Loading...
Loading...
Frequently Asked Questions
Nein! Das ist kein gewöhnliches Salzspray. Unsere nicht austrocknende Formel mit Biotin, Rosmarin und Magnesium spendet Feuchtigkeit, stärkt das Haar und verleiht ihm die perfekte, windgepeitschte Textur.
Ja, ja und ja. Egal, ob Sie von Natur aus glattes, welliges oder lockiges Haar haben, dieses Spray verbessert die Textur und verleiht Ihnen einen zerzausten Strandlook – ganz ohne Lockenstab.
Auf das feuchte oder trockene Haar sprühen, kneten, eindrehen oder lufttrocknen lassen für einen gepflegten Meerjungfrauen-Look. Profi-Tipp: Verwenden Sie vor der Anwendung unseren feuchtigkeitsspendenden Arganmilch-Leave-In-Conditioner für extra Feuchtigkeit!
Kurze Worte: Amaze® SP Polymer. Dieses pflanzliche Kraftpaket glättet die Schuppenschicht, verhindert Frizz und verleiht langanhaltendes, feuchtigkeitsbeständiges Volumen – ganz ohne zu knittern.
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.