✦ Verified product
Kletterbogen | Luna
EUR 199.00
Stil
Studio Belize
Verified independent store
→
/* ============================= */ /* ORIGINAL DESIGN (UNVERÄNDERT) */ /* ============================= */ .sb-4in1-premium { background: #fbf9f4; padding: 100px 20px; } .sb-conta
iner { max-width: 880px; margin: 0 auto; } .sb-title, .sb-intro, .sb-eyebrow, .sb-text strong, .sb-text span { font-family: "Plus Jakarta Sans", sans-serif !important; } .sb-title { font-size: 30px; font-weight: 500; color: #1b1c19; margin-bottom: 18px; } .sb-intro { font-size: 18.5px; line-height: 1.95; color: #3f4441; max-width: 520px; } .sb-card { background: #fff; border-radius: 28px; padding: 56px 42px; box-shadow: 0 6px 30px rgba(0,0,0,0.04); } .sb-card + .sb-card { margin-top: 36px; } .sb-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #1b1c19; opacity: 0.8; } .sb-features { display: flex; flex-direction: column; gap: 26px; } .sb-feature { display: flex; align-items: center; gap: 16px; } .sb-icon-wrap { width: 52px; height: 52px; border-radius: 50%; background: #f5f3ee; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .material-symbols-outlined { font-size: 26px; color: #4f6f69; } .sb-text { display: flex; flex-direction: column; justify-content: center; max-width: 420px; } .sb-text strong { font-size: 16px; font-weight: 500; color: #1b1c19; margin-bottom: 4px; } .sb-text span { font-size: 14px; color: #7a807c; line-height: 1.5; } .sb-note { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,0.08); font-size: 13px; color: #7a807c; } .sb-divider-arrow { display: flex; justify-content: center; margin: 36px 0; } .sb-divider-arrow span { font-size: 26px; color: #7c5636; opacity: 0.6; animation: float 4s ease-in-out infinite; } @keyframes float { 50% { transform: translateY(6px); } } @media (max-width: 768px) { .sb-4in1-premium { padding: 70px 16px; } .sb-card { padding: 34px 22px; } .sb-title { font-size: 24px; } .sb-intro { font-size: 16.5px; line-height: 1.85; max-width: 100%; } .sb-features { gap: 22px; } .sb-icon-wrap { width: 46px; height: 46px; } .material-symbols-outlined { font-size: 24px; } .sb-text { max-width: 100%; } } /* UX */ .sb-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; } .sb-fade-in.is-visible { opacity: 1; transform: translateY(0); } .sb-reveal-text span { display: block; opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; } Beschreibung Luna – das Designmöbel für die ganze Familie. Sessel, Kletterbogen und Wippe in einem. Gefertigt aus Natur-Vollholz, samtweich in der Oberfläche und mit abgerundeten Kanten. Geeignet ab dem 1. Lebensjahr und über die gesamte Kindheit hinweg nutzbar – für besondere Momente mit deinem Schatz. Produkthighlights self_improvement Spiel & Ruhe Förderung oder Rückzugsort forest FSC Naturholz geölt & massiv park Kautschukbaum nachhaltig & langlebig sentiment_satisfied Samtweicher Abschliff angenehm zur Haut rounded_corner Abgerundete Kanten für mehr Sicherheit verified_user Schadstoffgeprüft nach DIN EN 71 expand_more chair Inkl. Füße als Sessel nutzbar stairs Rutsche & Kletterleiter für noch mehr Spielmöglichkeiten weekend Kissen in tollen Farben separat erhältlich favorite Familienmomente für gemeinsame Zeit Optionales Zubehör separat erhältlich. document.addEventListener("DOMContentLoaded", function () { if (!("IntersectionObserver" in window)) return; const cards = document.querySelectorAll(".sb-card"); const arrows = document.querySelectorAll(".sb-divider-arrow"); const groups = document.querySelectorAll(".sb-features"); const revealTexts = document.querySelectorAll(".sb-reveal-text"); cards.forEach(el => el.classList.add("sb-fade-in")); arrows.forEach(el => el.classList.add("sb-fade-in")); const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { if (entry.target.classList.contains("sb-features")) { const items = entry.target.querySelectorAll(".sb-feature"); items.forEach((el, i) => { el.classList.add("sb-fade-in"); setTimeout(() => { el.classList.add("is-visible"); }, i * 80); }); } else if (entry.target.classList.contains("sb-reveal-text")) { const lines = entry.target.querySelectorAll("span"); lines.forEach((line, i) => { setTimeout(() => { line.style.opacity = "1"; line.style.transform = "translateY(0)"; }, i * 180); }); } else { entry.target.classList.add("is-visible"); } observer.unobserve(entry.target); } }); }, { threshold: 0.15 }); cards.forEach(el => observer.observe(el)); arrows.forEach(el => observer.observe(el)); groups.forEach(el => observer.observe(el)); revealTexts.forEach(el => observer.observe(el)); });