<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fabric Selector */
.fmw-fabric-selector {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.fmw-selected-fabric {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.fmw-fabric-preview {
    flex: 0 0 100px;
}

.fmw-fabric-preview img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.fmw-fabric-info {
    flex: 1;
}

.fmw-fabric-info h4 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.fmw-fabric-desc {
    margin: 0;
    color: #666;
}

.fmw-open-modal {
    padding: 8px 16px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.fmw-open-modal:hover {
    background: #eee;
}

/* Fabric Options */
.fmw-fabric-options {
    margin-bottom: 20px;
}

.fmw-width-selector,
.fmw-quantity-selector {
    margin-bottom: 15px;
}

.fmw-width-selector label,
.fmw-quantity-selector label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.fmw-width-selector select,
.fmw-quantity-selector input {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Option Groups */
.fmw-option-groups {
    margin: 20px 0;
}

.fmw-option-group {
    margin-bottom: 15px;
}

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

.fmw-option-group select {
    width: 100%;
    max-width: 300px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fmw-radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fmw-radio-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: normal;
}

.fmw-swatch-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fmw-swatch {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
}

.fmw-swatch input {
    position: absolute;
    opacity: 0;
}

.fmw-swatch-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 10px;
    text-align: center;
}

/* Price Summary */
.fmw-price-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.fmw-price-row,
.fmw-total-row,
.fmw-weight-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.fmw-total-row {
    font-weight: 600;
    font-size: 1.1em;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

/* Filters */
.fmw-filters {
    margin-bottom: 20px;
}

.fmw-search {
    margin-bottom: 15px;
}

.fmw-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fmw-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fmw-category {
    padding: 6px 12px;
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.fmw-category:hover {
    background: #eee;
}

.fmw-category.active {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* Fabrics Grid */
.fmw-fabrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.fmw-fabric-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s;
}

.fmw-fabric-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fmw-fabric-image {
    position: relative;
    padding-top: 100%;
}

.fmw-fabric-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fmw-fabric-details {
    padding: 15px;
}

.fmw-fabric-details h4 {
    margin: 0 0 10px;
    font-size: 1.1em;
}

.fmw-fabric-details p {
    margin: 0 0 10px;
    color: #666;
    font-size: 0.9em;
}

.fmw-fabric-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9em;
    color: #666;
}

.fmw-select-fabric {
    width: 100%;
    padding: 8px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.fmw-select-fabric:hover {
    background: #005177;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .fmw-selected-fabric {
        flex-direction: column;
        text-align: center;
    }

    .fmw-fabric-preview {
        flex: 0 0 auto;
        width: 150px;
    }

    .fmw-fabrics-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .fmw-fabrics-grid {
        grid-template-columns: 1fr;
    }
}

.fmw-fabric-swatches-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
}

.fmw-fabric-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
}

.fmw-fabric-swatch img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 4px;
}

.fmw-fabric-swatch-info {
    text-align: center;
    font-size: 12px;
}

.fmw-fabric-selector-box {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fafbfc;
    padding: 18px 16px 10px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
} </pre></body></html>