/* Brand Filter Styles for Reliable Sign Supply */

/* Filter Controls */
.filter-controls {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.filter-controls button {
    font-size: 12px;
    padding: 3px 8px;
}

/* Brand checkbox styling */
#collapseOne .form-check {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

#collapseOne .form-check-input {
    margin-right: 8px;
}

#collapseOne .form-check-label {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Count badge */
.brand-count {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    color: #666;
    margin-left: auto;
}

/* Selected brand styling */
.form-check-input:checked + .form-check-label {
    font-weight: 500;
    color: #00c0e5;
}

/* Empty brand styling (no products) */
.form-check.empty {
    opacity: 0.5;
}

/* Product count display */
.product-count {
    background-color: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
}

/* Animations for filter changes */
.product-listing {
    transition: opacity 0.3s ease;
}

.product-listing.filtered-out {
    opacity: 0.5;
}

/* Search result highlighting */
.highlighted-term {
    background-color: rgba(0, 192, 229, 0.15);
    padding: 0 2px;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-box {
        margin-bottom: 20px;
    }
    
    .filter-controls {
        flex-direction: row;
        justify-content: space-between;
    }
}