/* Align the entire search form using Flex */
.searchfix .eshop_advanced_search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Match the heights and spacing of input and button */
.searchfix input[type="text"] {
  height: 40px !important;
  font-size: 14px;
  padding: 6px 12px;
  box-sizing: border-box;
}

.searchfix button {
  height: 40px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 16px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Hide the 'Filter by keyword...' label */
.searchfix label {
  display: none !important;
}

/* Hide the 'Reset all' button */
.searchfix .eshop-reset {
  display: none !important;
}

.searchfix .eshop_advanced_search {
  gap: 20px; /* was 10px in your earlier CSS */
}
