* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #f9f6ee;
}

.wrapper {
  width: 100%;
  max-width: 800px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

#search-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #ccc;
  border-radius: 30px;
  font-size: 16px;
  background-color: #fff;
  transition: all 0.3s ease;
}

#search-input:focus {
  border-color: #902727;
  outline: none;
}

#search-container button {
  padding: 12px 25px;
  background-color: #902727;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#search-container button:hover {
  background-color: #7a1f1f;
}

#buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.button-value {
  border: 2px solid #902727;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: transparent;
  color: #902727;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-value:hover,
.button-value.active {
  background-color: #902727;
  color: #fff;
}

@media (max-width: 620px) {
  #search-container {
    flex-direction: column;
  }

  #search-input,
  #search-container button {
    width: 100%;
  }

  .button-value {
    flex: 1 1 45%;
    text-align: center;
  }
}
