/* Single product swatches */
.vsa-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.vsa-swatch {
    appearance: none;
    border: 1px solid #d5d5d5;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.vsa-swatch.is-selected {
    border-color: #111;
    box-shadow: 0 0 0 1px #111 inset;
}

.vsa-swatch--color {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--vsa-swatch-color, #fff);
    border-color: var(--vsa-swatch-border, #d5d5d5);
}

.vsa-swatch--text {
    min-width: 40px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 13px;
}

.vsa-swatch--image {
    width: 48px;
    height: 48px;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.vsa-swatch--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vsa-image-fallback {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding: 4px;
}
