/* === Wrapper utama === */
.custom-search-form {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 360px;
  margin: 15px 0;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.custom-search-form:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* === Input search === */
.custom-search-form input[type="search"] {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 15px;
  color: #333;
  outline: none;
  background: #fff;
}

.custom-search-form input[type="search"]::placeholder {
  color: #aaa;
  font-style: italic;
}

/* === Tombol === */
.custom-search-form button {
  background-color: #f06c65; /* warna coral */
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  border-left: 1px solid #e05c56;
}

.custom-search-form button:hover {
  background-color: #e85b56;
}

/* === Responsif untuk mobile === */
@media (max-width: 480px) {
  .custom-search-form {
    flex-direction: column;
    max-width: 100%;
    border-radius: 8px;
  }

  .custom-search-form input[type="search"] {
    border-radius: 8px 8px 0 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .custom-search-form button {
    border-radius: 0 0 8px 8px;
    width: 100%;
    border-left: none;
  }
}
