.custom-tabs { margin-top:20px;min-height: 650px; } .custom-tabs .tab-buttons { display:flex; list-style:none; padding:0; margin:0 0 10px; gap: 35px; font-size: 25px; } .custom-tabs .tab-buttons li { padding:10px 20px; cursor:pointer; font-weight:300; border-bottom:2px solid transparent; transition: all 0.2s ease; } .custom-tabs .tab-buttons li.active { font-weight:900; border-bottom:3px solid #fff; /* Highlight active tab */ } .custom-tabs .tab-content { display:none; padding:15px 0; } .custom-tabs .tab-content.active { display:block; } /* MOBILE RESPONSIVE TAB STYLE */ @media (max-width: 600px) { .custom-tabs .tab-buttons { flex-direction: column; /* Stack vertically on mobile */ gap: 10px; /* Smaller spacing */ border-bottom: none; /* Remove long border */ } .custom-tabs .tab-buttons li { padding: 12px 15px; font-size: 18px; border: 1px solid #ddd; /* Make each tab look like a button */ border-radius: 6px; text-align: center; } .custom-tabs .tab-buttons li.active { background: #4B25A1; /* Highlight active tab */ border-color: #000; color: #fff; } } Description Additional Information Reviews Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. Additional inforamtion will be listed here. Reviews comming soon document.addEventListener("DOMContentLoaded", function(){ const buttons = document.querySelectorAll(".tab-buttons li"); const tabs = document.querySelectorAll(".tab-content"); buttons.forEach(btn => { btn.addEventListener("click", function(){ const target = this.dataset.tab; buttons.forEach(b => b.classList.remove("active")); tabs.forEach(t => t.classList.remove("active")); this.classList.add("active"); document.getElementById(target).classList.add("active"); }); }); });