/* Wizard */
.wizard-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
}

.wizard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.wizard-header h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.wizard-header .zeitschaetzung {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Fortschrittsbalken */
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-bar .progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Wizard-Schritte */
.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-step h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.wizard-step .step-description {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Foto-Upload */
.foto-upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.foto-upload-area:hover,
.foto-upload-area.dragover {
    border-color: var(--primary);
    background: rgba(0, 191, 165, 0.05);
}

.foto-upload-area .upload-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.foto-upload-area p {
    color: var(--text);
    font-size: 0.95rem;
}

.foto-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* Foto-Preview */
.foto-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.foto-preview {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.foto-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.foto-preview .remove-foto {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    padding: 0;
}

/* Navigation-Buttons */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.wizard-nav .btn {
    flex: 1;
    max-width: 200px;
}

/* Schadenart-Auswahl */
.option-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.option-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.option-card:hover {
    border-color: var(--primary);
}

.option-card.selected {
    border-color: var(--primary);
    background: rgba(0, 191, 165, 0.08);
}

.option-card input[type="radio"] {
    display: none;
}

.option-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.option-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Kennzeichen */
.kennzeichen-input {
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 1rem;
}

@media (max-width: 480px) {
    .option-cards {
        grid-template-columns: 1fr;
    }
}
