.color-swatches {
    list-style: none;
    padding: 0;
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    column-gap: 9px;
    justify-content: flex-start;
}

.color-swatches li {
    padding: 5px 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 5px;
}

.color-swatches li.selected {
    border: 1px solid #000;
    border-radius: 5px;
}

.swatch-color {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    margin-left: 5px;
    border: 1px solid #ccc;
}

.swatch-label {
    font-size: 14px;
}

.variations select {
    display: none !important;
}