.wpq-wizard {
    max-width: 600px;
    margin: 2rem auto;
    font-family: inherit;
}

.wpq-progress {
    margin-bottom: 2rem;
    text-align: center;
}

.wpq-progress-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.wpq-progress-fill {
    height: 100%;
    background: #0073aa;
    border-radius: 4px;
    transition: width 0.4s ease;
}

.wpq-progress-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.wpq-step {
    margin-bottom: 1.5rem;
}

.wpq-question-text {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wpq-answers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wpq-answer-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.wpq-answer-option:hover {
    border-color: #0073aa;
}

.wpq-answer-option input:checked + .wpq-answer-label {
    font-weight: 600;
}

.wpq-answer-option:has(input:checked) {
    border-color: #0073aa;
    background: #f0f7fc;
}

.wpq-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.wpq-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.wpq-btn-next,
.wpq-btn-submit,
.wpq-btn-summary-submit {
    background: #0073aa;
    color: #fff;
    margin-left: auto;
}

.wpq-btn-next:hover,
.wpq-btn-submit:hover,
.wpq-btn-summary-submit:hover {
    background: #005a87;
}

.wpq-btn-back,
.wpq-btn-summary-back {
    background: #e0e0e0;
    color: #333;
}

.wpq-btn-back:hover {
    background: #ccc;
}

.wpq-empty {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.wpq-summary-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpq-summary-item {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.wpq-summary-item-question {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.wpq-summary-item-answer {
    color: #0073aa;
}
