.search-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.search-popup-overlay.active {
  display: flex;
}
.search-popup-overlay .search-popup {
  background: white;
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}
@media (max-width: 768px) {
  .search-popup-overlay .search-popup {
    padding: 30px;
    width: 95%;
  }
}
.search-popup-overlay .search-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.search-popup-overlay .search-popup-header h2 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #071F32;
  margin: 0;
}
.search-popup-overlay .search-popup-header .search-popup-close {
  background: none;
  border: none;
  font-size: 3rem;
  color: #666;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.search-popup-overlay .search-popup-header .search-popup-close:hover {
  background: #f5f5f5;
  color: #071F32;
}
.search-popup-overlay .search-popup-form {
  margin-bottom: 20px;
}
.search-popup-overlay .search-popup-form #desktop-search-input {
  width: 100%;
  padding: 20px;
  font-size: 1.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s ease;
}
.search-popup-overlay .search-popup-form #desktop-search-input:focus {
  border-color: #3F4CCA;
  box-shadow: 0 0 0 3px rgba(63, 76, 202, 0.1);
}
.search-popup-overlay .search-popup-form #desktop-search-input::-moz-placeholder {
  color: #999;
}
.search-popup-overlay .search-popup-form #desktop-search-input::placeholder {
  color: #999;
}
.search-popup-overlay .search-popup-form .search-popup-submit {
  background: #3F4CCA;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}
.search-popup-overlay .search-popup-form .search-popup-submit:hover {
  background: #2d3a9f;
  transform: translateY(-1px);
}
.search-popup-overlay .search-popup-form .search-popup-submit img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.search-popup-overlay .search-suggestions p {
  color: #666;
  font-size: 1.4rem;
  margin: 0;
  text-align: center;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.global-search form {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 8px;
  margin: 10px 0;
}
.global-search form #mobile-search {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 1.4rem;
  outline: none;
  background: transparent;
}
.global-search form #mobile-search::-moz-placeholder {
  color: #999;
}
.global-search form #mobile-search::placeholder {
  color: #999;
}
.global-search form button {
  background: #3F4CCA;
  border: none;
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.global-search form button:hover {
  background: #2d3a9f;
}
.global-search form button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}