/* ══ BANDEAU FLOTTANT — smart scroll ════════════════════════════════ */
.mcc-floating-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99999;
    background: #171927;
    border-top: 3px solid #8B3A21;
    box-shadow: 0 -4px 20px rgba(0,0,0,.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transform: translateY(100%);
    transition: transform .3s ease;
}
.mcc-floating-bar--visible { transform: translateY(0); }
.mcc-floating-inner { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 20px; max-width: 1100px; margin: 0 auto; }
.mcc-floating-vs { font-family: Georgia, serif; font-size: .78rem; font-weight: 900; color: #FB7258; letter-spacing: .15em; border: 1.5px solid #FB7258; padding: 2px 8px; border-radius: 3px; flex-shrink: 0; }
.mcc-floating-text { font-size: .82rem; color: rgba(255,255,255,.7); font-style: italic; flex: 1; text-align: center; }
.mcc-floating-btn { display: inline-flex; align-items: center; padding: 8px 18px; background: #8B3A21; color: #f9f7ef !important; text-decoration: none !important; border-radius: 5px; font-size: .78rem; font-weight: 700; font-family: Georgia, serif; transition: background .15s; white-space: nowrap; flex-shrink: 0; }
.mcc-floating-btn::after { content: ' \2192'; }
.mcc-floating-btn:hover { background: #FB7258; color: #f9f7ef !important; }
.mcc-floating-close { background: none; border: none; color: rgba(255,255,255,.35); font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 0 4px; flex-shrink: 0; transition: color .15s; }
.mcc-floating-close:hover { color: #fff; }
@media (max-width: 600px) {
    .mcc-floating-text { display: none; }
    .mcc-floating-inner { gap: 10px; padding: 10px 14px; }
}

/* ══ BARRE STATIQUE [mc_comparateur_bar] ════════════════════════════ */
.mcc-bar { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 10px 20px; background: #171927; border-top: 2px solid #8B3A21; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; flex-wrap: wrap; }
.mcc-bar-vs { font-family: Georgia, serif; font-size: .78rem; font-weight: 900; color: #FB7258; letter-spacing: .15em; border: 1.5px solid #FB7258; padding: 2px 8px; border-radius: 3px; flex-shrink: 0; }
.mcc-bar-text { font-size: .8rem; color: rgba(255,255,255,.7); font-style: italic; }
.mcc-bar-btn { display: inline-flex; align-items: center; padding: 7px 16px; background: #8B3A21; color: #f9f7ef !important; text-decoration: none !important; border-radius: 5px; font-size: .78rem; font-weight: 700; font-family: Georgia, serif; transition: background .15s; white-space: nowrap; flex-shrink: 0; }
.mcc-bar-btn::after { content: ' \2192'; }
.mcc-bar-btn:hover { background: #FB7258; color: #f9f7ef !important; }
