/* Product detail swatches */
.catalog-product-view .product-options-wrapper .swatch-opt {
    margin: 16px 0 22px;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 0 0 18px;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute:last-child {
    margin-bottom: 0;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute-label {
    flex: 0 0 auto;
    min-width: 85px;
    margin: 7px 0 0;
    font-weight: 600;
    line-height: 1.4;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute-selected-option {
    display: none;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute-options {
    display: flex;
    flex: 1 1 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin: 0;
    min-width: 0;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 112px;
    max-width: 100%;
    min-height: 40px;
    height: auto;
    margin: 0;
    padding: 8px 16px;
    border: 1px solid #e6e9ee;
    background: #ffffff;
    color: #2f3338;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    box-sizing: border-box;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text:hover,
.catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text:focus {
    border-color: #16bcdc;
    color: #16bcdc;
    outline: none;
}

.catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text.selected,
.catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text.selected:hover,
.catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text.selected:focus {
    border-color: #16bcdc;
    background: #16bcdc;
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .catalog-product-view .product-options-wrapper .swatch-opt {
        margin: 14px 0 20px;
    }

    .catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute {
        display: block;
        margin-bottom: 16px;
    }

    .catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute-label {
        display: block;
        min-width: 0;
        margin: 0 0 8px;
    }

    .catalog-product-view .product-options-wrapper .swatch-opt .swatch-attribute-options {
        gap: 8px;
        width: 100%;
    }

    .catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
        min-height: 42px;
        padding: 8px 10px;
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .catalog-product-view .product-options-wrapper .swatch-opt .swatch-option.text {
        flex-basis: 100%;
    }
}
