Skip to content

Your Cart

  • Mail

  • Phone

    +91 98779 06191

  • Address

    Chekerian road Jawharke near Akal academy mansa Punjab

Enquiry Form

document.addEventListener("DOMContentLoaded", function() { // Select mobile search icon const mobileSearchBtn = document.querySelector('.dT_TopStickySearchBtn.mobile-only'); const searchOverlay = document.getElementById('dT_top-sticky'); const closeBtn = document.querySelector('.dT_TopStickySearchCloseBtn'); const overlayBg = searchOverlay ? searchOverlay.querySelector('.search-overlay') : null; if (mobileSearchBtn && searchOverlay) { // Open overlay on click mobileSearchBtn.addEventListener('click', function(e) { e.preventDefault(); searchOverlay.style.display = 'block'; // show overlay const input = searchOverlay.querySelector('input[type="text"]'); if(input) input.focus(); // focus search input document.body.classList.add('search-open'); // prevent background scroll }); } // Close overlay with close button if (closeBtn) { closeBtn.addEventListener('click', function(e) { e.preventDefault(); searchOverlay.style.display = 'none'; document.body.classList.remove('search-open'); }); } // Close overlay when clicking background if (overlayBg) { overlayBg.addEventListener('click', function() { searchOverlay.style.display = 'none'; document.body.classList.remove('search-open'); }); } });