/* Shared Filter Styles - Used by Customizer and Portfolio */

/* Filter Pills - Match Customizer Style */
.filter-pill {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    font-size: 13px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    margin: 4px;
}

.filter-pill:hover {
    border-color: #40bec1;
    color: #40bec1;
    transform: translateY(-1px);
}

.filter-pill.active {
    background: #40bec1;
    color: white;
    border-color: #40bec1;
}

/* Filter Section */
.portfolio-filter-section {
    margin-bottom: 30px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8f9fa;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.portfolio-filter-header:hover {
    background: #f0f1f3;
}

.portfolio-filter-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.portfolio-filter-arrow {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s;
}

.portfolio-filter-header.collapsed .portfolio-filter-arrow {
    transform: rotate(180deg);
}

.portfolio-filter-options {
    padding: 20px;
    background: white;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.portfolio-filter-header.collapsed + .portfolio-filter-options {
    display: none;
}

/* Filter Group Labels */
.filter-group-label {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
    margin-bottom: 4px;
}

.filter-group-label:first-child {
    margin-top: 0;
}

/* Color Pills */
.filter-pill.color-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 8px;
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .portfolio-filter-options {
        padding: 15px;
    }
    
    .filter-pill {
        font-size: 12px;
        padding: 6px 14px;
    }
}