.wcsf-swatches{
    display:flex;
    gap:10px;
    margin:15px 0;
    flex-wrap:wrap;
}

.wcsf-swatch{
    width:32px;
    height:32px;
    border-radius:50%;
    cursor:pointer;
    border:2px solid #dcdcdc;
    transition:all 0.2s ease;
    position:relative;
}

.wcsf-swatch:hover{
    transform:scale(1.08);
    border-color:#555;
}

.wcsf-swatch.active{
    border-color:#000;
    box-shadow:0 0 0 2px #00000020;
}

.wcsf-swatch-label{
    font-size:12px;
    margin-top:4px;
    text-align:center;
}

.wcsf-swatch-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
}

@media(max-width:768px){

    .wcsf-swatches{
        gap:8px;
    }

    .wcsf-swatch{
        width:28px;
        height:28px;
    }

}