.price-range-shell {
  display: grid;
  gap: 22px;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 8px 0 16px;
}

.price-range-summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  color: rgba(29, 29, 30, 0.7);
  font-weight: 800;
}

.price-range-summary output {
  color: #1D1D1E;
  font-size: 24px;
  font-weight: 900;
}

.price-range-summary strong {
  justify-self: end;
  color: #1D1D1E;
}

.price-range-shell input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  accent-color: var(--accent);
  appearance: none;
}

.price-range-shell input::-webkit-slider-runnable-track { height: 5px; background: linear-gradient(90deg, var(--accent) 0 var(--price-progress), #D8D8D8 var(--price-progress) 100%); border-radius: 999px; }

.price-range-shell input::-webkit-slider-thumb { width: 28px; height: 28px; margin-top: -11px; appearance: none; background: var(--accent); border: 2px solid #FDFFFF; border-radius: 50%; }

.price-range-shell input::-moz-range-track { height: 5px; background: #D8D8D8; border-radius: 999px; }

.price-range-shell input::-moz-range-progress { height: 5px; background: var(--accent); border-radius: 999px; }

.price-range-shell input::-moz-range-thumb { width: 28px; height: 28px; background: var(--accent); border: 2px solid #FDFFFF; border-radius: 50%; }
