/* Numeric Attribute Filter Type 2 Styles */

.naf2-filter {
    margin-bottom: 20px;
    padding: 5px 0;
}

.naf2-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.naf2-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.naf2-input-group label {
    font-size: 12px;
    margin-bottom: 5px;
    color: #666;
    font-weight: normal;
}

.naf2-input-group input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

.naf2-input-group input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

/* Кнопки в одну строку */
.naf2-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.naf2-apply-btn {
    flex: 1;
    padding: 4px 14px;
    color: #ff6b1b;
    border: 1px solid #ff6b1b;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: background 0.2s;
    background:#fff;
}

.naf2-apply-btn:hover {
     font-weight:bold;
}

.naf2-reset-btn {
    flex: 1;
    margin-left:20px;
    padding: 4px 0px;
    background: #fff;
    color: #000;
    border-bottom: 1px solid #000;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.naf2-reset-btn:hover {
    background: #e0e0e0;
}

/* Индикатор загрузки */
.naf2-loading {
    text-align: center;
    padding: 10px;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .naf2-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .naf2-buttons {
        flex-direction: column;
        gap: 8px;
    }
}