/* ==================================================
   Sidebar Filter CSS
   ================================================== */
.filter-widget-box {
    background: #16122b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.filter-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group label {
    display: block;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.filter-input:focus { border-color: #a855f7; }

/* Price Range */
.price-range-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}
.price-range-inputs span { color: #9ca3af; }

/* Filter Buttons */
.btn-apply-filter {
    width: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #a855f7 100%);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: 0.3s;
}
.btn-apply-filter:hover { opacity: 0.9; }

.btn-clear-filter {
    display: block;
    width: 100%;
    text-align: center;
    color: #ef4444;
    text-decoration: none;
    font-size: 13px;
    padding: 10px;
}
.btn-clear-filter:hover { text-decoration: underline; }

/* ==================================================
   Select Dropdown Fix (Product Type)
   ================================================== */
select.filter-input {
    background-color: #0f0c20 !important; /* ডার্ক ব্যাকগ্রাউন্ড */
    color: #ffffff !important; /* সাদা টেক্সট */
}

select.filter-input option {
    background-color: #0f0c20 !important; /* অপশন লিস্টের ডার্ক ব্যাকগ্রাউন্ড */
    color: #ffffff !important; /* অপশন লিস্টের সাদা টেক্সট */
    padding: 10px;
}