.price-range {
    border: 1px solid var(--site-border);
    border-radius: 16px;
    padding: 50px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
    position: relative;
}

.price-point {
    text-align: center;
    z-index: 2;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--site-primary);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-label {
    font-size: 0.85rem;
    color: var(--site-text);
}

.price-slider {
    position: relative;
    height: 2px;
    background: linear-gradient(90deg, var(--site-primary) 0%, rgba(0, 229, 255, 0.3) 100%);
}

.price-slider::before, .price-slider::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--site-background);
    border: 2px solid var(--site-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.price-slider::before {
    left: 0;
}

.price-slider::after {
    right: 0;
}

@media only screen and (max-width: 980px) {
    .price-range {
        padding: 30px;
        gap: 30px;
    }  
}