/* 📝 العنوان - تم تعديل اللون إلى الأبيض */
.filter-image h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff; /* اللون الأبيض */
    margin-bottom: 18px;
}

/* 🎯 خلفية لون ثابت */
.filter-section {
    background: #8b5e34; /* بني ثابت */
    padding: 50px 15px;
}

/* 📦 البانر */
.filter-outer {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* 📐 تخطيط أفقي */
.search-inputs-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

/* 📦 الحقول */
.search-inputs-wrapper .row {
    flex: 1;
    background: transparent;
    margin: 0;
    padding: 0;
}

/* 🔽 الدروب داون */
.filter-dropdown {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 5px 10px;
    font-size: 14px;
    background: #fafafa;
    transition: 0.2s;
}

.filter-dropdown:focus {
    border-color: #8b5e34;
    background: #fff;
    outline: none;
}

/* 🔘 زر البحث */
.filter-btn {
    max-width: 150px;
}

#tires-filter {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    background: #5c3a21;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s;
}

#tires-filter:hover {
    background: #6f4528;
    transform: translateY(-1px);
}

/* 📱 الجوال */
@media (max-width: 768px) {
    .search-inputs-wrapper {
        flex-direction: row; /* ✅ أفقي بدل عمودي */
        gap: 6px;
    }

    .search-inputs-wrapper .row {
        flex: 1;
    }

    .filter-btn {
        max-width: 100%;
        margin-top: 10px;
    }

    .filter-outer {
        padding: 15px;
    }
}