/* Light Color Swatches – Frontend Styles */

/* Hidden native select (kept for WC JS) */
.lcs-hidden-select {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Swatch container */
.lcs-swatches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
}

/* Individual circle */
.lcs-swatch {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgb(224 224 224);
    cursor: pointer;
    position: relative;
    transition: transform 0.15s ease, border-color 0.15s ease;
    flex-shrink: 0;
    /* background set inline (solid or gradient) */
}

.lcs-swatch:hover {
    transform: scale(1.1);
    border-color: rgba(0, 0, 0, 0.35);
}

/* Selected state – outer ring */
.lcs-swatch--selected {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(0, 0, 0, 0.5);
}

/* Tooltip via title attribute is browser-native; no extra markup needed */

/* "Please select" hint */
.lcs-please-select {
    margin: 0 0 20px;
    font-size: 0.85em;
    color: #767676;
    text-align: center;
}

.lcs-please-select--hidden {
    display: none;
}

/* Reset link on its own line */
a.reset_variations {
    display: block;
    margin-top: 14px;
}

/* Disabled / out-of-stock state (added by JS) */
.lcs-swatch--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}