﻿/* ==== فیلتر قیمت لوکس ==== */
.filterbar-box {
    background: #fafafa;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 45px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    direction: rtl;
    text-align: center;
}

.filterbar-row {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.filterbar-select {
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    min-width: 220px;
    background-color: #fff;
    color: #333;
    transition: all 0.25s ease;
}

    .filterbar-select:focus {
        border-color: #888;
        box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
    }

.filterbar-btn {
    background: linear-gradient(135deg, #ed2127, #ed2127);
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .filterbar-btn:hover {
        background: linear-gradient(135deg, #2C2C2C, #2C2C2C);
        transform: translateY(-2px);
    }

    .filterbar-btn:active {
        transform: scale(0.97);
    }

/* نسخه موبایل */
@media (max-width: 768px) {
    .filterbar-row {
        flex-direction: column;
        gap: 12px;
    }

    .filterbar-select, .filterbar-btn {
        width: 100%;
    }
}
