Beauty case da viaggio elegante e pratico con due ampi scomparti.
Tieni i tuoi prodotti beauty indispensabili in ordine e sempre a portata di mano.
Ideale per avventure in giro per il mondo o weekend fuori porta.
Essenziale, resistente e leggero per viaggiare senza stress.
Due scomparti separati per tenere tutto in ordine e a portata di mano senza alcuno sforzo.
Design chic e minimalista per un tocco moderno e di stile.
Realizzato per durare nel tempo, senza appesantire il tuo bagaglio.
Della dimensione perfetta per contenere i tuoi prodotti skincare, accessori e prodotti per capelli preferiti di Kitsch, per preparare i bagagli in modo facile e ordinato.
Formato approvato TSA per viaggiare senza pensieri con i tuoi prodotti di bellezza indispensabili.
Ecosostenibile: realizzato al 100% in plastica riciclata.
Nota: la confezione ricevuta potrebbe variare rispetto a quella mostrata.
{
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 = `Beauty case da viaggio a 2 scomparti – Terracotta`;
let bundleHandle = `beauty-case-da-viaggio-a-2-scomparti-terracotta`;
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');
});
}
}">
Acquistati spesso insieme
+
Total price:
Beauty case da viaggio a 2 scomparti – Terracotta
$ 280.00
$ 280.00
Shampoo all'acqua di riso per la crescita dei capelli
$ 374.00
$ 374.00
Balsamo all'acqua di riso per la crescita dei capelli
$ 374.00
$ 374.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 = `Beauty case da viaggio a 2 scomparti – Terracotta`;
let bundleHandle = `beauty-case-da-viaggio-a-2-scomparti-terracotta`;
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 = 'Aggiungi la selezione al carrello';
this.$dispatch('update-cart', { cart: response });
this.$dispatch('toggle-cart-drawer');
});
}
}">
Acquistati spesso insieme
Beauty case da viaggio a 2 scomparti – Terracotta
$ 280.00
$ 280.00
+
Shampoo all'acqua di riso per la crescita dei capelli
$ 374.00
$ 374.00
+
Balsamo all'acqua di riso per la crescita dei capelli
Registratevi per ricevere una notifica quando questo articolo sarà di nuovo disponibile.
Inserire un indirizzo e-mail valido.
Grazie per esserti iscritto/a! Ti invieremo un'e-mail quando il prodotto sarà disponibile.
{
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">
This really can’t get any better. It perfectly fits two full size bars. Has two bumps on the bottom so the bars aren’t sitting in water. Comes with an elastic strap so it doesn’t accidentally open in your suitcase. I can’t wait to travel with this!
D
dmd
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Travel case
This travel case is gorgeous, it has a divider inside for your shampoo and conditioner bar.
You can also use it for a shampoo bar and the body wash bar if you don’t use conditioner with your short hair. I used to pat dry my bars and put it back in the box, now, with this beautiful, traveling case, I will not need to. There is a key band that goes around it too in case you need it, but I doubt that it would open up if you don’t put the band on.
I recommend.
JA
Jennifer A.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Travel Case
I love the new travel case! It keeps two bars of my choice safe and sealed for travel!!!
J
Jourdan
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Great quality and design
This travel container is perfect for taking along shampoo and conditioner bars. The band on the outside helps everything to stay in place. Super cute and nice quality.
DK
Dawn K.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
Nice
Perfect size for two full size bars. Durable.
LH
Lori H.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
2 years ago
Travel case
This was a perfect travel case , don’t have to worry about how it would travel no leaks nothing perfecto!
LE
Linda E M.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
1 year ago
A Travel Must!
I love the convenience of being able to put my shampoo and conditioner bars in this case, and just pack it my suitcase. I don’t have to worry about the case coming open at all while traveling.
T
Tegan
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
6 months ago
Great, two slot is the perfect size and more secure than I was expecting!
I have used the three compartment draining dish for home use and travel for ages but wanted something to keep any opened shamp/cond/soap bars in that I was not currently using. As the four compartment one is now cheaper than the $20 original price I thought I’d give it a go, I also ordered the two slot travel one too! I’m happy with both the two and four slot, thy both secure a lot firmer than i expected, ie more water tight. I don’t plan on leaving wet bars in them, but it’s still nice to know they are leak proof just in case I’m in a rush. They are both taller than I expected, but that is just my error and they fits bars great. I stick with Kitsch shampoo and conditioner bars, but for soap I use a variety of bars due to gifts from husband and friends (they know I like my soap bars). The four compartment fits a good amount, it is worth nothing the two inner slots are bigger than the two outer by a few mill, so this helps. I’m glad I purchased them both eventually. They are handy to have for travel and storage. For travel, my preferred is the two slot for size, as I like to travel minimal with just one bag as carryon, for where ever and however long I am away for but both are suitable for travel! I tend to use the remains of my bars for travel, you know, when they tend to get really small and are not as easy to hold so I fit my shampoo and conditioner in one slot of the two compartments and my soap in the other. I don’t have anything bad to say about either. Both work great…
JD
Jaymie D. V.
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
8 months ago
Best easy travel case
I love this Kit.sch travel case with sampler mini shampoo and conditioner. It’s super cute and easy to carry, and I use it to shower after the gym. Perfect size and really convenient.
モ
モントジャルイサ
Verified Buyer
I recommend this product
Rated 5 out of 5 stars
5 months ago
Useful!
I Love it so much my compartment travel case not only to travel also for keep my soaps and S&C bars safe in shower cause the humidity can melt them so i dry out then put inside and keep safety. I care alot my Kitsch products! Wanna buy others!
Il prezzo di confronto rappresenta il prezzo al quale il prodotto era precedentemente offerto o il prezzo di mercato stimato per articoli comparabili venduti altrove. Poiché i prezzi possono variare frequentemente, non possiamo garantire che il prezzo di confronto rifletta il prezzo di mercato corrente in un determinato momento.
Scegliendo una selezione si ottiene un aggiornamento completo della pagina.