.search-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: white;
  z-index: 9999;
  text-align: center;
  padding-top: 100px;
  transition: all 0.3s ease;
}

.search-popup.active {
  display: block;
}

.search-popup h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: bold;
}

.search-popup p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.search-popup input[type="text"] {
  width: 60%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
