<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.fmw-option-groups {
    margin: 0 0 32px 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.fmw-option-group {
    margin-bottom: 0;
}

.fmw-option-group:last-child {
    margin-bottom: 0;
}

.fmw-option-group-label {
    display: block;
    margin-bottom: 16px;
    font-weight: 600;
}

.fmw-option-group-label .required {
    color: #e2401c;
}

/* Dropdown styles */
.fmw-option-select {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

/* Radio button styles */
.fmw-option-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fmw-option-radio {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fmw-option-radio:hover {
    border-color: #999;
}

.fmw-option-radio input[type="radio"] {
    margin-right: 8px;
}

.fmw-option-radio input[type="radio"]:checked + .fmw-option-label {
    font-weight: 600;
}

/* Swatch styles */
.fmw-option-swatches, .fmw-image-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0 0 18px 0;
    justify-content: flex-start;
    align-items: flex-end;
}

.fmw-option-swatch, .fmw-fabric-swatch {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.fmw-fabric-swatch-image, .fmw-swatch-image {
    box-sizing: border-box;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: #fff;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    transition: border 0.2s, box-shadow 0.2s;
    overflow: hidden;
}

.fmw-fabric-swatch-image img, .fmw-swatch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
}

.fmw-fabric-swatch:hover .fmw-fabric-swatch-image,
.fmw-option-swatch:hover .fmw-swatch-image {
    border: 2px solid #b3d4fc;
    box-shadow: 0 0 0 2px #eaf4fb;
}

.fmw-fabric-swatch.selected .fmw-fabric-swatch-image,
.fmw-option-swatch input[type="radio"]:checked + .fmw-swatch-image {
    border: 2px solid #2271b1;
    box-shadow: 0 0 0 2px #eaf4fb;
}

.fmw-swatch-label, .fmw-fabric-swatch-name {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #222;
    text-align: center;
    font-weight: 500;
    background: none;
    position: static;
    letter-spacing: 0.01em;
    padding: 0;
}

/* Responsive styles */
@media (max-width: 600px) {
    .fmw-option-swatches, .fmw-image-swatches {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 10px;
    }
    .fmw-option-swatch {
        min-width: 80px;
        max-width: 80px;
    }
}

/* Validation styles */
.fmw-option-group.error .fmw-option-group-label {
    color: #e2401c;
}

.fmw-option-group.error .fmw-option-select,
.fmw-option-group.error .fmw-option-radio,
.fmw-option-group.error .fmw-swatch-color {
    border-color: #e2401c;
}

.fmw-option-group .error-message {
    color: #e2401c;
    font-size: 12px;
    margin-top: 5px;
}

.fmw-option-swatch input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.fmw-fabric-swatch,
.fmw-fabric-swatch.selected {
    border: none !important;
    box-shadow: none !important;
}

.fmw-swatch-row {
    display: flex !important;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-x: visible;
    overflow-y: visible !important;
    padding: 8px 0 8px 0;
    min-height: 0;
    max-height: none;
    height: auto !important;
}

.fmw-option-swatch, .fmw-image-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: auto !important;
    min-height: 0;
    max-height: none;
}

.fmw-option-swatch input[type="radio"]:checked + .fmw-swatch-image,
.fmw-option-swatch input[type="radio"]:checked + .fmw-swatch-color,
.fmw-fabric-swatch.selected,
.fmw-image-swatch.selected {
    border: 2px solid #2271b1;
    box-shadow: 0 0 0 2px #eaf4fb, 0 2px 8px rgba(34,113,177,0.12);
}

.fmw-swatch-label, .fmw-fabric-swatch-name {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #888;
    text-align: center;
    font-weight: 400;
    background: none;
    letter-spacing: 0.01em;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .fmw-swatch-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .fmw-option-swatch, .fmw-fabric-swatch, .fmw-image-swatch {
        width: 64px;
        height: 64px;
    }
    .fmw-swatch-label, .fmw-fabric-swatch-name {
        font-size: 12px;
        margin-top: 6px;
    }
} </pre></body></html>