.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  border: none;
  border-radius: 20px;
  padding: 0 16px;
  height: 48px;
  gap: 10px;
}

.search-bar__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.search-bar__input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.search-bar__icon {
  width: 18px;
  height: 18px;
  opacity: 0.35;
  flex-shrink: 0;
}
