.search-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #332b2d;
}

.search-box {
  display: flex;
  width: 100%;
  max-width: 500px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-box input[type="text"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 1rem;
  outline: none;
}

.search-box button {
  background-color: #e91e63;
  color: white;
  border: none;
  padding: 0 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-box button:hover {
  background-color: #c2185b;
}

@media screen and (max-width: 480px) {
  .search-box input[type="text"] {
    padding: 0.6rem 1rem;
  }

  .search-box button {
    padding: 0 1rem;
  }
}
