Un jabón corporal suave pero eficaz que limpia sin resecar, perfecto para el día a día
Nuestra barra Bottle-Free Beauty® ofrece resultados sólidos con más producto y menos envase
Formulado con moléculas patentadas que eliminan los olores que neutralizan los olores desde su origen, (eficacia demostrada mediante pruebas sensoriales y analíticas)
Un aroma acuático y amaderado que envuelve los sentidos y te transporta a un atardecer dorado en Malibú, donde la brisa marina acaricia la piel con su calidez.
Una mezcla fresca de notas de sal marina, ámbar y madera flotante para un acabado luminoso y veraniego.
Espuma abundante para una limpieza suave y lujosa y el perfume es la forma perfecta de refrescar tu aroma entre lavados
Sostenible e ideal para viajar—sin plástico, sin derrames, solo una barra compacta y duradera
Diseño ergonómico con forma acanalada para facilitar su uso y aplicación
Usa el perfume en el cabello, el cuerpo e incluso en tu funda de almohada de satén de Kitsch
Creado por una casa de fragancias de renombre internacional
Vegano y sin maltrato animal
Sin CMR sintéticos directos (carcinógenos, mutágenos o tóxicos para la reproducción), ftalatos, parabenos ni PFAS
Envases fabricados con PCR (material reciclado posconsumo)
1 x Jabón corporal en barra Amber Shores
1x Perfume capilar Amber Shores
Jabón corporal
Masajea suavemente la pastilla entre las manos o sobre la piel hasta obtener una espuma cremosa y abundante. Aclara con abundante agua.
Consejo profesional: combínalo con el Guante exfoliante de Kitsch para ayudar a revitalizar y regenerar tu piel.
Perfume para el cabello
Pulveriza el perfume directamente sobre el cabello seco a una distancia de unos 15–20 cm para refrescarlo y perfumarlo. También puedes usarlo en el cuerpo o en la almohada para una experiencia aromática envolvente.
Glicerina
Un humectante que atrae la humedad hacia la piel para mantenerla suave e hidratada.
Ingredientes
Barra de jabón corporal Amber Shores
Palmitato de sodio, cocoato de sodio y/o palmisteato de sodio, agua, glicerina, fragancia, laurato de laurilo, ácido esteárico, cloruro de sodio, metil cocoil taurato de sodio, glutamato diacetato tetrasódico, extracto de hoja de romero, acetato de tocoferilo (vitamina E), tetrametil acetiloctahidronaftalenos, aceite de cáscara de naranja amarga, limoneno, vainillina, citronelol, cumarina, dióxido de titanio, óxidos de hierro1
1Colorantes de origen natural
Perfume para el cabello Amber Shores
Alcohol desnaturalizado, agua, fragancia, citrato de trietilo, tetrametil acetiloctahidronaftalenos, butil metoxidibenzoilmetano, salicilato de etilhexilo, aceite de cáscara de naranja amarga, vainillina, limoneno, citronelol, cumarina, isoeugenol
¡Contamos con la certificación de Leaping Bunny! Su logotipo es el único símbolo reconocido a nivel internacional que garantiza que no se han realizado ensayos con animales en el desarrollo de los productos.
{
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 = `Ritual aromático Amber Shores`;
let bundleHandle = `ritual-aromatico-amber-shores`;
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');
});
}
}">
Comprados juntos frecuentemente
+
Total price:
Ritual aromático Amber Shores
$35.00
$35.00
Perfume capilar Warm Sugar
$39.00
$39.00
Bolsa para gel de baño en barra - Chocolate
$10.00
$10.00
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">
When I tell you I get so many compliments and people asking where I got my perfume— I’m not kidding. I love the entire line up, but this one specifically is my favorite. I use it after the gym and before work. It lasts all day.
I will purchase this product over and over again! It’s a great layering scent. I use it with EOS lotions and phlur perfumes. Definitely recommend!
K
Kitsch
1 year ago
We're thrilled to hear you're getting compliments and enjoying it as part of your daily routine. Just to share a little extra: while our perfume works just like any traditional fragrance, it also features our patented deodorizing technology designed specifically for hair. So not only does it smell amazing, but it also helps keep your hair feeling fresh—especially post-gym or on-the-go. We're so glad it's your favorite and that it layers beautifully with your other scents! 💐✨
S
Stacey
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love this !
Kitsch has done it again !!!! This amber scent hair fragrance is amazing. It has a fresh light scent that is t too much. Great way to freshen up your hair after a long day at work so you can go out on the town feeling and smelling great !!! Don’t stop at one, grab them all !!
S
Saira
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
In Love ❤️
I ordered the hair perfume amber ,and you know what is my regret? That why I ordered one only I want all the fragrances...it is super delicious iam a dior user in hair perfume but now iam going to use this only .
TP
Tracy P.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Amazing
Such a great product well worth the money. I will definitely be purchasing again, My favourite is Amber shores as it reminds me of being on a tropical island and it smells amazing. Highly recommend these hair products.
L
Lilian
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Love it!
I was weary ordering this because the products here are very pricy, but the thing is... They're worth it!
I love this perfume, it's sweet and warm, even though I normally go for fresher scents this is my new favourite! 😊
M
MK
I recommend this product
Rated 4 out of 5 stars
1 year ago
My daughter thinks I bought it for *her*
Sure. I totally did… and I will also benefit from her obsession. I just wish they had a bigger variety of scents. Tart cherry is my favorite - when considering what perfume to match the Kitsch hair scents with, it really makes getting ready in the mornings more fun. The possibilities are endless!
JE
June E.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Great product
This really is a level up from other soaps. It smells good, lathers well, and is so moisturizing that I don’t even need lotion after the shower.
CM
Cherie M.
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Great scent
It lathers so well and still smells good hours later. It smells amazing. Not a fruity, floral which is nice. Strong winter or fall scent vibe.
C
Cleo
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Absolutely amazing
I haven't worn it for a full day yet, so I can't speak to its longevity, but the scent is absolutely gorgeous. It truly captures the feeling of sun and sea — like a beach day in a bottle. Once I run out, I'll definitely be repurchasing.☀️💋
G
GF
Verified Reviewer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Lovely
The amber shores body wash body doesn't irritate my skin, it rinses off easily and leaves my skin feeling soft, and it smells divine!
Loading...
Loading...
Frequently Asked Questions
La barra de jabón corporal sólido de Kitsch es una alternativa al gel de baño líquido tradicional, diseñada para limpiar y cuidar la piel sin generar residuos plásticos. Con ingredientes respetuosos con la piel, crea una espuma cremosa y abundante dejando un aroma irresistible. Es ideal para viajar, duradera y libre de sulfatos, parabenos y otros ingredientes agresivos.
Humedece la barra con agua templada y masajea sobre la piel hasta formar espuma. También puedes usarla con la bolsa protectora Bottle-Free Beauty® para conseguir aún más espuma.
Aunque su fórmula es suave y sin sulfatos, está diseñada exclusivamente para el cuerpo.
Depende del uso, pero puede sustituir varias botellas de gel de baño y durar semanas o incluso meses. Con un buen almacenamiento, dura aún más.
Para prolongar su vida útil, mantenla seca entre usos con una jabonera autovaciante o una bolsa protectora Bottle-Free Beauty®.
Es una fragancia diseñada para el cabello que elimina los olores en lugar de enmascararlos. Gracias a su tecnología patentada, refresca el cabello entre lavados dejando un aroma irresistible.
A diferencia de los perfumes tradicionales, utiliza moléculas que se adhieren a las fuentes del mal olor y las transforman en compuestos neutros.
Sí, su fórmula es ligera, no grasa y apta para todo tipo de cabello.
Sí, contiene alcohol cosmético que se evapora rápidamente para difundir la fragancia sin dejar residuos.
No enmascara olores, los elimina. Además, ha sido desarrollado por expertos en perfumería y su fórmula está libre de CMR sintéticos, ftalatos, parabenos y PFAS.
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.