/* OMC Product Sorter — Frontend Color Filter */
.omcps-color-filter {
    margin: 0 0 20px;
    padding: 10px 0;
}
.omcps-cf-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.omcps-cf-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}
.omcps-cf-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}
.omcps-cf-swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 30px;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none !important;
    border: 2px solid transparent;
    transition: all 0.15s ease;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.omcps-cf-swatch:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.omcps-cf-swatch.active {
    border-color: #1a1a2e !important;
    box-shadow: 0 0 0 3px rgba(26,26,46,0.2);
    transform: translateY(-1px);
}
.omcps-cf-all {
    background: #f3f4f6;
    color: #374151 !important;
    border-color: #e5e7eb;
}
.omcps-cf-all.active,
.omcps-cf-all:hover {
    background: #1a1a2e;
    color: #fff !important;
    border-color: #1a1a2e;
}
.omcps-cf-clear {
    font-size: 11px;
    color: #9ca3af;
    text-decoration: none;
    padding: 4px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.15s;
}
.omcps-cf-clear:hover {
    color: #dc2626;
    border-color: #dc2626;
}

/* Mobile */
@media (max-width: 640px) {
    .omcps-cf-inner { gap: 6px; }
    .omcps-cf-swatch { min-width: 32px; height: 26px; font-size: 10px; padding: 0 7px; }
    .omcps-cf-label { font-size: 11px; }
}
