Fernscape Playmat is made from eco-friendly, non-toxic Ethylene Vinyl Acetate (EVA), offering safe cushioning for tummy time, crawling, and first steps. Its water-resistant, wipe-clean surface makes it easy to maintain. Lightweight, compact, and stylish, it’s perfect for any play area Product Overview Product Details /* Container for tabs */ .tab-container { max-width: 800px; margin: auto; font-family: Arial, sans-serif; } /* Individual tabs */ .tab { border: 1px solid #ddd; border-radius: 5px; margin-bottom: 10px; overflow: hidden; } /* Tab headers */ .tab-header { background-color: #f9f9f9; padding-top: 5px; padding-right: 15px; padding-bottom: 1px; padding-left: 15px; cursor: pointer; display: flex; align-items: center; font-size: 16px; font-weight:bold; transition: background-color 0.3s ease; } /* Add spacing between icon and text */ .tab-header .icon { margin-left: auto; /* Push the icon to the right */ font-size: 18px; font-weight: bold; color: #444; transition: transform 0.3s ease; } /* Rotating icon when open */ .tab-header.open .icon { transform: rotate(45deg); } /* Content inside each tab */ .tab-content { display: none; padding: 15px; background-color: #fff; border-top: 1px solid #ddd; font-size: 14px; } /* List style for tab content */ .tab-content ul { padding-left: 20px; } .tab-content ul li { margin-bottom: 5px; } Dimensions and Details + Dimensions: 6 ft x 4 ft Thickness: 1.2 cm Tiles: 6 tiles, each tile 60cm x 60cm What We Believe In + Safety First: Meets CPSIA standards, non-toxic, and free from harmful substances Stylish Design: Sleek and modern, perfect for any room—nursery, playroom, or gym. Supports Milestones: Provides the right firmness and cushion for tummy time, crawling, and first steps. Easy to Clean:Waterproof and wipeable for hassle-free maintenance Compact Convenience:Easy to assemble and store in a zipper bag. Stylish Design: Modern, sleek, and perfect for any space. Quality Assured Exceeds EN71 - EU Toy Safety Testing standards Exceeds ASTM F963 - US Toy Safety standards CPSIA Compliant Usage Instructions + Easy to Clean: Use an all-purpose cleaner or mild dish soap with water to wipe the mat clean. Make sure to dry it completely. Handle with Care: Avoid using a power vacuum cleaner, as it may damage the mat’s surface.. Protect the Surface: Shoes are okay, but avoid sharp objects like high heels or pet claws that can cause damage.. Gentle Cleaners Only: Steer clear of corrosive or abrasive cleaners, as they can harm the mat.. Proper Placement: Ensure the floor is clean and dry before placing the mat, and avoid trapping moisture underneath. Warranty and Returns + Friendly Returns: We offer full refunds on opened and unused items within 30 days of purchase. Exchanges: Want to exchange? No problem! We'll handle it. Warranty: Our 365-day warranty comes free with all products. Read more about our Valioza Return and Refund policy document.querySelectorAll('.tab-header').forEach(header => { header.addEventListener('click', () => { const content = header.nextElementSibling; const isOpen = header.classList.contains('open'); // Close all tabs document.querySelectorAll('.tab-content').forEach(tab => tab.style.display = 'none'); document.querySelectorAll('.tab-header').forEach(header => header.classList.remove('open')); // Open the clicked tab if (!isOpen) { content.style.display = 'block'; header.classList.add('open'); } }); });