.cpf-filter {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.cpf-filter__group { width: 100%; }
.cpf-filter__heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}
.cpf-filter__values {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}
.cpf-filter__range {
  position: relative;
  height: 28px;
}
.cpf-filter__track,
.cpf-filter__progress {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  border-radius: 99px;
}
.cpf-filter__track {
  left: 0; right: 0;
  background: #ddd;
}
.cpf-filter__progress {
  background: #111;
  z-index: 1;
}
.cpf-filter__range input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  pointer-events: none;
  background: transparent;
  z-index: 2;
}
.cpf-filter__range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #111;
  cursor: pointer;
  pointer-events: auto;
}
.cpf-filter__range input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #111;
  cursor: pointer;
  pointer-events: auto;
}
.cpf-filter__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cpf-filter__color {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.cpf-filter__color span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--cpf-color, #e8e8e8);
}
.cpf-filter__color:hover { transform: scale(1.08); }
.cpf-filter__color.is-active {
  border-color: transparent;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #111;
}
.cpf-filter__reset {
  align-self: flex-start;
  border: 1px solid #111;
  background: transparent;
  padding: 9px 14px;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
}
.cpf-filter__status {
  min-height: 18px;
  font-size: 12px;
  opacity: .65;
}
html.cpf-loading [data-cpf-products] { opacity: .45; transition: opacity .2s ease; }
@media (max-width: 767px) {
  .cpf-filter { gap: 22px; }
}
