.product-option-name {
    font-weight: bold;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-option-name .selected-value-label {
    opacity: 0.8;
    font-size: 1em;
    font-weight: normal;
}

.image-swatch-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 40px);
    grid-auto-flow: dense;
    gap: 8px;
}

.image-swatch-option {
    width: 40px;
    height: 40px;
    display: flex;
    position: relative;
}
.image-swatch-option-label::before {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid black;
    border-radius: 9px;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-swatch-option-label {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 2px rgb(0 0 0 / 30%);
    cursor: pointer;
}

.image-swatch-option-input {
    display: none;
}

.image-swatch-option-input:checked + .image-swatch-option-label::before {
    opacity: 1;
}
