@charset "UTF-8";

:root {
    --fricots-green-dark: #29321d;
    --fricots-green-light: #bfdea1;
    --fricots-beige: #f4f2eb;
    --fricots-orange: #f8b46a;
}

#simulate_my_project_wizard .simulate_my_project_card {
    border: none;
    border-radius: 20px;
}

#simulate_my_project_form .alert ul {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}

/* Progress */
.simulate_my_project_step_dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DarkerGrotesque';
    font-weight: 800;
    font-size: 0.95rem;
    background: #e8e8e8;
    color: #aaa;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.simulate_my_project_step_dot.active {
    background: var(--fricots-green-dark);
    color: #fff;
    transform: scale(1.1);
}
.simulate_my_project_step_dot.done {
    background: var(--fricots-green-light);
    color: var(--fricots-green-dark);
}
.simulate_my_project_step_line {
    width: 48px;
    height: 3px;
    background: #e8e8e8;
    border-radius: 2px;
    margin: 0 4px;
    transition: background 0.3s ease;
}
.simulate_my_project_step_line.done {
    background: var(--fricots-green-light);
}

/* Steps */
.simulate_my_project_step {
    display: none;
}
.simulate_my_project_step.active {
    display: block;
}

/* Collaborators number + range */
.simulate_my_project_collab_number {
    font-family: 'DarkerGrotesque';
    font-weight: 800;
    line-height: 1;
    color: var(--fricots-green-dark);
}
#simulate_my_project_form input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--fricots-green-light) 0%, var(--fricots-green-light) var(--val, 0%), #e0e0e0 var(--val, 0%), #e0e0e0 100%);
    border-radius: 4px;
    outline: none;
}
#simulate_my_project_form input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    background: var(--fricots-green-dark);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: grab;
    margin-top: 0;
}
#simulate_my_project_form input[type="range"]::-moz-range-track {
    background: transparent;
    border: none;
    height: 8px;
}
#simulate_my_project_form input[type="range"]::-moz-range-progress {
    background: transparent;
    height: 8px;
    border: none;
}
#simulate_my_project_form input[type="range"]::-moz-range-thumb {
    width: 26px;
    height: 26px;
    background: var(--fricots-green-dark);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: grab;
}

/* Toggle cards (titres-restaurant) */
.simulate_my_project_TR {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    background: #fafaf8;
    transition: all 0.2s ease;
}
.simulate_my_project_TR:hover {
    border-color: var(--fricots-green-light);
}
.simulate_my_project_TR input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}
.simulate_my_project_TR .tc_label {
    cursor: pointer;
    font-weight: 700;
    color: var(--fricots-green-dark);
}
.simulate_my_project_TR.selected {
    border-color: var(--fricots-green-dark);
    box-shadow: 0 0 0 1px var(--fricots-green-dark);
}

/* Conditional field (montant titre-restaurant) */
.simulate_my_project_conditional_field {
    display: none;
}
.simulate_my_project_conditional_field.visible {
    display: block;
}

/* Check options (intérêts) */
.simulate_my_project_interests {
    position: relative;
    padding: 10px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    background: #fafaf8;
    transition: all 0.2s ease;
}
.simulate_my_project_interests:hover {
    border-color: var(--fricots-green-light);
}
.simulate_my_project_interests input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}
.simulate_my_project_interests .co_text {
    cursor: pointer;
    font-weight: 600;
    color: var(--fricots-green-dark);
}
.simulate_my_project_interests.selected {
    border-color: var(--fricots-green-dark);
    background: rgba(191, 222, 161, 0.12);
}
.simulate_my_project_interests .co_check {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
    transition: all 0.2s ease;
}
.simulate_my_project_interests.selected .co_check {
    background: var(--fricots-green-dark);
    border-color: var(--fricots-green-dark);
    color: #fff;
}

/* Teaser */
.simulate_my_project_teaser {
    background: linear-gradient(135deg, rgba(191, 222, 161, 0.15), rgba(248, 180, 106, 0.1));
    border: 1px solid rgba(191, 222, 161, 0.4);
    border-radius: 12px;
    color: var(--fricots-green-dark);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Buttons */
.simulate_my_project_btn_back {
    border-radius: 50px;
    color: #888;
    border-color: #ddd;
}
