.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: Shell: 100% polyamide Lining: 100% polyester Ribbed cuffs and hem Handprinted in Helsinki Size and Fit: Model: Rene Wearing: Extra Large Height: 184 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 choosing your regular size for a classic bomber fit, or sizing up for a more oversized, layered silhouette. Size Chart Wash and Care Machine wash 30°c gentle. Do not bleach. Do not tumble dry. Iron on low heat if needed. Do not dry clean. Wash inside out and separately. 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"); } }); }); });