/* 主容器 */
#product-filter-root {
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    max-width: 260px;
}

/* 分组 */
.filter-group {
    margin-bottom: 28px;
    border-bottom: 1px solid #f2f2f2;
    padding-bottom: 20px;
}

/* ✅ 标题：大写 + 黑色 + 紧凑 */
.filter-group h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ed145b;
    margin: 0 0 14px;
}

/* 列表 */
.filter-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 列表项 */
.filter-group li {
    margin-bottom: 10px;
}

/* ✅ 链接样式（不用复选框） */
.filter-group li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.filter-group li a:hover {
    color: #e91e63;
}

/* ✅ 数量：不带括号、浅灰 */
.filter-group .count {
    font-size: 12px;
    color: #999;
}

/* 清除按钮 */
.clear-filters {
    width: 100%;
    padding: 10px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    color: #555;
}

.clear-filters:hover {
    background: #f0f0f0;
}


.filter-item {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    padding: 6px 0;
}

.filter-item:hover {
    color: #e91e63;
}

.filter-item.active {
    color: #e91e63;
    font-weight: 600;
}


.dd-price-filter-container {
    border: 2px solid #e91e63;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: #fff;
}

.dd-price-filter-container h3 {
    color: #e91e63;
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.dd-price-slider-wrapper {
    margin: 20px 0;
}

/* noUiSlider 样式覆盖 */
.noUi-target {
    background: #f5f5f5;
    border-radius: 4px;
    border: none;
    box-shadow: none;
}

.noUi-connect {
    background: #e91e63;
}

.noUi-handle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e91e63;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: grab;
}

.noUi-handle:before, .noUi-handle:after {
    display: none;
}

.dd-price-values {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.dd-filter-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    float: right;
}

.dd-filter-btn:hover {
    background: #d81b60;
}

.dd-products-container {
    clear: both;
    margin-top: 30px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .dd-filter-btn {
        width: 100%;
        margin-top: 15px;
    }
}