.stand-filter-wrapper { 
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 
    background: #fff; 
    padding: 25px; 
    border-radius: 8px; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); 
    max-width: 100%;
    overflow-x: auto;
}

.filter-row-headers, 
.filter-row-inputs { 
    display: flex; 
    flex-wrap: nowrap;
    width: 100%;
    min-width: 900px;
}

.filter-row-headers { 
    border-bottom: 2px solid #e0e0e0; 
    padding-bottom: 12px; 
    margin-bottom: 12px; 
    font-weight: 700; 
    color: #333;
    font-size: 14px;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
}

.f-col { 
    padding: 0 15px; 
    box-sizing: border-box; 
    border-right: 1px solid #f0f0f0; 
    flex-shrink: 0;
}

.col-orient { flex-basis: 18%; max-width: 18%; }
.col-num    { flex-basis: 11%; max-width: 11%; }
.col-feat   { flex-basis: 23%; max-width: 23%; }
.col-price  { flex-basis: 26%; max-width: 26%; border-right: none; }

.f-col label { 
    display: block; 
    margin-bottom: 6px; 
    font-size: 13px; 
    color: #666; 
    cursor: pointer; 
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.f-col label:hover { 
    color: #000;
}
.f-col input[type="checkbox"] { 
    margin-right: 6px; 
    border-radius: 3px;
    position: relative;
}
.f-col input[type=checkbox]:checked:before {
    position: absolute;
    left: 0px;
    top: 1px;
    width: 14px;
    font-size: 11px;
}

.price-container { 
    padding-top: 0;
}

.price-values { 
    text-align: center; 
    font-weight: bold; 
    font-size: 13px; 
    color: #5f9da6;
    margin-bottom: 8px;
}

#price-slider-range { 
    height: 6px; 
    background: #e0e0e0; 
    border: none; 
    width: 90%;
    margin: 0 auto;
}
#price-slider-range .ui-slider-range { 
    background: #5f9da6;
}

#price-slider-range .ui-slider-handle { 
    width: 14px; 
    height: 14px; 
    border-radius: 50%; 
    background: #fff; 
    border: 2px solid #5f9da6; 
    top: -5px; 
    outline: none; 
    cursor: pointer; 
}

.stand-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

.stand-item { 
    border: 1px solid #eaeaea; 
    background: #fff; 
    border-radius: 6px; 
    overflow: hidden; 
    transition: transform 0.2s, box-shadow 0.2s;
}
.stand-item:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.08); }
.stand-img { height: 200px; background-color: #f9f9f9; background-size: cover; background-position: center; }
.stand-details { padding: 20px; }
.stand-name { font-size: 18px; font-weight: 700; margin-bottom: 15px; color: #2c3e50; display: block; }

.stand-data-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 8px; 
    font-size: 13px; 
    border-bottom: 1px solid #f5f5f5; 
    padding-bottom: 8px; 
}
.stand-data-row:last-child { border-bottom: none; margin-bottom: 0; }
.data-label { font-weight: 600; color: #333; }
.data-value { color: #666; text-align: right; }

.view-btn { 
    display: block; 
    width: 100%; 
    padding: 12px; 
    background: #5f9da6; 
    color: #fff; 
    text-align: center; 
    text-decoration: none; 
    margin-top: 20px; 
    border-radius: 4px; 
    font-weight: 600; 
    font-size: 13px;
    transition: background 0.2s;
}
.view-btn:hover { background: #357abd; }

.stand-loader { display: none; text-align: center; padding: 30px; color: #888; }
.stand-no-results { grid-column: 1 / -1; text-align: center; padding: 40px; color: #777; background: #f9f9f9; border-radius: 8px; }

@media only screen and (max-width: 767px){
    #stand-filter-form{
        overflow: auto;
    }
    /*.f-col{
        border-bottom: 1px solid #f0f0f0;
        border-right: 0;
    }
    .col-orient { flex-basis: 100%; max-width: 100%; }
    .col-num    { flex-basis: 100%; max-width: 100%; }
    .col-feat   { flex-basis: 100%; max-width: 100%; }
    .col-price  { flex-basis: 100%; max-width: 100%; border-bottom: none; }*/
}