/* Hide the original dropdown */
.variations_form select[name="attribute_pa_color"] {
    display: none;
}

/* Swatch container */
.wivs-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

/* Individual swatch */
.wivs-swatch {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.wivs-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swatch hover effect */
.wivs-swatch:hover {
    border-color: #999;
}

/* Selected swatch style */
.wivs-swatch.selected {
    border-color: #0073aa; /* A standard WordPress blue */
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}