.wt-filters {
  box-sizing: border-box;
  padding: 24px;
  background-color: var(--color-primary);
  border-radius: 20px;
  margin: 24px 0;
  color: #fff;
}

.wt-filters__title {
  margin: 0 0 16px 0;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
}

/* Row with 3 selects + CTA on one line (each ~25%) */
.wt-filters__controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.wt-filters__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wt-label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.wt-select__search {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #111;
}

.wt-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  background: #fff;
  color: #111;
  font-size: 14px;
}

.wt-select--expanded {
  position: relative;
  z-index: 5;
}

.wt-status {
  min-height: 18px;
  font-size: 12px;
  color: #e8e8e8;
}

.wt-filters__cta {
  display: flex;
  justify-content: stretch;
  align-self: stretch;
}

.wt-button {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  background: #fff;
  color: #111;
}

.wt-button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.wt-combobox {
  position: relative;
}

.wt-combobox__icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.wt-combobox__icon::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(45deg);
}

.wt-combobox--open .wt-combobox__icon::before {
  transform: rotate(-135deg);
}

.wt-combobox__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #111;
}

.wt-combobox__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  max-height: 280px;
  overflow: auto;
  z-index: 20;
}

.wt-menu__list { list-style: none; margin: 0; padding: 6px; }
.wt-menu__item {
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: #111;
}
.wt-menu__item:hover { background: #f2f2f2; }

/* Mobile: stack under each other; labels remain visible */
@media (max-width: 768px) {
  .wt-filters {
    padding: 16px;
  }
  .wt-filters__title {
    margin-bottom: 12px;
    font-size: 22px;
  }
  .wt-filters__controls {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .wt-filters__cta .wt-button--cta {
    width: 100%;
  }
}
