/* Desire Gym Shop Page Category CSS */

.custom-sidebar-wrapper {
    font-family: "Open Sans", sans-serif;
    color: #333;
    max-width: 300px;
    border-bottom: 1px solid #eaeaea;
}
.filter-section {
    margin-bottom: 30px;
}
.filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 20px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}
.filter-title h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}
.toggle-icon {
    width: 14px;
    height: 2px;
    background-color: #000;
    position: relative;
}
.toggle-icon.plus::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 14px;
    background-color: #000;
    top: -6px;
    left: 6px;
}
.custom-cat-list, .sub-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cat-item, .sub-cat-item {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
.cat-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cat-item-inner:hover, .sub-cat-item:hover {
    color: #000;
}
.cat-item.active > .cat-item-inner .cat-name,
.sub-cat-item.active .cat-name {
    color: #e1251b;
    font-weight: 700;
}
.sub-cat-list {
    padding-left: 15px;
    margin-top: 10px;
}
.filter-divider {
    border: 0;
    border-top: 1px solid #ebebeb;
    margin: 30px 0;
}
#custom-price-slider {
    height: 4px;
    background: #e5e5e5;
    border: none;
    margin: 15px 10px 30px 10px;
}
#custom-price-slider .ui-slider-range {
    background: #e1251b; 
}
#custom-price-slider .ui-slider-handle {
    width: 16px;
    height: 16px;
    background: #e1251b;
    border-radius: 50%;
    border: none;
    top: -6px;
    cursor: grab;
    outline: none;
}
.price-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
    padding-bottom: 10px;
}
.filter-btn {
    background-color: #f5f5f5;
    color: #333;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}
.filter-btn:hover {
    background-color: #e1251b;
    color: #fff;
}