.td-product-filters {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
}

.td-filter-group {
    margin-bottom: 25px;
}

.td-filter-group:last-of-type {
    margin-bottom: 20px;
}

.td-filter-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.td-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.td-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
}

.td-filter-checkbox input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.td-filter-checkbox span {
    user-select: none;
}

.td-term-count {
    color: #999;
    font-size: 12px;
}

.td-reset-btn {
    width: 100%;
    padding: 12px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.td-reset-btn:hover {
    background: #555;
}

.td-reset-btn:active {
    background: #222;
}

.product-results,
#products-list,
.products-grid {
    transition: opacity 0.3s ease;
}

.no-products {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-size: 16px;
}

@media (min-width: 1000px) {
    .td-filter-title {
        font-size: 13px;
    }
    
    .td-filter-checkbox {
        font-size: 14px;
    }
    
    .td-reset-btn {
        font-size: 14px;
    }
}