// Check if the device is a desktop (using media query)
if (window.matchMedia("(min-width: 768px)").matches) {
// Find the search bar element
let searchBar = document.querySelector(".desktop-search-bar");
// Remove the search bar if it exists
if (searchBar) {
searchBar.remove();
}
}