/* Mover-Validierungs-Umfrage – Bottom-Sheet/Toast
 * Mobile-first. position:fixed => kein Layout-Shift, verdeckt Content nicht
 * dauerhaft (schließbar). Design-Tokens analog style.css.
 */

.mover-survey {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding: 0 12px 12px;
    pointer-events: none; /* nur das Sheet selbst ist klickbar */
    font-family: 'Inter', sans-serif;
    color: #333;
}

.mover-survey__sheet {
    pointer-events: auto;
    width: 100%;
    max-width: 520px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    padding: 16px;
    box-sizing: border-box;

    /* Slide-up + Fade. transform/opacity => kein Layout-Shift, GPU-freundlich. */
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    will-change: transform, opacity;
}

.mover-survey.is-visible .mover-survey__sheet {
    transform: translateY(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .mover-survey__sheet {
        transition: opacity 0.2s ease;
        transform: none;
    }
}

.mover-survey__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mover-survey__question {
    font-size: 16px;
    line-height: 150%;
    font-weight: 700;
    margin: 0;
    padding-right: 8px;
}

.mover-survey__close {
    flex: 0 0 auto;
    background: none;
    border: none;
    color: #828282;
    font-size: 24px;
    line-height: 1;
    padding: 0 4px;
    margin: -4px -4px 0 0;
    cursor: pointer;
}

.mover-survey__close:hover,
.mover-survey__close:focus {
    color: #333;
}

.mover-survey__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Option-Buttons im Stil der .button-Klasse (border 1px #333, radius 6px). */
.mover-survey__option {
    display: block;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    line-height: 150%;
    color: #333;
    background: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.mover-survey__option:hover,
.mover-survey__option:focus {
    background: #eee;
    outline: 2px solid #333;
    outline-offset: 1px;
}

@media only screen and (min-width: 1025px) {
    .mover-survey {
        padding: 0 24px 24px;
    }
    .mover-survey__question {
        font-size: 18px;
    }
    .mover-survey__option {
        font-size: 16px;
    }
}
