/* Premium Product Filter */
.premium-product-filter-wrapper {
    background: transparent;
    direction: rtl !important;
    font-family: 'Tajawal', sans-serif;
    color: #fff;
    padding: 20px 10px;
}

/* Section Styling */
.premium-filter-section {
    margin-bottom: 35px;
}

.premium-filter-title {
    color: #FFB800;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Gold Title Line */
.premium-filter-title::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 18px;
    background-color: #FFB800;
    margin-left: 10px;
}

/* Categories List */
.premium-filter-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-filter-categories li {
    margin-bottom: 15px;
}

.premium-filter-category-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: #d1d1d1;
    position: relative;
    padding-right: 30px;
    /* Space for Custom Checkbox */
    transition: color 0.3s ease;
    user-select: none;
}

.premium-filter-category-label:hover {
    color: #fff;
}

/* Custom Checkbox */
.premium-filter-category-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.premium-filter-checkmark {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Checked state */
.premium-filter-category-label input:checked~.premium-filter-checkmark {
    background-color: #FFB800;
    border-color: #FFB800;
}

/* Price Range Slider */
.premium-filter-price-wrapper {
    padding-top: 5px;
}

.premium-price-range-slider {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 25px;
}

.premium-price-range-slider .progress {
    position: absolute;
    height: 100%;
    left: 25%;
    right: 25%;
    background-color: #FFB800;
    border-radius: 5px;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 4px;
    top: -29px;
    /* adjust to overlap with progress bar */
    background: transparent !important;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    border: none;
    padding: 0;
    margin: 0;
}

.range-input input::-webkit-slider-runnable-track {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.range-input input::-moz-range-track {
    background: transparent !important;
    border: none !important;
}

.range-input input::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #FFB800;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    margin-top: -6px;
}

.range-input input::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #000;
    border: 2px solid #FFB800;
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
}

/* Labels below range */
.premium-price-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #dedede;
    font-size: 13px;
    flex-direction: row-reverse;
    /* For RTL logic consistency */
}

.premium-price-labels span {
    font-weight: 400;
    font-family: inherit;
}