/* Fullscreen Search Overlay */
.search-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: #fcf3ec;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.search-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease-in-out;
}

.search-overlay form {
  width: 80%;
  max-width: 600px;
}

.search-overlay input[type="search"] {
  width: 100%;
  padding: 15px 20px;
  font-size: 1.5rem;
  border: none;
  border-radius: 50px;
  outline: none;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 3rem;
  color: #343535;
  background: none;
  border: none;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}