Un almizcle floral afrutado que captura el encanto de un té dulce disfrutado en una pastelería francesa.
La mezcla perfecta de frambuesa, violeta y suave almizcle para un aroma delicado pero decadente de Violeta Etérea
Tecnología patentada de eliminación de olores—neutraliza los olores directamente en la fuente.
Pistachio Latte
Un aroma gourmand de frutos secos que te hace sentir como si estuvieras bebiendo un latte cremoso de pistacho en tu café favorito.
Envuelto en notas de pistacho, coco y café caliente para la máxima indulgencia reconfortante.
Tecnología patentada de eliminación de olores—neutraliza los olores directamente en la fuente.
Una forma rápida derefrescar tu cabello entre lavados
Úsalo en tu cabello, cuerpo e incluso en tu funda de satén Kitsch.
Creado por una casa de fragancias de renombre mundial
Quédate con su aroma único ocombínalo para una fragancia personalizada
Ligero, versátil y fácil de usar
Su práctico tamaño viaje va contigo a donde quieras, ya sea al gimnasio, al trabajo o a una escapada de fin de semana.
Vegano y libre de crueldad animal
Libre de CMR sintéticos directos (Carcinógenos, Mutágenos, Toxinas Reproductivas), ftalatos, parabenos y PFAS
Botellas hechas con 30% de PCR (contenido reciclado postconsumo)
Rocía el Perfume Capilar Kitsch en cualquier parte—¡desde tus rizadores sin calor hasta tu funda de almohada de satén! Unas cuantas rociadas rápidas y tu cabello del segundo día olerá tan fresco como el primero.
Violeta etérea
Alcohol desnaturalizado, Aqua/Agua/Eau, Fragancia (Parfum), Citrato de trietilo, Tetrametilacetilacetohidronaftalenos, Butilmetoxidibenzoilmetano, Acetato de linalilo, Salicilato de etilhexilo, Hidroxicitronelal, Pineno, Limoneno, Beta-Cariofileno, Cetonas de rosa.
Pistachio Latte
Alcohol Denat, Aqua/Agua/Eau, Fragancia (Parfum), Citrato de Trietilo, Tetrametil Acetilactahidronaftalenos, Butil Metoxidibenzoilmetano, Vainillina, Salicilato de Etilhexilo, Acetato de Linalilo, Linalol, aceite de Pogostemon Cablin, aceite de cáscara de Citrus Aurantium Bergamia (bergamota), limoneno, trimetilciclopentenilmetilisopentenol, aceite de cáscara de Citrus Aurantium, benzaldehído, pineno, santalol, beta-cariofileno.
{
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;
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Dúo Domingo de Mercadillo: Violeta Etérea y Pistachio Latte`;
let bundleHandle = `farmers-market-sunday-duo-sheer-violet-pistachio-latte`;
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');
});
}
}">
Comprados juntos frecuentemente
+
Total price:
Dúo Domingo de Mercadillo: Violeta Etérea y Pistachio Latte
$50.00
$50.00
Dúo Vacaciones Vainilla: Brisa de Azúcar y Costas de Ámbar
$50.00
$50.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: 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;
return total - extraDiscount;
},
addToCart(){
let cartObj = [];
let bundleTitle = `Dúo Domingo de Mercadillo: Violeta Etérea y Pistachio Latte`;
let bundleHandle = `farmers-market-sunday-duo-sheer-violet-pistachio-latte`;
let bundleCount = 2;
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 = 'Añadir selección al carrito';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Comprados juntos frecuentemente
Dúo Domingo de Mercadillo: Violeta Etérea y Pistachio Latte
$50.00
$50.00
+
Dúo Vacaciones Vainilla: Brisa de Azúcar y Costas de Ámbar
Dúo Domingo de Mercadillo: Violeta Etérea y Pistachio Latte
Register to receive a notification when this item comes back in stock.
Please enter a valid email address.
Thanks for signing up! We'll send you an email when the product becomes available.
{
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">
Utilizamos una tecnología patentada de eliminación de olores, la primera de su clase, que transforma los malos olores en compuestos totalmente NUEVOS y con mejor olor, a diferencia de otros desodorizantes que simplemente los cubren.
2. En cualquier momento y lugar
Llévalo en tu bolso para disfrutar de tu aroma las 24 horas del día, los 7 días de la semana. Desde largos días de trabajo a sudorosas sesiones de gimnasio y todo lo demás, el perfume capilar Kitsch mantiene tu pelo con un olor increíble.
3. Posibilidades de combinación
Con aromas de ensueño como Brisa de Azúcar y Violeta Etérea, puedes elegir tu propia fragancia o superponerla para crear un ambiente personalizado.
4. Pelo, cuerpo y más
Esta bruma capilar multiusos puede refrescar tu cabello, actuar como spray corporal o rociar tu funda de almohada de satén.
I love the smell of it. I get so many compliments and I love the bottle.
S
Stacey
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
A floral fruity musk that is perfect.
The perfect combination of floral and fruit with a musk. Not too strong, just right !!! I love this concept !!! It’s a great way to freshen up my hair and head out for the day with hair that smells so fresh and clean !!! Grab them all, you won’t regret it!
S
Stacy
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
☕It's like a having your favorite coffee with you all the time☕
This little bottle of Kitsch Pistachio Latte Hair Perfume is heaven in a spritz! The scent is warm, nutty, and just the right hint of sweet coffee goodness. Every time I turned my head, I caught that delicious coffee aroma—it’s like carrying your favorite café with you all day long. 😍
It’s lightweight and doesn’t leave my hair feeling sticky or heavy, just beautifully scented. Perfect for freshening up in between washes or adding a little extra something to your morning routine. I even spritzed it on my body because I loved the scent so much
My only wish? That they’d expand the line with scents like Vanilla Latte or Caramel Latte! I’d buy them all in a heartbeat.
If you’re a coffee lover or just enjoy warm, cozy fragrances, this is a must-try. It’s a delightful pick-me-up that adds a touch of charm to your day!
Would love to see more scents, but this one’s a winner! 👏
M
Mia
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
A MUST HAVE!
I thought I loved cherry tart, and I do. But THIS is glorious! It’s so fresh, sexy and far from musky, which I can’t stand! I highly recommend this one. I just got back from a quick road trip and I really wish I’d had it for my nights out. This will be my go to summer evening hair perfume! Thank you Kitsch for these AMAZING products. I have tried so many products in the last 3 weeks and I’m truly in love. My hair looks, and just feels fantastic. I could cry! <3
NW
neva w.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love the Hair Perfume!
Having a short stay in rehab was a bit more bearable with the use of this wonderful product. Fragrance is very nice and has some “staying” power. Thank you for creating it!
SS
Sydney S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Long lasting hair perfume
I really enjoy this hair perfume. The scent is really nice (I looooove pistachio!) and it really lasts. I find, even hours after I've put it on, if I give my hair a little shake, I can still smell the perfume. You only need like 2 spritzes and you're good to go!
T
Tanya
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Great Haircare Addition
I enjoy adding a little spritz or two of this as the last step in my hair routine! It's not a very overpowering scent, but is nice to get a whiff throughout the day when I move around. It doesn't leave any sort of residue and isn't sticky. The scent doesn't last me all day long, but a good few hours, especially if I spray it between hair layers and not just the top- depends on how strong I want it to be!
SN
Stacy N.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Hair Perfume? YES PLEASE!
I really liked the scent it lasted a long time on my hair, body, and even my clothes and sheets. I love the smell of coffee and this was so close to a fresh coffee scent with a little sweet and nutty fragrance to it. I hope they get some other scents too like maybe a vanilla, lavender coconut, or a citrus one would be wonderful but this pistachio will definitely be on my keep buying list
M
Michelle
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
AMAZING!!
This is a must have product!! It smells amazing! If you’re unsure about all the scents they have I recommend getting the discovery pack I think it’s called before investing in a full size!!
LS
Linda S.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Hair Perfume Obsession
I am totally obsessed with the Hair Perfume Smells. I just can't say enough about how I love them. I highly recommend this item.
Loading...
Loading...
Frequently Asked Questions
El Perfume Capilar Kitsch es tu perfume capilar superpoderoso, diseñado para eliminar los malos olores en lugar de simplemente enmascararlos. Gracias a una tecnología patentada de eliminación de olores, única en su tipo, refresca tu cabello entre lavados y deja una fragancia irresistible.
A diferencia de los perfumes capilares tradicionales, que simplemente cubren los malos olores, el nuestro utiliza moléculas patentadas que eliminan los olores y se adhieren a la fuente de los olores no deseados, transformándolos en un compuesto de olor neutro. Nada de humo, sudor u olores misteriosos, sólo un cabello fresco y limpio.
¡Por supuesto! Estas fragancias están diseñadas para combinarse. Aquí tienes algunas ideas para combinarlas:
- Para una dulzura playera y soleada, combina Brisa de Azúcar con Costas de Ámbar.
- Para un aroma acogedor y sofisticado, combina Pistachio Latte con Costas de Ámbar.
- Para una dulzura floral y suave, combina Violeta Etérea con Brisa de Azúcar.
- Para una fusión floral-gourmand divertida, combina Violeta Etérea con Pistachio Latte.
- Para un contraste fresco y sensual, combina Violeta Etérea con Costas de Ámbar.
Solo rocíalo directamente sobre el cabello seco a una distancia de unos 15-20 cm para refrescar y perfumar tu cabello. También puedes usarlo en el cuerpo para una fragancia intensa de pies a cabeza o en la almohada para una experiencia de fragancia de ensueño.
¡Sí! Nuestra fórmula es ligera, translúcida y no grasa, por lo que no apelmazará tu cabello ni lo dejará pegajoso. Además, no contiene químicos agresivos y está diseñado para ser suave con todo tipo de cabello.
Sí, nuestro perfume para el cabello contiene alcohol desnaturalizado, un alcohol de grado cosmético que se evapora rápidamente para ayudar a que la fragancia se disperse maravillosamente, sin dejar el cabello pegajoso ni pesado. Y mientras que las típicas eau de parfums contienen alrededor de un 80% de alcohol, nuestras fragancias tienen una media del 60%
Aunque contiene alcohol desnaturalizado, este tipo de alcohol se utiliza en las fragancias para ayudar a que el aroma se disperse perfectamente sin dejar residuos ni acumulaciones. No elimina la humedad si se utiliza según las instrucciones, sino que deja el cabello deliciosamente perfumado y agradable al tacto. También utilizamos agua desionizada (tipo II) altamente purificada, que contribuye a su longevidad y estabilidad, al tiempo que lo hace respetuoso con la piel.
El nuestro elimina los olores, ¡no los enmascara! Las moléculas patentadas que eliminan los olores, utilizadas por primera vez, neutralizan los malos olores en su origen. Elaborado por una casa de fragancias de renombre mundial, también cuenta con una fórmula limpia libre de cualquier CMR sintéticos directos (carcinógenos, mutágenos, toxinas reproductivas), ftalatos, parabenos y PFAS
El Perfume Capilar Kitsch es una fragancia ligera y modulable que perdura agradablemente sin resultar abrumadora. Para refrescarte más tarde, vuelve a aplicarlo cuando lo necesites.
Para obtener mejores resultados, recomendamos utilizarlo sobre el cabello seco.
No, el Perfume Capilar Kitsch no es un champú en seco, pero funciona muy bien como complemento. Mientras que el champú seco absorbe la grasa y aporta volumen, el perfume capilar elimina los olores y deja el cabello con un olor increíble. (Para un champú en seco, prueba nuestro Champú en seco voluminizador con proteína de arroz).
Sí, tiene un tamaño perfecto para llevarlo en el bolso, en la bolsa del gimnasio o en la maleta.
El precio de referencia representa el precio al que se ofrecía anteriormente el producto o el precio de mercado estimado de artículos comparables en otros establecimientos. Dado que los precios suelen fluctuar, no podemos garantizar que el precio de referencia refleje el precio de mercado vigente en un momento determinado.
Al seleccionar una opción, se actualiza toda la página.