/* Select2 overrides for the homepage taxonomy search */

/* The container / trigger box */
.select2-container--default .select2-selection--single {
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  padding-left: 16px;
  color: #475569;
  font-size: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #94a3b8;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
  right: 10px;
}

/* Dropdown panel */
.select2-dropdown {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  overflow: hidden;
}

/* Search field inside dropdown */
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.875rem;
  outline: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234,88,12,.12);
}

/* Result items */
.select2-results__option {
  font-size: 0.9375rem;
  padding: 8px 14px;
  color: #334155;
}

/* Highlighted / hovered item — orange instead of default blue */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #ea580c;
  color: #fff;
}

/* Force white text on highlighted items even when JS sets inline color */
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable span {
  color: #fff !important;
}

/* Group header (optgroup label) */
.select2-results__group {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 10px 14px 4px;
}

/* "No results" message */
.select2-container--default .select2-results__message {
  color: #94a3b8;
  font-size: 0.875rem;
  padding: 10px 14px;
}

/* Clear button */
.select2-container--default .select2-selection--single .select2-selection__clear {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-right: 4px;
}

/* Focus state on the trigger */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #ea580c;
  box-shadow: 0 0 0 3px rgba(234,88,12,.12);
  outline: none;
}
