Tacoma Bed Step Relocation Bracket .blurb-container { display: flex; flex-direction: column; gap: 24px; } .flex-container { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; transition: all 0.6s ease-out; opacity: 0; transform: translateY(20px); } .flex-container:nth-child(even) { flex-direction: row-reverse; } .blurb-image { width: 600px; height: auto; border-radius: 15px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .blurb-text { flex: 1; } /* New CSS Class for Emoji */ .blurb-emoji { font-size: 100px; /* Adjust size as needed */ display: flex; align-items: center; justify-content: center; width: 600px; /* Match the image width for consistency */ height: 400px; /* Match the placeholder image height */ border-radius: 15px; background-color: #f8f8f8; /* Optional: Add a background color */ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } @media (max-width: 768px) { .flex-container, .flex-container:nth-child(even) { flex-direction: column; text-align: center; } .blurb-image, .blurb-emoji { max-width: 100%; width: 100%; height: auto; } .blurb-emoji { height: auto; font-size: 60px; /* Adjust size for smaller screens */ } } .flex-wrap-4 { display: flex; flex-wrap: wrap; gap: 16px; } .flex-wrap-4 > div { flex: 1 1 calc(50% - 16px); min-width: 150px; } @media (max-width: 480px) { .flex-wrap-4 > div { flex: 1 1 100%; } } .visible { opacity: 1; transform: translateY(0); } Introducing the SXTH Element Bed-Step Relocation Bracket for the 2024+ Tacoma. Engineered to solve the conflict between the OEM bed step and our robust recovery point, this innovative solution lets you enjoy the best of both worlds. The Tacoma’s factory bed step is positioned in a way that conflicts with our recovery point and the OE ARB recovery point. Previously, owners had to choose between retaining the OEM bed step or installing a recovery point for off-road use. Our solution: the SXTH Element bed-Step Relocation Bracket. By slightly repositioning the OEM bed step, it provides just enough clearance to mount the recovery point without compromising functionality or ground clearance. 🔧 Designed for a factory-like fit and finish, our bracket is made from high-strength 304 stainless steel with a durable powder-coated finish. The SXTH Element OEM Bed-Step Relocation Bracket is also compatible with the original ARB recovery point available on the Trailhunter model and as an accessory. Features - Integrates the OEM bed step with our recovery point system seamlessly - Crafted from high-strength 304 stainless steel for lasting durability - Powder-coated finish designed to withstand harsh environments - Maintains factory fit and finish while offering an improved mounting position Product Specs Vehicle Compatibility: Toyota Tacoma 2024+ Material: 304 Stainless Steel Finish: Powder-Coated Installation: Uses existing OEM mounting points Functionality: Integrates OEM bed step with recovery point document.addEventListener("DOMContentLoaded", function () { const blurbs = document.querySelectorAll(".flex-container"); function handleScroll() { blurbs.forEach(blurb => { const blurbPosition = blurb.getBoundingClientRect().top; const windowHeight = window.innerHeight; if (blurbPosition < windowHeight - 100) { blurb.classList.add("visible"); } }); } window.addEventListener("scroll", handleScroll); handleScroll(); // Run on load in case elements are already in view // Auto-switch images in Blurb 3 (Bracket Comparison) const blurb2Image = document.getElementById("blurb2-image"); const images = [ "https://cdn.shopify.com/s/files/1/0700/0883/2298/files/bed-step-relocation-bracket3.png?v=1743028957", "https://cdn.shopify.com/s/files/1/0700/0883/2298/files/bed-step-relocation-bracket2.png?v=1743028957" ]; let currentIndex = 0; setInterval(() => { currentIndex = (currentIndex + 1) % images.length; blurb2Image.src = images[currentIndex]; }, 2000); // Switch every 2 seconds });