The Blank Tee .collapsible { background-color: #c8b99e; color: #000; /* or white if you want contrast: #fff */ 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; /* slightly darker hover shade */ } .collapsible.active { background-color: #a89c80; /* active state */ } .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; } You asked for it, so we deliver. Our premium t-shirt now as a blank as well. Only includes minimal HELMADE branding on the bottom hem of the shirt. Details: 100% cotton, 240 gsm boxy, drop shoulder fit 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 you to go true to size to achieve the fit shown in pictures or one size down for a more fitted fit. Size Chart Wash and Care Machine wash 30°c easy. Do not bleach. Iron low. Do not tumble dry. Do not dry clean. Wash inside out. 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"); } }); }); });