form#color-filter-form {
    margin-left: 9px;
}

form#color-filter-form select[name="filter_color"] {
    padding-top: 14px;
}



aside#woocommerce_product_tag_cloud-5 {
    display: none;
}



/* Color Filter Widget */
.widget_color_filter {
    margin-bottom: 20px;
}

.color-swatches-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 10px;
    padding: 15px 0;
}

.color-swatch {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 2px solid #ddd;
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: var(--swatch-color);
}

/* Special styling for white color to make it visible */
.color-swatch[title="White"] {
    border-color: #999;
}

/* Multicolor gradient support */
.color-swatch[title="Multicolor"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
}

.color-swatch:hover {
    transform: scale(1.05);
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.color-swatch.active {
    border-color: #e31c39;
    border-width: 3px;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #e31c39;
}

.color-swatch.clear-filter {
    background-color: #f5f5f5 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.color-swatch.clear-filter:hover {
/*     background-color: #e31c39 !important; */
/*     color: #fff; */
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}