Ein luftgetrocknetes Finish, das aussieht wie frisch aus dem Salon. Die Glättende Creme zum Lufttrocknen verbessert die natürliche Textur und kontrolliert Frizz bis zu 24 Stunden* mit einer leichten Mischung aus Rizinusöl, Squalan und Kokosöl.
*Basierend auf einem 2-wöchigen Verbrauchertest
Eine leichte Leave-in-Creme die Feuchtigkeit speichert und das Haar glättet für müheloses Styling ohne Hitze.
24-Stunden-Frizz-Kontrolle für weiches, gepflegtes und seidig glattes Haar.
Hilft, Wellen und Locken zu definieren – ohne Hitze, ohne Aufwand.
Angereichert mit Rizinusöl, Squalan, Panthenol und Kokosöl zur Pflege, Hydratation und zum Schutz.
Leichte, nicht fettende Formel beschwert das Haar nicht.
Ideal für lufttrocknen, flechten oder natürliche Texturen kreieren.
Verwandle das tägliche Lufttrocknen in eingutes-Haartag-Ritual.
Perfekt fürmühelose Styling-Tage ohne Hitze an denen du trotzdem Salon-Ergebnisse willst.
Hilft, Wellen und Locken zu definieren, die weich und angenehm anfühlen.
Perfekt für schnelles, unkompliziertes Styling wann immer du es brauchst.
Vegan & tierversuchsfrei
Frei von Parabenen, Phthalaten, Sulfaten und künstlichen Farbstoffen.
Reibe eine kleine Menge zwischen den Handflächen. Wenig reicht völlig aus!
In das feuchte oder trockene Haar von der Mitte bis zu den Spitzen einarbeiten, bei Bedarf mehr hinzufügen.
Um natürliche Locken und Wellen zu betonen, kleine Partien kneten oder mit den Fingern eindrehen.
PROFI-TIPP: Beginnen Sie mit Kitsch Moisturizing Argan Milk Leave-In Conditioner als feuchtigkeitsspendendem ersten Schritt.
Rizinusöl
Pflege dein Haar von den Wurzeln bis zu den Spitzen mit Hilfe von Rizinusöl, einem haarstärkenden und kopfhautbalancierenden Öl für sauberes, gesundes Haar.
Kokosnussöl
Kokosnussöl schließt die Feuchtigkeit ein und hilft, die Haarsträhnen von innen heraus mit Feuchtigkeit zu versorgen und Haarbruch zu reduzieren - für kräftigeres, glänzenderes und gesünder aussehendes Haar.
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: 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 = `Glättende Creme zum Lufttrocknen`;
let bundleHandle = `glattende-creme-zum-lufttrocknen`;
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:
Glättende Creme zum Lufttrocknen
$ 350.00
$ 350.00
Hitzeschutzspray
$ 443.00
$ 443.00
Entwirrungsbürste - Schwarz
$ 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 = `Glättende Creme zum Lufttrocknen`;
let bundleHandle = `glattende-creme-zum-lufttrocknen`;
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">
I have tried so many curl creams and this one is the only one that definitely does what it says definitely will be buying more. I have added a before and after photo so many people have commented on my curls❤️
R
Rose
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Honestly very impressed with this product
For wavy hair, it works great. I have tried a lot of different products for my hair (sometimes difficult) and it highlights my hair without too much volume.
Translated from French
C
Claire
I recommend this product
Rated 5 out of 5 stars
3 months ago
I just knew this was gonna be amazing!
If youre in any doubt about purchasing this air drying cream, i totally advise you to try it. Menopause and thyroid issues caused my life long 56 year old straight hair to suddenly go wavey and curly last year (which was always my dream). So it took me a year to find something that actually works well and is so easy and quick to use. I was almost ready to give up trying as ive tried literally every product for curly/wavey hair and every mixed combo scenario of products you can possibly think of. Then i saw the ad for this. It has been transformative! Quick, easy, beautiful scent, fab packaging. And even better, not expensive. Win, win! I love it and will keep using it for as long as Kitsch keep making it (which better be forever lol).
LB
Lisa B.
I recommend this product
Rated 5 out of 5 stars
3 months ago
This works!
I never leave reviews, but this product does a great job in getting my hair to dry with no frizz. I ordered several more bottles because someone in marketing will get an idea and change it. I have a counter filled with useless products, except for this one. Before pic on the right. My waves are defined and together and the left.
H
Hayley
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
12 months ago
This has brought my waves back after years of dull flat hair.
Okay I absolutely love this. Genuinely didnt think it would work like it has, but bought this because I never dry my hair with heat, I always leave it to air dry.
This has totally transformed my hair with absolutely no effort. It was always a bit flat before but now always has volume and perfect waves!
Im in the UK but will continue to buy this.
The labubu offer is what encouraged me to try an American brand... no labubu for my daughter, unfortunately, but I will certainly buy this again!
ΣΓ
Στέλλα Γ.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
11 months ago
Lovely product
It forms my curls while drying. Best product I've used since I've stopped using styling. I use it after my leave in, scrunch it in my hair and let it air dry. That's all it takes! A quantity of 1 - 2 peas is enough, so a cost effective product too 😉
SR
Sara R.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
9 months ago
Cream
This cream has worked better on my naturally wavy hair than anything else has! I love it.
LS
Lynda S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
Perfectly defined curls
I hardly ever leave reviews, but this product deserves one. Used it for the first time today, and I'm a massive fan. My hair is all one length (because I'm too lazy to go get some layers😬) and every other curl/antifrizz product is either too heavy, too crunchy, too product-y feeling on my hair, but this air dry cream is perfection. Even on my unlayered hair! You can see how light it is, because it doesn't drag my hair flat at the top. I'm a customer for life.
CK
Claire K.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 months ago
The best curl cream I've bought so far
I'm stoked with this curl cream. I had dead straight hair until my mid-late 30s and in the decade since I've been on a learning curve because I don't know how to encourage my curls and make them last. And the chances of me ever having time to use a hair dryer are slim to none.
This is definitely the best one I've used so far. Amazing curls for a minimum of two days, weather dependent, and I get some proper ringlets in the front which make me sooo happy.
My tip is, use more than you think you need. Amazing how your hair sucks this stuff up and turns it into curls. I really hope kitsch consider refills or a larger bottle.... pretty please??
KH
Kayla H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
Amazing!
I washed, conditioned, used the argan milk leave-in and then the air dry cream. My curls look great now that they’re dry! Zero frizz and super soft! This stuff has SIGNIFICANTLY changed my curl routine!
Loading...
Loading...
Frequently Asked Questions
Dieses Produkt eignet sich am besten für feines bis mittleres Haar und ist perfekt, um die natürliche Textur und Wellen zu betonen und gleichzeitig Frizz zu reduzieren.
Unsere Glättende Creme ist für das Styling ohne Hitze gedacht, aber Sie können dieses Produkt dennoch zur Reduzierung von Frizz und zur Erhaltung der Frisur vor dem Styling mit Hitze verwenden. Dieses Produkt enthält jedoch keinen Hitzeschutz, daher empfehlen wir, es in Kombination mit dem Kitsch Priming Heat Protectant & Styling Spray zu verwenden.
Unsere Glättende Creme ist farbsicher, da sie frei von Farbstoffen und Sulfaten ist.
Eine warme Mischung aus gezuckertem Amber mit Basisnoten von Vanille und Sandelholz. Wenn Sie unseren Shea Butter Solid Conditioner oder Castor Oil Shampoo and Conditioner Bars ausprobiert haben, ist es derselbe gemütliche, süchtig machende Duft!
Durch die Wahl eines hitzefreien Stylings wird Ihre Kopfhaut keinen hohen Temperaturen ausgesetzt, die Probleme wie Trockenheit und Reizungen verschlimmern können. (Dieses Produkt ist nicht für die Anwendung auf der Kopfhaut vorgesehen.)
Ja, dieses Produkt ist für Haar mit geringer Porosität geeignet. Da sich Haar mit geringer Porosität jedoch leicht beschichtet anfühlen kann und schon eine kleine Menge dieses Produkts sehr ergiebig ist, empfehlen wir, mit einer erbsengroßen Menge zu beginnen und diese bei Bedarf zu erhöhen.
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.