.bo-hidden-color-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.bo-color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    margin: 4px 0 10px;
}

.bo-color-swatch {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 48px;
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.bo-color-dot {
    display: block;
    width: 34px;
    height: 34px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0,0,0,.25);
}

.bo-color-name {
    font-size: 12px;
    line-height: 1.2;
}

.bo-color-swatch:hover,
.bo-color-swatch:focus-visible {
    border-color: rgba(0,0,0,.35);
    outline: none;
}

.bo-color-swatch.selected {
    border-color: #b6924b;
}

.bo-color-swatch.selected .bo-color-dot {
    box-shadow: 0 0 0 2px #b6924b;
}

.bo-color-swatch.disabled {
    opacity: .35;
    cursor: not-allowed;
}
