/* استایل برای select box های فیلتر - شبیه دراپ داون */
.osmani-filter-select {
    width: 100%;
    padding: 7px 16px;
    font-size: 14px;
    font-family: 'IRANSans', Arial, sans-serif;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 1% center;
    background-size: 16px;
    /* padding-left: 40px; */
    direction: rtl;
    text-align: right;
}

.osmani-filter-select:hover {
    border-color: #c0c6cc;
    background-color: #f8f9fa;
}

.osmani-filter-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.osmani-filter-select option {
    padding: 8px 12px;
    background-color: #ffffff;
    color: #333;
    font-size: 14px;
}

.osmani-filter-select option:hover {
    background-color: #f0f7ff;
}

/* انیمیشن برای باز شدن */
.osmani-filter-select {
    animation: fadeInSelect 0.3s ease-in-out;
}

@keyframes fadeInSelect {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* مخفی کردن دراپ‌داون‌های قدیمی */
.filter-option .filter-dropdown {
    display: none !important;
}

/* تنظیمات واکنش‌گرا */
@media (max-width: 768px) {
    .osmani-filter-select {
        font-size: 16px; /* جلوگیری از زوم در iOS */
        padding: 14px 16px;
    }
}

/* استایل برای فیلترهای انتخاب شده */
.osmani-filter-select.active {
    border-color: #007cba;
    background-color: #f0f7ff;
}

/* استایل برای لیبل فیلتر */
.filter-option {
    margin-bottom: 15px;
}

.filter-option__main {
    /* margin-bottom: 8px; */
    font-weight: 500;
    color: #555;
}

/* استایل برای آیتم‌های انتخاب شده */
.osmani-filter-select option:checked {
    background-color: #007cba;
    color: white;
}