.vwpo-product-options {
    display: grid;
    gap: 8px;
    margin: 12px 0 14px;
    padding: 12px;
    border: 1px solid rgba(54, 45, 38, 0.16);
    border-radius: 7px;
    background: #fffdf9;
}

.vwpo-product-options__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #7a5b42;
}

.vwpo-product-options__set {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.vwpo-product-options__set legend {
    display: block;
    width: 100%;
    margin: 0 0 7px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    color: #2f251f;
}

.vwpo-product-options__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.vwpo-product-options__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 8px;
    border: 1px solid rgba(54, 45, 38, 0.12);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
}

.vwpo-product-options__item input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.vwpo-product-options__item span {
    min-width: 0;
    font-size: 13px;
    line-height: 1.22;
    color: #2f251f;
}

.vwpo-product-options__item strong {
    white-space: nowrap;
    font-size: 12px;
    color: #6b4a35;
}

.vwpo-product-options__item.is-selected {
    border-color: rgba(112, 73, 43, 0.42);
    background: #fff4e8;
}

.vwpo-product-options__note {
    display: none;
    grid-column: 1 / -1;
    gap: 5px;
    padding: 8px;
    border: 1px dashed rgba(112, 73, 43, 0.24);
    border-radius: 6px;
    background: #fffaf3;
}

.vwpo-product-options__note.is-active {
    display: grid;
}

.vwpo-product-options__note span {
    font-size: 13px;
    font-weight: 700;
    color: #2f251f;
}

.vwpo-product-options__note textarea {
    width: 100%;
    min-height: 58px;
    resize: vertical;
}

.vwpo-product-options__note-help {
    font-size: 12px;
    line-height: 1.35;
    color: #6b5b50;
}

.vwpo-product-options__custom {
    display: grid;
    grid-column: 1 / -1;
    gap: 5px;
}

.vwpo-product-options__custom span {
    font-size: 13px;
    font-weight: 700;
    color: #2f251f;
}

.vwpo-product-options__custom input {
    width: 100%;
    min-height: 38px;
}

.vwpo-product-options__total {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 6px;
    border-top: 1px solid rgba(54, 45, 38, 0.1);
    font-size: 13px;
    color: #6b5b50;
}

.vwpo-product-options__total strong {
    color: #2f251f;
}

@media (max-width: 520px) {
    .vwpo-product-options {
        padding: 10px;
    }

    .vwpo-product-options__items {
        grid-template-columns: 1fr;
    }

    .vwpo-product-options__item {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .vwpo-product-options__item strong {
        justify-self: end;
    }
}

@media (max-width: 360px) {
    .vwpo-product-options__item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .vwpo-product-options__item strong {
        grid-column: 2;
        justify-self: start;
    }
}
