Awarded as one of the TOP 10 Baby and Children's Products of 2026

100,000 satisfied parents

Free shipping on orders over 50 € / Fr.

0

For the bottle at home.

For breast milk and infant formula—practically no water bath required.

Our Best Sellers

These are the products Mom and Dad like to buy the most.

Save with a bundle

Combine our bestsellers into a set.

document.addEventListener("DOMContentLoaded", function () { const bestseller = document.querySelector(".bestseller-slider"); const left = document.querySelector(".bestseller-arrow-left"); const right = document.querySelector(".bestseller-arrow-right"); if (!bestseller) return; function initBestseller() { const swiperElement = bestseller.querySelector(".swiper") || bestseller.querySelector(".swiper-container"); if (!swiperElement || !swiperElement.swiper) { setTimeout(initBestseller, 200); return; } const swiper = swiperElement.swiper; /* Nur Desktop auf 5 Produkte zwingen */ if (window.innerWidth >= 1025) { swiper.params.slidesPerView = 5; swiper.params.slidesPerGroup = 1; swiper.params.spaceBetween = 12; swiper.update(); swiper.updateSlides(); } function getVisibleSlides() { const value = swiper.params.slidesPerView; if (typeof value === "number") { return value; } /* Fallback falls Swiper "auto" verwendet */ if (window.innerWidth >= 1025) return 5; if (window.innerWidth >= 768) return 2; return 1; } function keepArrowsActive() { [left, right].forEach(function (arrow) { if (!arrow) return; arrow.classList.remove( "disabled", "swiper-button-disabled", "swiper-button-lock" ); arrow.style.opacity = "1"; arrow.style.pointerEvents = "auto"; }); } right?.addEventListener("click", function (e) { e.preventDefault(); const visibleSlides = getVisibleSlides(); const lastIndex = Math.max( 0, swiper.slides.length - Math.ceil(visibleSlides) ); if (swiper.activeIndex >= lastIndex) { swiper.slideTo(0, 500); } else { swiper.slideNext(); } setTimeout(keepArrowsActive, 100); }); left?.addEventListener("click", function (e) { e.preventDefault(); const visibleSlides = getVisibleSlides(); const lastIndex = Math.max( 0, swiper.slides.length - Math.ceil(visibleSlides) ); if (swiper.activeIndex <= 0) { swiper.slideTo(lastIndex, 500); } else { swiper.slidePrev(); } setTimeout(keepArrowsActive, 100); }); swiper.on("slideChange", function () { setTimeout(keepArrowsActive, 20); }); swiper.on("transitionEnd", keepArrowsActive); keepArrowsActive(); } initBestseller(); });
document.addEventListener("DOMContentLoaded", function () { const slider = document.querySelector(".bestseller-slider"); const left = document.querySelector(".bestseller-arrow-left"); const right = document.querySelector(".bestseller-arrow-right"); if (!slider) return; let isDown = false; let startX = 0; let scrollLeftStart = 0; function clearSelection() { window.getSelection?.().removeAllRanges(); } function updateArrows() { const maxScroll = slider.scrollWidth - slider.clientWidth; const current = slider.scrollLeft; if (current = maxScroll - 20) { right?.classList.add("disabled"); } else { right?.classList.remove("disabled"); } } right?.addEventListener("click", function () { const slideWidth = slider.clientWidth / 5; slider.scrollBy({ left: slideWidth, behavior: "smooth" }); setTimeout(updateArrows, 350); }); left?.addEventListener("click", function () { const slideWidth = slider.clientWidth / 5; slider.scrollBy({ left: -slideWidth, behavior: "smooth" }); setTimeout(updateArrows, 350); }); slider.addEventListener("mousedown", function (e) { isDown = true; slider.classList.add("dragging"); startX = e.clientX; scrollLeftStart = slider.scrollLeft; clearSelection(); }); document.addEventListener("mousemove", function (e) { if (!isDown) return; e.preventDefault(); const walk = (e.clientX - startX) * 1.5; slider.scrollLeft = scrollLeftStart - walk; clearSelection(); updateArrows(); }); document.addEventListener("mouseup", function () { if (!isDown) return; isDown = false; slider.classList.remove("dragging"); clearSelection(); setTimeout(updateArrows, 150); }); slider.querySelectorAll("img").forEach(function (img) { img.setAttribute("draggable", "false"); }); slider.addEventListener("dragstart", function (e) { e.preventDefault(); }); slider.addEventListener("selectstart", function (e) { e.preventDefault(); }); slider.addEventListener("scroll", updateArrows); window.addEventListener("resize", updateArrows); updateArrows(); });

Categories

We’re ready for these everyday situations.

BIRTHDAY SALE!

Valid only for a limited time to celebrate our anniversary.

document.addEventListener("DOMContentLoaded", function () { function initCustomSlider(config) { const sliderWrapper = document.querySelector(config.slider); const left = document.querySelector(config.left); const right = document.querySelector(config.right); if (!sliderWrapper) return; function init() { const swiperElement = sliderWrapper.querySelector(".swiper") || sliderWrapper.querySelector(".swiper-container"); if (!swiperElement || !swiperElement.swiper) { setTimeout(init, 200); return; } const swiper = swiperElement.swiper; /* Desktop: 5 Produkte */ if (window.innerWidth >= 1025) { swiper.params.slidesPerView = 5; swiper.params.slidesPerGroup = 1; swiper.params.spaceBetween = 12; swiper.update(); if (typeof swiper.updateSlides === "function") { swiper.updateSlides(); } } function getVisibleSlides() { const value = swiper.params.slidesPerView; if (typeof value === "number") { return value; } if (window.innerWidth >= 1025) return 5; if (window.innerWidth >= 768) return 2; return 1; } function keepArrowsActive() { [left, right].forEach(function (arrow) { if (!arrow) return; arrow.classList.remove( "disabled", "swiper-button-disabled", "swiper-button-lock" ); arrow.style.opacity = "1"; arrow.style.pointerEvents = "auto"; }); } right?.addEventListener("click", function (e) { e.preventDefault(); const visibleSlides = getVisibleSlides(); const lastIndex = Math.max( 0, swiper.slides.length - Math.ceil(visibleSlides) ); if (swiper.activeIndex >= lastIndex) { swiper.slideTo(0, 500); } else { swiper.slideNext(); } setTimeout(keepArrowsActive, 100); }); left?.addEventListener("click", function (e) { e.preventDefault(); const visibleSlides = getVisibleSlides(); const lastIndex = Math.max( 0, swiper.slides.length - Math.ceil(visibleSlides) ); if (swiper.activeIndex <= 0) { swiper.slideTo(lastIndex, 500); } else { swiper.slidePrev(); } setTimeout(keepArrowsActive, 100); }); swiper.on("slideChange", function () { setTimeout(keepArrowsActive, 20); }); swiper.on("transitionEnd", keepArrowsActive); keepArrowsActive(); } init(); } /* BESTSELLER */ initCustomSlider({ slider: ".bestseller-slider", left: ".bestseller-arrow-left", right: ".bestseller-arrow-right" }); /* SALE */ initCustomSlider({ slider: ".sale-slider", left: ".sale-arrow-left", right: ".sale-arrow-right" }); });
document.addEventListener("DOMContentLoaded", function () { const slider = document.querySelector(".bestseller-slider"); const left = document.querySelector(".bestseller-arrow-left"); const right = document.querySelector(".bestseller-arrow-right"); if (!slider) return; let isDown = false; let startX = 0; let scrollLeftStart = 0; function clearSelection() { window.getSelection?.().removeAllRanges(); } function updateArrows() { const maxScroll = slider.scrollWidth - slider.clientWidth; const current = slider.scrollLeft; if (current = maxScroll - 20) { right?.classList.add("disabled"); } else { right?.classList.remove("disabled"); } } right?.addEventListener("click", function () { const slideWidth = slider.clientWidth / 5; slider.scrollBy({ left: slideWidth, behavior: "smooth" }); setTimeout(updateArrows, 350); }); left?.addEventListener("click", function () { const slideWidth = slider.clientWidth / 5; slider.scrollBy({ left: -slideWidth, behavior: "smooth" }); setTimeout(updateArrows, 350); }); slider.addEventListener("mousedown", function (e) { isDown = true; slider.classList.add("dragging"); startX = e.clientX; scrollLeftStart = slider.scrollLeft; clearSelection(); }); document.addEventListener("mousemove", function (e) { if (!isDown) return; e.preventDefault(); const walk = (e.clientX - startX) * 1.5; slider.scrollLeft = scrollLeftStart - walk; clearSelection(); updateArrows(); }); document.addEventListener("mouseup", function () { if (!isDown) return; isDown = false; slider.classList.remove("dragging"); clearSelection(); setTimeout(updateArrows, 150); }); slider.querySelectorAll("img").forEach(function (img) { img.setAttribute("draggable", "false"); }); slider.addEventListener("dragstart", function (e) { e.preventDefault(); }); slider.addEventListener("selectstart", function (e) { e.preventDefault(); }); slider.addEventListener("scroll", updateArrows); window.addEventListener("resize", updateArrows); updateArrows(); });
LIINI Trustpilot

Rated "Good" (4.2) by parents

Parenting is wonderful—but rarely goes according to plan. That’s exactly why LIINI® develops products that don’t add to your daily workload, but actually take some of the burden off your shoulders.

Our solutions are inspired by real-life family situations: sleepless nights, hunger on the go, overflowing diaper bags, spontaneous outings, and moments when things just have to work. Well-designed, easy to use, and modern—so you can focus on what really matters.

Since 2021, more than 100,000 families have placed their trust in LIINI®. As a Swiss company, we stand for quality, genuine care, and personalized support—even when others have already started their weekend.

Trustpilot

How to find the perfect ring size

Do you already have another ring at home?

Yes - measure ring

If you already have a good fitting ring, you can use that to determine the size.

Step 1: Prepare material

  • An existing ring that fits well
  • A ruler or tape measure
  • A pen and a sheet of paper

Step 2: Measure the existing ring

Lay the existing ring flat on a flat surface. Make sure that it does not deform or twist. Use the ruler or tape measure to measure the inside diameter of the ring. This is the distance from one inner edge to the opposite inner edge of the ring. Note the measurement in millimeters.

Step 3: Compare with our size chart

Now compare the measurement you noted with our size scale and choose the appropriate ring size.

No - Measure finger

If you don’t have a matching ring at home, you can easily determine your size with the following procedure.

Step 1: Prepare material

  • A thin strip of paper or a piece of string
  • A pen
  • One pair of scissors
  • A ruler or tape measure

Step 2: Measure the circumference of the finger

Wrap the thin strip of paper or string around the finger you want to wear the ring on. Make sure the strip fits snugly, but not too tight or too loose. Use a pencil to mark the place where the strip or string overlaps.

Step 3: Check the size

To make sure that the determined ring size is correct, you can wrap the thin paper strip or string around your finger again and place the ring on it. Check that it fits comfortably and is not too loose or too tight. Repeat this step if necessary to find the optimal size.

Tip: If you want more accurate measurements, you can repeat the process several times and take the average of the measurements.

Step 4: Compare with our size chart

Now compare the measurement you noted with our size scale and choose the appropriate ring size.

Size chart

SizeInner diameter
116.5 mm
217.3 mm
318.1 mm

LIINI® Ring template

Don’t worry too much about your ring size.

After your order you will immediately receive our LIINI fingerprint kit.

Included are original and pre-cutring templates to try on.

So you can always change to a smaller or larger ring before engraving in the worst case.

0