HELMADE Staples Set .collapsible { background-color: #c8b99e; color: #000; border: none; padding: 10px 18px; font-size: 16px; text-align: left; width: 100%; cursor: pointer; appearance: none; -webkit-appearance: none; -moz-appearance: none; -webkit-tap-highlight-color: transparent; text-decoration: none; font-weight: normal; transition: background-color 0.3s ease; } .collapsible:hover { background-color: #b3a789; } .collapsible.active { background-color: #a89c80; } .content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background-color: #fafafa; padding: 0 18px; } .content.open { padding: 10px 18px; } .content p { margin: 10px 0; } Details: 70% cotton / 30% polyester 330 gsm brushed fleece Loose, relaxed fit Handprinted in Helsinki Size and Fit: Model: Ida Wearing: Small Height: 157 cm Shipping Shipping Costs: Free shipping for orders over €69 in Finland and over €99 in Europe. Shipping costs for other orders are shown at checkout after entering your address. Delivery Times: Finland: 1–3 business days Europe: 4–7 business days International: 7–10 business days Order Processing: Orders are processed within 1–3 business days. You will receive a tracking number by email once your order has shipped. Returns: 14‑day right of return from the date of delivery, in accordance with EU consumer protection law. Size recommendations We recommend going true to size for a loose, effortless look. Size down for a more fitted silhouette or up for an oversized streetwear fit. Size Chart Wash and Care Machine wash 30°c gentle. Do not bleach. Do not tumble dry. Iron on low heat if needed. Wash inside out with similar colors. Avoid fabric softeners to preserve print and shape. document.addEventListener("DOMContentLoaded", function () { const collapsibles = document.querySelectorAll(".collapsible"); collapsibles.forEach(button => { button.addEventListener("click", function () { const content = this.nextElementSibling; this.classList.toggle("active"); if (content.style.maxHeight) { content.style.maxHeight = null; content.classList.remove("open"); } else { content.style.maxHeight = content.scrollHeight + "px"; content.classList.add("open"); } }); }); });