/* doc-project | assets/css/sticky-cta.css | Habille exclusivement l'appel à l'action mobile fixe menant au calendrier sans masquer les champs de réservation. | Expose: aucun | Dépend de: index.php, assets/css/base.css | Impacte: CTA toujours visible et conversion mobile | Tables: aucune */
.mobile-booking-cta { display: none; }

@media (max-width: 720px) {
    body { padding-bottom: 5.6rem; }
    .mobile-booking-cta {
        position: fixed;
        z-index: 80;
        left: .65rem;
        right: .65rem;
        bottom: .65rem;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: .8rem;
        padding: .7rem;
        border: 1px solid rgba(111,231,255,.25);
        border-radius: 18px;
        background: rgba(6,16,29,.94);
        backdrop-filter: blur(18px);
        box-shadow: 0 20px 55px rgba(0,0,0,.42);
    }
    .mobile-booking-cta p { margin: 0; color: var(--muted-strong); font-size: .82rem; line-height: 1.25; }
    .mobile-booking-cta strong { display: block; color: var(--text); }
    .mobile-booking-cta .button { width: auto; min-height: 2.8rem; padding: .7rem .95rem; white-space: nowrap; }
}