.search-item {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  width: 90%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
  z-index: 999;
}

.search-item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.search-item input {
  width: 100%;
  padding: 14px 18px;
  border: none;
  outline: none;
  border-radius: 12px;
  font-size: 15px;
  color: #111827;
  background-color: rgba(243,244,246,0.9);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.search-item input::placeholder {
  color: #6b7280;
  font-weight: 500;
}

.search-item input:focus {
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(33,117,202,0.2);
}

/* #search-toggle {
  cursor: pointer;
  font-size: 20px;
  color: #4b5563;
  transition: color 0.2s ease, transform 0.2s ease;
} */

/* #search-toggle:hover {
  color: #1d4ed8;
  transform: scale(1.1);
} */

