Product Description
/* Accordion Styles */.mek-accordion { background-color: #f9f9f9; color: #000; cursor: pointer; padding: 14px 18px; width: 100%; border: none; text-align: left; font-size: 17px; font-weight: bold; border-radius: 6px; margin-top: 12px; transition: 0.3s; box-shadow: 0 2px 4px rgba(0,0,0,0.05); display: flex; justify-content: space-between; align-items: center;}.mek-accordion:hover { background-color: #ececec;}.mek-accordion .arrow { transition: transform 0.3s ease; font-size: 18px;}.mek-accordion.active .arrow { transform: rotate(180deg);}.mek-panel { padding: 0 16px; display: none; overflow: hidden; background-color: #fff; border-left: 3px solid #ccc; border-radius: 0 0 6px 6px; margin-bottom: 10px;}.mek-panel ul { margin: 12px 0; padding-left: 20px;}.mek-panel li { margin-bottom: 8px;}/* Centered Text + Heading Styles */.centered-text { text-align: center; margin: 20px 0;}.centered-text h2 { font-weight: bold; margin-bottom: 10px; color: #000;}.centered-text .intro-blue { color: #002f6c !important; font-weight: bold;} Just like your phone needs a case, your JeepA(R) Brand vehicle needs protection too. Hit the trails-not your paint-with MEK Armor. MEK's JeepA(R) WranglerA(R) JL Trail Armor is the first removable, reusable paint protection that combines bold style with serious performance. ?'? Why You'll Love It Nano-Hold Technology: A custom-engineered gel layer creates a powerful, reusable bond to your JeepA(R) Brand vehicle's aluminum body-no magnets, no adhesives, no residue. Full Trail Protection: Defends against branch rash, brush scrapes, and flying trail debris so your paint stays resale-ready. Quick Install, Easy Removal: No tools or experience required-line it up, press it on, and hit the trails. Reusable Up to 200 Times: Simply rinse with water and air dry to reactivate the gel grip. Performs in Any Climate: Built to handle rain, mud, snow, and heat from 15AdegF to 180AdegF with a durable UV fade-resistant coating. Choose Your Look Fully Customizable: Pick from MEK's bold designs or create your own custom artwork. NEW PPV Option: Automotive-grade Paint Protection Vinyl for a semi-permanent install that looks sharp and lasts for years-perfect for daily drivers. Smart Protection for Smart Off-Roaders Skip the costly paint repair bills and enjoy real adventure with confidence. Your JeepA(R) Brand vehicle deserves the same protection your phone gets-a case that works hard and looks even better. ?'? Select your design, choose your material (Nano-Hold or PPV), and protect your paint before your next trail day. See It On Your JeepA(R) Brand Vehicle Below!document.querySelectorAll(".mek-accordion").forEach(acc => { acc.addEventListener("click", function() { this.classList.toggle("active"); let panel = this.nextElementSibling; panel.style.display = (panel.style.display === "block") ? "none" : "block"; });});