/* ============================================================
   SÉRÉNITÉ ET SOLUTIONS — Ruban mobile fixe (bas d'écran)
============================================================ */
.sr-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9997;
    background: #ffffff;
    padding: 10px 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}
.sr-mobile-bar a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    background-color: var(--sr-accent-dark, #7E947E);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
}

@media (max-width: 860px) {
    .sr-mobile-bar { display: block; }
    body { padding-bottom: 70px; }
}