Skip Navigation Website Accessibility
 


Guardian Electric Guitar Hardshell Case

available at

Low in-store inventory, may be subject to change.

Features:

  • Guardian Flat Top Hardshell Case for Electric Guitar
  • 5-Ply Wood Construction
  • Black Tolex Exterior
  • 12mm Padding
  • Black Plush Interior
  • Screwed-In Neck Brace
  • Heavy Duty Gold-Plated Hardware
  • Locking Latch and Key
  • Total Length: 41.75"
  • Body Length: 19.25"
  • Lower Bout: 12.75"
  • Depth: 3"
  • Color: Black
  • UPC: 840246040237
  • MPN: CG-016-E

// === GLOBAL NAV BEHAVIOR FOR MARICH MUSIC === // --- DROPDOWN ON HOVER (DESKTOP ONLY) --- document.addEventListener('DOMContentLoaded', function () { const dropdowns = document.querySelectorAll('.dropdown'); dropdowns.forEach(drop => { drop.addEventListener('mouseenter', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'block'; }); drop.addEventListener('mouseleave', () => { const menu = drop.querySelector('.dropdown-menu'); if (menu) menu.style.display = 'none'; }); }); }); // --- TOGGLE CUSTOM NAV ON MOBILE --- function toggleMobileNav() { const nav = document.querySelector('.menubg'); if (!nav) return; const isVisible = window.getComputedStyle(nav).display !== 'none'; nav.style.display = isVisible ? 'none' : 'flex'; }