.style-variation-switcher {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 9;
}

.color-swatch {
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    overflow: hidden;
}

.color-swatch:hover,
.color-swatch:focus {
    border-color: #000;
    outline: none;
}

.color-swatch.active {
    border-color: #000;
    box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px #000;
}

.swatch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    width: 100%;
    height: 100%;
}

.swatch-color {
    width: 100%;
    height: 100%;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
} 