.vs21-search-form {
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 10px;
  flex: 1 1 auto;
  min-width: 0;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.vs21-search-form:focus-within {
  border-color: rgba(70, 194, 255, 0.4);
  box-shadow: 0 0 12px rgba(19, 127, 236, 0.22);
  background-color: rgba(255, 255, 255, 0.07);
}

.vs21-search-input {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--vs-text);
  font-weight: 500;
  font-size: 14px;
  flex: 1;
  min-width: 0;
  padding: 0 6px;
  height: 100%;
}

.vs21-search-input::placeholder {
  color: var(--vs-text-soft);
  opacity: 0.7;
}

.vs21-search-button {
  background: none !important;
  border: none !important;
  font-size: 15px;
  color: var(--vs-primary-soft);
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.vs21-search-button:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .vs21-search-input {
    font-size: 16px;
  }

  .vs21-search-form {
    height: 32px;
  }
}