/* Smart Product Variations Gallery Swatches */

.spvg-swatches-select-container select {
    display: none !important;
}

.spvg-swatches-list {
    margin: 5px 0 15px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.spvg-swatch-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
    user-select: none;
}

/* Shapes default */
.spvg-swatch-color,
.spvg-swatch-image,
.spvg-swatch-gradient,
.spvg-swatch-dual_color {
    width: 32px;
    height: 32px;
    border-radius: 50%; /* Circle by default */
}

.spvg-swatch-label,
.spvg-swatch-button {
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #f7f7f7;
    font-size: 13px;
    font-weight: 500;
}

/* Hover, active, disabled states */
.spvg-swatch-item:hover {
    border-color: #111;
    transform: scale(1.05);
}

.spvg-swatch-item.selected {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #000;
}

.spvg-swatch-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.spvg-swatch-item.disabled::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ff0000;
    transform: rotate(-45deg);
}
