/* ================================
   Bellemann - Filter Block Styles
================================ */

.bellemann-filter {
  max-width: 1200px;
  margin: 0 auto; 
}

/* ----------------------------
   Form Grid
----------------------------- */
.bellemann-filter__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ----------------------------
   Dropdowns
----------------------------- */
.bellemann-filter__field {
  position: relative;
}

.bellemann-filter__field select {
  width: 100%;
  padding: 12px;
  padding-right: 35px; /* space for arrow */
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s ease;
  margin: 0;

  /* remove native arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Custom dropdown arrow */
.bellemann-filter__field::after {
  content: "▼";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #666;
  pointer-events: none;
}

.bellemann-filter__field select:focus {
  outline: none;
  border-color: #FFD800;
}

/* ----------------------------
   Submit Button
----------------------------- */
.bellemann-filter .bellemann-btn {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
}
