.vd-wiz {
    max-width: 880px;
    margin: 3rem auto;
    padding: 3rem 3rem;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
    font-size: 1.75rem;
    line-height: 1.5;
    color: #222;
}

.vd-wiz__head { margin-bottom: 2rem; }
.vd-wiz__eyebrow {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #888;
}
.vd-wiz__title {
    margin: 0 0 .5rem;
    font-size: 2.75rem;
    font-weight: 600;
    color: #111;
    line-height: 1.15;
}
.vd-wiz__meta {
    margin: .5rem 0 0;
    color: #555;
    font-size: 1.6rem;
}

.vd-stepper {
    list-style: none;
    padding: 0 0 1rem;
    margin: 0 0 2rem;
    display: flex;
    gap: .5rem;
    border-bottom: 1px solid #eee;
}
.vd-stepper__item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.4rem;
    color: #999;
}
.vd-stepper__item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    font-size: 1.25rem;
    font-weight: 600;
    flex-shrink: 0;
}
.vd-stepper__item.is-current { color: #111; font-weight: 600; }
.vd-stepper__item.is-current span { background: #111; color: #fff; }
.vd-stepper__item.is-done { color: #2e7d32; }
.vd-stepper__item.is-done span { background: #e6f5ea; color: #2e7d32; }

.vd-wiz__intro {
    margin: 0 0 2rem;
    color: #444;
    font-size: 1.6rem;
    line-height: 1.55;
}

.vd-wiz__form { display: flex; flex-direction: column; gap: 1.75rem; }
.vd-field { display: flex; flex-direction: column; gap: .65rem; }
.vd-field label { font-weight: 500; color: #222; font-size: 1.5rem; }
.vd-field input[type="text"],
.vd-field input[type="email"] {
    padding: 1.1rem 1.25rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.6rem;
    line-height: 1.3;
    transition: border-color .15s, box-shadow .15s;
}
.vd-field input:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
}

.vd-full-toggle {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1.25rem 1.4rem;
    background: #f7f7f7;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.55rem;
    color: #111;
}
.vd-full-toggle input[type="checkbox"] { width: 1.5rem; height: 1.5rem; }
.vd-full-toggle:hover { background: #f0f0f0; }

.vd-items { list-style: none; padding: 0; margin: 0; border: 1px solid #eaeaea; border-radius: 6px; overflow: hidden; }
.vd-items__row + .vd-items__row { border-top: 1px solid #eee; }
.vd-items__row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.4rem;
}
.vd-items__row:hover { background: #fafafa; }
.vd-items__row .vd-item-checkbox { width: 1.4rem; height: 1.4rem; margin-top: .4rem; flex: 0 0 auto; }
.vd-items__body { flex: 1 1 auto; min-width: 0; cursor: pointer; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.vd-items__name { display: block; color: #222; font-size: 1.55rem; font-weight: 500; line-height: 1.3; }
.vd-items__meta { display: block; color: #9a9a9a; font-size: 1.15rem; font-weight: 400; line-height: 1.4; margin-top: .25rem; }
.vd-items__qty { flex: 0 0 auto; color: #9a9a9a; font-size: 1.4rem; font-variant-numeric: tabular-nums; padding-top: .35rem; white-space: nowrap; }
.vd-item-checkbox:disabled ~ .vd-items__body .vd-items__name,
.vd-item-checkbox:disabled ~ .vd-items__body .vd-items__meta { color: #bbb; }

.vd-summary {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 1.6rem 1.8rem;
    margin-bottom: 2rem;
    font-size: 1.55rem;
}
.vd-summary__full { margin: 0; font-size: 1.6rem; }
.vd-summary__list { list-style: none; padding: 0; margin: 0; }
.vd-summary__list li {
    display: flex;
    justify-content: space-between;
    padding: .75rem 0;
}
.vd-summary__list li + li { border-top: 1px solid #eee; }
.vd-summary__qty { color: #888; font-variant-numeric: tabular-nums; }

.vd-actions { margin-top: 1rem; }
.vd-actions--center { text-align: center; }
.vd-wiz .action.primary {
    font-size: 1.55rem;
    padding: 1.1rem 2.25rem;
    line-height: 1.2;
}

.vd-success-card {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #f7faf8;
    border: 1px solid #d7eadd;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.vd-success-card__icon { margin-bottom: 1.25rem; width: 72px; height: 72px; }
.vd-success-card p { margin: 0; color: #2e7d32; font-weight: 500; font-size: 1.65rem; }

/* Inherit page-level messages larger so feedback is visible */
.page.messages .message { font-size: 1.45rem; }

@media (max-width: 640px) {
    .vd-wiz { margin: 1rem; padding: 1.5rem 1.25rem; font-size: 1.2rem; }
    .vd-wiz__title { font-size: 1.9rem; }
    .vd-wiz__meta { font-size: 1.15rem; }
    .vd-stepper__item { font-size: 0; gap: 0; }
    .vd-stepper__item span { margin: 0 auto; }
    .vd-field input[type="text"], .vd-field input[type="email"] { font-size: 1.15rem; }
    .vd-items__row label, .vd-full-toggle, .vd-summary { font-size: 1.15rem; }
}
