.auction-search{
    background-color: #efefef;
}

.filters-box{
    position: sticky;
    top: 0;
}

/* Slider */

.slider .noUi-connect {
    background: #2196F3; /* синя лінія */
}

.slider .noUi-handle:after,
.slider .noUi-handle:before{
    display: none;
}

.slider.noUi-horizontal{
    height: 8px;
}

.slider .noUi-handle {
    border: 2px solid #fff;
    background: #2196F3;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    width: 18px;
    height: 18px;
    border-radius: 25px;
}

.inputs-row input {
    text-align: center;
}

.slider {
    margin-top: 10px;
}

/* TAG */

.model-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    position: relative;
    cursor: pointer;
}

.tag input {
    display: none;
}

.tag span {
    display: inline-block;
    padding: 8px 18px;
    background: #f1f1f1;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    border: 2px solid transparent;
    transition: 0.2s;
}

/* Hover */
.tag:hover span {
    background: #e7e7e7;
}

/* Checked */
.tag input:checked + span {
    border-color: #007bff;
    background: #ffffff;
    color: #007bff;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}



/* Single Lot */

.lot-title {
    font-size: 28px;
    font-weight: 700;
}

.lot-subtitle {
    font-size: 15px;
    color: #6c757d;
}

.thumb-img {
    width: 110px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.2s;
}

.thumb-img:hover {
    transform: scale(1.05);
    border: 2px solid #0d6efd;
}

.main-img {
    width: 100%;
    border-radius: 8px;
}

.info-box {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 18px;
    background: #fff;
}

.bid-box {
    border-radius: 10px;
    border: 2px solid #198754;
    padding: 20px;
    background: #f8fff8;
}

.table-params td {
    padding: 6px 0;
}

.seller-box {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 18px;
    background: #fff;
}