.wts-vp {
    --wts-vp-ink: var(--wts-ink, #211f1b);
    --wts-vp-forest: var(--wts-forest, #304036);
    --wts-vp-forest-deep: var(--wts-forest-deep, #243129);
    --wts-vp-brass: var(--wts-brass, #9a7846);
    --wts-vp-field: var(--wts-field, #e4e7df);
    --wts-vp-white: var(--wts-white, #fbfaf7);
    --wts-vp-border: var(--wts-border, #d4d0c7);
    --wts-vp-muted: var(--wts-muted, #646159);
    background: var(--wts-vp-white);
    border: 1px solid var(--wts-vp-border);
    border-radius: 9px;
    color: var(--wts-vp-ink);
    margin: 24px 0 18px;
    overflow: hidden;
    width: 100%;
}

.wts-vp__header {
    align-items: end;
    border-bottom: 1px solid var(--wts-vp-border);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    padding: 14px 16px 13px;
}

.wts-vp__title {
    color: var(--wts-vp-forest-deep);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.075em;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

.wts-vp__pooling {
    color: var(--wts-vp-muted);
    font-size: 0.75rem;
    line-height: 1.35;
    margin: 0;
    text-align: right;
}

.wts-vp__tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}

.wts-vp__tier {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--wts-vp-border);
    border-radius: 0;
    color: var(--wts-vp-ink);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    gap: 3px;
    justify-content: center;
    min-height: 112px;
    min-width: 0;
    padding: 22px 6px 10px;
    position: relative;
    text-align: center;
}

.wts-vp__tier:last-child {
    border-right: 0;
}

.wts-vp__tier:hover {
    background: rgba(228, 231, 223, 0.52);
    color: var(--wts-vp-ink);
}

.wts-vp__tier:focus {
    background: rgba(228, 231, 223, 0.52);
    color: var(--wts-vp-ink);
}

.wts-vp__tier:focus-visible {
    background: rgba(228, 231, 223, 0.72);
    color: var(--wts-vp-ink);
    box-shadow: inset 0 0 0 3px var(--wts-vp-forest);
    outline: 2px solid transparent;
    outline-offset: -2px;
    z-index: 2;
}

.wts-vp__tier.is-active {
    background: var(--wts-vp-field);
    box-shadow: inset 0 0 0 2px var(--wts-vp-forest);
    z-index: 1;
}

.wts-vp__tier.is-active:focus,
.wts-vp__tier.is-active:focus-visible {
    background: var(--wts-vp-field);
    color: var(--wts-vp-ink);
}

.wts-vp__current {
    color: var(--wts-vp-forest-deep);
    display: none;
    font-size: 0.58rem;
    font-weight: 800;
    left: 5px;
    letter-spacing: 0.045em;
    line-height: 1;
    position: absolute;
    right: 5px;
    text-transform: uppercase;
    top: 7px;
}

.wts-vp__tier.is-active .wts-vp__current {
    display: block;
}

.wts-vp__range {
    color: var(--wts-vp-muted);
    font-size: 0.66rem;
    font-weight: 650;
    line-height: 1.15;
}

.wts-vp__price {
    color: var(--wts-vp-ink);
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.15;
    white-space: nowrap;
}

.wts-vp__price .amount {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.wts-vp__price small {
    color: var(--wts-vp-muted);
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    margin-top: 2px;
}

.wts-vp__saving {
    color: var(--wts-vp-brass);
    font-size: 0.62rem;
    font-weight: 750;
    line-height: 1.1;
}

.wts-vp__feedback {
    align-items: center;
    border-top: 1px solid var(--wts-vp-border);
    display: grid;
    gap: 8px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 60px;
    padding: 11px 16px;
}

.wts-vp__progress,
.wts-vp__calculation {
    font-size: 0.77rem;
    line-height: 1.35;
    margin: 0;
}

.wts-vp__progress {
    color: var(--wts-vp-ink);
}

.wts-vp__calculation {
    color: var(--wts-vp-muted);
    text-align: right;
    white-space: nowrap;
}

.wts-vp__calculation strong {
    color: var(--wts-vp-ink);
    font-weight: 750;
}

.wts-vp__retail {
    background: #f7f5ef;
    border-top: 1px solid var(--wts-vp-border);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wts-vp__retail-item {
    border-right: 1px solid var(--wts-vp-border);
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 12px 16px;
}

.wts-vp__retail-item:last-child {
    border-right: 0;
}

.wts-vp__retail-item span {
    color: var(--wts-vp-muted);
    font-size: 0.64rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wts-vp__retail-item strong {
    color: var(--wts-vp-ink);
    font-size: 1rem;
    line-height: 1.1;
}

.wts-vp__retail-item small {
    color: var(--wts-vp-muted);
    font-size: 0.64rem;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .wts-vp__tiers {
        grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    }

    .wts-vp__tier {
        border-bottom: 1px solid var(--wts-vp-border);
        min-height: 96px;
    }

}

@media (max-width: 620px) {
    .wts-vp {
        border-radius: 5px;
        margin: 20px 0 16px;
    }

    .wts-vp__header {
        align-items: start;
        flex-direction: column;
        gap: 5px;
        padding: 12px 13px;
    }

    .wts-vp__pooling {
        font-size: 0.72rem;
        text-align: left;
    }

    .wts-vp__tiers {
        display: block;
    }

    .wts-vp__tier {
        align-items: center;
        border-bottom: 1px solid var(--wts-vp-border);
        border-right: 0;
        display: grid;
        gap: 8px;
        grid-template-columns: minmax(82px, 1fr) minmax(96px, auto) minmax(68px, auto);
        min-height: 46px;
        padding: 8px 12px;
        text-align: left;
        width: 100%;
    }

    .wts-vp__tier:nth-last-child(-n + 3) {
        border-bottom: 1px solid var(--wts-vp-border);
    }

    .wts-vp__tier:last-child {
        border-bottom: 0;
    }

    .wts-vp__tier.is-active {
        padding-top: 19px;
    }

    .wts-vp__current {
        font-size: 0.56rem;
        left: 12px;
        right: auto;
        top: 6px;
    }

    .wts-vp__range {
        font-size: 0.72rem;
    }

    .wts-vp__price {
        font-size: 0.86rem;
        text-align: right;
    }

    .wts-vp__price small {
        display: inline;
        font-size: 0.6rem;
    }

    .wts-vp__saving {
        font-size: 0.66rem;
        text-align: right;
    }

    .wts-vp__feedback {
        display: block;
        min-height: 76px;
        padding: 10px 12px;
    }

    .wts-vp__progress,
    .wts-vp__calculation {
        font-size: 0.72rem;
    }

    .wts-vp__calculation {
        margin-top: 5px;
        min-height: 1.35em;
        text-align: left;
        white-space: normal;
    }

    .wts-vp__retail {
        grid-template-columns: 1fr;
    }

    .wts-vp__retail-item {
        border-bottom: 1px solid var(--wts-vp-border);
        border-right: 0;
        padding: 10px 12px;
    }

    .wts-vp__retail-item:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wts-vp *,
    .wts-vp *::before,
    .wts-vp *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
