/* Slider de precios - diseño minimalista */
.price-filter {
  width: 100%;
  margin: 2px 0;
  padding: 7px 1px 9px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.price-input {
  width: 100%;
  margin: 0 0 15px;
}

.price-input .price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price-input .price-title {
  position: relative;
  padding-left: 11px;
  color: #404742;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
}

.price-input .price-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 14px;
  background: #078c0d;
  border-radius: 999px;
  transform: translateY(-50%);
}

.price-input .price-values {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.price-input .price-value {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
  background: transparent;
  border: 0;
}

.price-input .price-value-label {
  color: #9aa29c;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .55px;
}

.price-input .valores {
  color: #077d0c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.2px;
  white-space: nowrap;
}

.price-input .price-values-separator {
  color: #c5cbc6;
  font-size: 14px;
  font-weight: 300;
}

.slider {
  height: 4px;
  position: relative;
  background: #e3e8e4;
  border-radius: 999px;
}

.slider .progress {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  border-radius: 999px;
  background: #078b0d;
  box-shadow: none;
}

.range-input {
  position: relative;
  height: 18px;
}

.range-input input[type="range"] {
  position: absolute;
  width: 100%;
  height: 18px;
  top: -11px;
  left: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.range-input input[type="range"]:focus {
  outline: none;
}

.range-input input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border: 0;
}

.range-input input[type="range"]::-webkit-slider-thumb {
  width: 19px;
  height: 19px;
  margin-top: -8px;
  border: 0;
  border-radius: 50%;
  background: #078b0d;
  box-shadow: 0 0 0 3px #fff, 0 2px 7px rgba(21, 55, 26, .25);
  cursor: grab;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.range-input input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.12);
  box-shadow: 0 0 0 3px #fff, 0 2px 9px rgba(21, 55, 26, .32);
}

.range-input input[type="range"]::-moz-range-track {
  height: 4px;
  background: transparent;
  border: 0;
}

.range-input input[type="range"]::-moz-range-progress {
  background: transparent;
}

.range-input input[type="range"]::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border: 0;
  border-radius: 50%;
  background: #078b0d;
  box-shadow: 0 0 0 3px #fff, 0 2px 7px rgba(21, 55, 26, .25);
  cursor: grab;
  pointer-events: auto;
  transition: transform .12s ease, box-shadow .12s ease;
}

.range-input input[type="range"]::-moz-range-thumb:active {
  cursor: grabbing;
  transform: scale(1.12);
}

.range-input input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(7, 139, 13, .15), 0 2px 7px rgba(21, 55, 26, .25);
}

.range-input input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(7, 139, 13, .15), 0 2px 7px rgba(21, 55, 26, .25);
}

@media (max-width: 600px) {
  .price-filter {
    padding: 5px 0 8px;
  }

  .price-input {
    margin-bottom: 15px;
  }

  .price-input .price-title {
    padding-left: 9px;
    font-size: 12px;
  }

  .price-input .price-values {
    gap: 7px;
  }

  .price-input .price-value-label {
    font-size: 8px;
  }

  .price-input .price-value {
    gap: 3px;
  }

  .price-input .valores {
    font-size: 13px;
  }

  .price-input .price-values-separator {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .price-input .price-value-label {
    display: none;
  }
}
