/* ===== EstelaBooking · Buscador ===== */
.whb-search{
  display:flex;
  gap:14px;
  align-items:flex-end;
  flex-wrap:wrap;
  padding:16px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e7e7e7;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.whb-field{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:180px;
}

.whb-field label{
  font-size:12px;
  font-weight:700;
  color:#333;
}

.whb-field input{
  height:42px;
  padding:0 12px;
  border-radius:12px;
  border:1px solid #dcdcdc;
  background:#fff;
  font-size:14px;
}

.whb-field input:focus{
  outline:none;
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.1);
}

.whb-btn{
  height:42px;
  padding:0 22px;
  border-radius:12px;
  border:none;
  background:#111;
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition:.15s ease;
}

.whb-btn:hover{
  transform:translateY(-1px);
  opacity:.92;
}

@media (max-width: 640px){
  .whb-search{ padding:14px; }
  .whb-field{ min-width:100%; }
  .whb-btn{ width:100%; }
}
