/**
 * Guided Wizard 5-Step CSS Layout
 */
.cestmoi-wizard-wrapper {
    background: var(--cestmoi-card-bg);
    border: 1px solid var(--cestmoi-border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.cestmoi-wizard-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.cestmoi-wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cestmoi-gold), #fff);
    transition: width 0.4s ease;
}

.cestmoi-wizard-step {
    display: none;
    animation: cestmoi-fadein 0.4s ease forwards;
}

.cestmoi-wizard-step.cestmoi-step-active {
    display: block;
}

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

.cestmoi-step-title {
    font-size: 1.4rem;
    color: var(--cestmoi-gold);
    margin-top: 0;
}

.cestmoi-wizard-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.cestmoi-wizard-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--cestmoi-transition);
}

.cestmoi-wizard-btn:hover {
    background: var(--cestmoi-gold);
    color: #000;
    border-color: var(--cestmoi-gold);
}

.cestmoi-btn-restart {
    background: transparent;
    border: 1px solid var(--cestmoi-gold);
    color: var(--cestmoi-gold);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
}
