/* ══ SELECT2 THEME OVERRIDE ══ */
.select2-container--default .select2-selection--single {
  height: 45px !important;
  border: 1.5px solid #ece5f8 !important;
  border-radius: 10px !important;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none !important;
  outline: none;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: #d63384 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(214, 51, 132, 0.1) !important;
}

.select2-container--default.select2-container--open .select2-selection--single {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #1e0a2e !important;
  font-size: 0.95rem !important;
  /* padding-left: 34px !important; */
  padding-right: 30px !important;
  display: flex !important;
  align-items: center;
  line-height: normal !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 38px !important;
  right: 8px !important;
  width: 24px !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #a892c0 transparent transparent transparent !important;
  border-width: 5px 4px 0 4px !important;
  transition: transform 0.3s;
}

.select2-container--default.select2-container--open
  .select2-selection__arrow
  b {
  transform: rotate(180deg);
  border-color: #d63384 transparent transparent transparent !important;
}

.select2-dropdown {
  border: 1.5px solid #ece5f8 !important;
  border-top: none !important;
  border-radius: 0 0 10px 10px !important;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15) !important;
  overflow: hidden;
  margin-top: 0;
  background: #fff !important;
  animation: selectFadeIn 0.2s ease-out;
  z-index: 2000 !important;
}

@keyframes selectFadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.select2-search--dropdown {
  padding: 8px !important;
}

.select2-search--dropdown .select2-search__field {
  border: 1.5px solid #ece5f8 !important;
  border-radius: 6px !important;
  padding: 6px 10px !important;
  font-family: "Sarabun", sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: #d63384 !important;
}

.select2-results__option {
  padding: 8px 14px !important;
  font-size: 0.9rem !important;
  color: #1e0a2e !important;
  transition: all 0.15s;
  display: flex !important;
  align-items: center;
  font-family: "Sarabun", sans-serif;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected],
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: rgba(214, 51, 132, 0.08) !important;
  color: #d63384 !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: linear-gradient(135deg, #d63384, #7c3aed) !important;
  background: linear-gradient(135deg, #d63384, #7c3aed) !important;
  color: #fff !important;
  font-weight: 700;
}
