/* ── Lamarche Motoculture – Reservation CSS ── */
#lamarche-reservation-root * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#lamarche-reservation-root {
    font-family: 'Outfit', sans-serif;
    background: #0a0d14;
    padding: 32px 16px;
    min-height: 100vh;
    border-radius: 12px;
}

#lamarche-reservation-root input:focus {
    border-color: #f97316 !important;
    outline: none;
}

#lamarche-reservation-root button:hover:not(:disabled) {
    opacity: 0.92;
    transform: translateY(-1px);
}

#lamarche-reservation-root button {
    transition: all 0.15s ease;
}

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

.lm-card {
    animation: lm-fadeIn 0.3s ease;
}
