.arabian-filter-container {
    background: #fff;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
    color: #333;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    color: #d4a373;
    cursor: pointer;
    margin: 15px 0;
    text-align: right;
}

.filter-header i {
    font-size: 12px;
}

.filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    direction: rtl;
}

.filter-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    flex-grow: 1;
    justify-content: flex-start; /* Start from right in RTL */
}

.filter-item .count {
    color: #888;
    font-size: 12px;
}

/* Radio Button Styling */
.filter-item input[type="radio"] {
    display: none;
}

.checkmark {
    height: 16px;
    width: 16px;
    border: 1px solid #d4a373;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.filter-item input[type="radio"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #d4a373;
    border-radius: 50%;
}

/* Price Slider */
.price-slider-container {
    position: relative;
    height: 40px;
    margin: 20px 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    position: absolute;
    left: 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #d4a373;
    cursor: pointer;
    margin-top: -8px;
    position: relative;
    z-index: 2;
}

.slider-track {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.price-inputs {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.price-input {
    flex: 1;
}

.price-input label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
    text-align: right;
}

.price-input input {
    width: 100%;
    border: 1px solid #d4a373;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

/* Rating Stars */
.stars {
    display: flex;
    gap: 2px;
    font-size: 14px;
}

.stars i.filled {
    color: #ffeb3b; /* Bright Yellow as seen in screenshot */
}

.stars i.empty {
    color: #B5B5B5 !important; /* Gold/Brown Accent color */
}

/* Divider */
.filter-divider {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 15px 0;
}

/* Featured Products */
.featured-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #f9f9f9;
    border-radius: 4px;
}

.featured-info {
    text-align: right;
    flex: 1;
}

.featured-info h3 {
    font-size: 14px;
    margin: 0;
    font-weight: bold;
}

.featured-info p {
    font-size: 11px;
    color: #777;
    margin: 5px 0;
}

.featured-info .price {
    font-size: 13px;
    font-weight: bold;
    color: #2a2a2a;
}

.featured-img img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-left: 10px;
    border-radius: 4px;
}


