/* Wizard Step Indicator */
.wizard-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}
.wizard-step {
    display: flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
}
.wizard-step__circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    border: 2px solid #d1d5db;
    color: #9ca3af;
    background: #fff;
    transition: all .3s;
    flex-shrink: 0;
}
.wizard-step__label {
    font-size: .85rem;
    font-weight: 500;
    color: #9ca3af;
    transition: color .3s;
}
.wizard-step.active .wizard-step__circle {
    border-color: var(--color-accent, #085E7D);
    background: var(--color-accent, #085E7D);
    color: #fff;
}
.wizard-step.active .wizard-step__label {
    color: var(--color-accent, #085E7D);
    font-weight: 600;
}
.wizard-step.completed .wizard-step__circle {
    border-color: #10b981;
    background: #10b981;
    color: #fff;
}
.wizard-step.completed .wizard-step__circle::after {
    content: '\2713';
}
.wizard-step.completed .wizard-step__label {
    color: #059669;
}
.wizard-step__line {
    width: 40px;
    height: 2px;
    background: #d1d5db;
    margin: 0 .5rem;
    flex-shrink: 0;
    transition: background .3s;
}
.wizard-step__line.completed {
    background: #10b981;
}

/* Wizard panels */
.wizard-panel {
    display: none;
}
.wizard-panel.active {
    display: block;
    animation: wizardFadeIn .3s ease;
}
@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Wizard navigation buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.wizard-nav .btn {
    min-width: 120px;
}
.wizard-nav__spacer {
    flex: 1;
}

/* Welcome card (logged-in user in step 2) */
.wizard-welcome {
    text-align: center;
    padding: 2rem;
    background: #ecfdf5;
    border-radius: 10px;
    border: 1px solid #a7f3d0;
}
.wizard-welcome__name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: .25rem;
}
.wizard-welcome__email {
    font-size: .9rem;
    color: #6b7280;
}

/* Review table (step 5) */
.wizard-review {
    width: 100%;
    border-collapse: collapse;
}
.wizard-review td {
    padding: .6rem .75rem;
    border-bottom: 1px solid #f3f4f6;
    font-size: .9rem;
}
.wizard-review td:first-child {
    font-weight: 600;
    color: #6b7280;
    width: 160px;
}

/* Payment pricing coupon tag */
.pr-pricing__coupon-tag {
    display: inline-block;
    background: #f3e8ff;
    color: #7c3aed;
    padding: .15rem .5rem;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
    margin-left: .5rem;
}
.pr-pricing__coupon-tag:empty {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-step__label {
        display: none;
    }
    .wizard-step__line {
        width: 24px;
    }
    .wizard-step__circle {
        width: 28px;
        height: 28px;
        font-size: .8rem;
    }
}
