.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 9999;
}

/* Show popup */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Popup Box ===== */
.search-btn i {
  font-size: 22px;
}

.popup-box h3 {
  font-size: 30px;
  font-family: var(--font-bold);
  margin-bottom: 5px;
  color: var(--black);
}

.popup-box p {}


.popup-box {
  background: #fff;
  width: 90%;
  max-width: 650px;
  border-radius: 10px;
  padding: 40px;
  transform: scale(.8);
  transition: transform .3s ease;
  position: relative;
  text-align: center;
}

/* Animation */
.popup-overlay.active .popup-box {
  transform: scale(1);
}

/* Close button */
.popup-close {
  position: absolute;
  right: 12px;
  top: 0px;
  font-size: 52px;
  cursor: pointer;
  border: none;
  background: none;
}

/* Button */
.open-btn {
  padding: 12px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.open-btn:hover {
  background: #0056b3;
}

/*************** search ***************/
.input-container {
  display: flex;
  gap: 0 10px;
  align-items: center;
  border-radius: 10px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  align-items: center;
  justify-content: space-between;
}

.search-input {
  flex-grow: 1;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 7px;
  color: var(--black) !important;
  background-color: transparent !important;
  outline: none;
  vertical-align: middle;
  line-height: 50%;
  height: 50px;
  padding: 0 25px;
  font-size: 14px;



}

.search-button {
  background-color: var(--primary-color);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 0;
  outline: none;
}

.search-button:hover {
  background-color: var(--primary-color);
}