/* ---- Progress steps ---- */
#configurator-steps {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  padding: 14px 15px 10px;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#configurator-steps::-webkit-scrollbar {
  display: none;
}
.conf-step {
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  padding: 0 6px 0 0;
  min-width: 60px;
}
.conf-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 8px;
  left: calc(50% + 10px);
  width: calc(100% - 20px);
  height: 2px;
  background: #d1d5db;
  z-index: 0;
}
.conf-step.completed:not(:last-child)::after {
  background: #003782;
}
.step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d1d5db;
  margin: 0 auto 5px;
  position: relative;
  z-index: 1;
  transition: background 0.25s, border-color 0.25s;
}
.conf-step.completed .step-dot {
  background: #003782;
  border-color: #003782;
}
.conf-step.completed .step-dot::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin: 1px auto 0;
}
.step-label {
  font-size: 10px;
  color: #9ca3af;
  white-space: nowrap;
  font-family: 'Ubuntu', sans-serif;
  transition: color 0.25s;
}
.conf-step.completed .step-label {
  color: #003782;
  font-family: 'Ubuntu-Bold', sans-serif;
}
/* ---- / Progress steps ---- */

.case-manufacturer-filter {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}
.case-manufacturer-filter label {
  display: block;
  padding: 0 15px;
  font-family: 'Ubuntu-Bold', sans-serif;
  background: #f0f4ff;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
  color: #111827;
}
.case-manufacturer-filter .select2-container {
  flex: 1;
}
/* Select2 — избраната стойност */
.case-manufacturer-filter .select2-selection--single {
  height: 40px !important;
  border: none !important;
  border-radius: 0 !important;
  background: #f8f9fa !important;
  display: flex !important;
  align-items: center !important;
}
.case-manufacturer-filter .select2-selection__rendered {
  font-family: 'Ubuntu-Bold', sans-serif !important;
  font-size: 14px !important;
  color: #111827 !important;
  line-height: 40px !important;
  padding-left: 14px !important;
}
.case-manufacturer-filter .select2-selection__arrow {
  height: 40px !important;
  top: 0 !important;
}
/* Select2 — dropdown списък */
.select2-dropdown {
  border: 1px solid #e5e7eb !important;
  border-radius: 6px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
  overflow: hidden;
}
.select2-search--dropdown {
  padding: 8px !important;
  border-bottom: 1px solid #e5e7eb;
  background: #f8f9fa;
}
.select2-search--dropdown .select2-search__field {
  border: 1.5px solid #d1d5db !important;
  border-radius: 4px !important;
  padding: 6px 10px !important;
  font-family: 'Ubuntu', sans-serif !important;
  font-size: 13px !important;
  outline: none !important;
  width: 100% !important;
}
.select2-search--dropdown .select2-search__field:focus {
  border-color: #003782 !important;
}
.select2-results__options {
  max-height: 260px !important;
  overflow-y: auto !important;
}
.select2-results__option {
  padding: 9px 14px !important;
  font-family: 'Ubuntu-Bold', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #374151 !important;
  border-bottom: 1px solid #f3f4f6 !important;
}
.select2-results__option:last-child {
  border-bottom: none !important;
}
.select2-results__option--highlighted {
  background: linear-gradient(90deg, #111827 0%, #003782 100%) !important;
  color: #fff !important;
  font-family: 'Ubuntu-Bold', sans-serif !important;
}
.select2-results__option[aria-selected="true"] {
  background: #eff6ff !important;
  color: #003782 !important;
  font-family: 'Ubuntu-Bold', sans-serif !important;
}
