Product Description Strike a match and embrace the adventure of the outdoors or the cosiness of a log fire inside. Matchsticks is a simple yet effective design, with the tips of the sticks resembling surface print dots. In fabric, Matchsticks move horizontally on a much larger scale than the wallpaper design. A boucle-style twisted yarn gives added texture to these irregular matchsticks. Product Specification Item Type: Weave Collection: Oakham Weaves Design Code: 134629 Brand: Scion Usable Width: 143 cm / 56.3 in Vertical Pattern Repeat: 18 cm / 7.09 in Horizontal Pattern Repeat: 23 cm / 9.06 in Pattern Match: Straight Match Composition: 100% Re-cycled Polyester Unit of Measure: Metre Technical Information FR Standards: Not applicable/Tested, Treatable to BS5852 (1) Match, Inherent USA California Bulletin 117 FR Test Results: Meets Cig Test BS5852 (0) (Less than 75% Nat Fibres) Treatable to BS5852 (1) Match Test After Care: No Machine Wash - SDC / No Ble / No tumb / W Iron / SDC (Spec) /* This CSS ensures the custom icons work and is now RESTRICTED to only apply to elements with the class .product-info-details */ .product-info-details > summary { list-style: none; /* Hide default triangle/arrow */ } .product-info-details > summary::after { content: '+'; /* Default state: show plus sign */ font-size: 1.5em; margin-left: 10px; } /* The Product Description dropdown will now show the minus sign when open */ .product-info-details[open] > summary::after { content: '−'; /* Open state: show minus sign */ } /* Ensure the icon is placed correctly when hiding the default marker */ details > summary { list-style-type: none; } // FIX: Aggressively ensures the Description is open and others are closed on load. document.addEventListener("DOMContentLoaded", function() { // 1. Force Open the Description (Box 1) const descriptionElement = document.querySelector('.description-details'); if (descriptionElement) { descriptionElement.setAttribute('open', 'open'); } // 2. Force Close the Specification (Box 2) const specElement = document.querySelector('.product-spec'); if (specElement) { specElement.removeAttribute('open'); } // 3. Force Close the Technical Info (Box 3) const techElement = document.querySelector('.product-tech'); if (techElement) { techElement.removeAttribute('open'); } });