.ctl-product-swatches {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #eee;
    background-color: #f9f9f9;
}
.ctl-product-swatches h3 {
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 5px;
    color: #333;
}
.ctl-swatch-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}
.ctl-swatch-button {
    background-color: #fff;
    color: #333;
    border: 1px solid #f5821f;
    padding: 8px 15px;
    cursor: pointer;
	font-family: Norms, sans-serif;
	font-variant-ligatures: none;
    font-size: 0.9em;
    line-height: 1;
    border-radius: 4px;
    transition: all 0.2s ease;
    min-width: 60px;
    text-align: center;
}
.ctl-swatch-button:hover:not(.disabled):not(.selected) {
    border-color: #0073aa;
    background-color: #f0f0f0;
}
.ctl-swatch-button.selected {
    background-color: #f5821f;
    color: #fff;
    border-color: #f5821f;
    font-weight: bold;
}
.ctl-swatch-button.disabled {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #aaa;
    border-color: #eee;
    opacity: 0.6;
    text-decoration: line-through;
}
.ctl-swatch-group.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.ctl-selected-value {
    font-weight: normal;
    font-style: italic;
    color: #f5821f;
}