
        .ea-cv2-checkout-mobile-cta {
            display: none;
        }
        @media (max-width: 768px) {
            .ea-cv2-checkout-mobile-cta {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 9998;
                background: #fff;
                box-shadow: 0 -4px 16px rgba(13, 17, 68, 0.15);
                padding: 12px 16px;
                gap: 12px;
                align-items: center;
                justify-content: space-between;
                border-top: 1px solid #e5e7eb;
            }
            .ea-cv2-checkout-mobile-cta__total {
                flex: 0 0 auto;
                display: flex;
                flex-direction: column;
                line-height: 1.2;
            }
            .ea-cv2-checkout-mobile-cta__label {
                font-size: 11px;
                color: #6b7280;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            .ea-cv2-checkout-mobile-cta__amount {
                font-size: 18px;
                font-weight: 700;
                color: #0D1144;
            }
            .ea-cv2-checkout-mobile-cta__btn {
                flex: 1;
                background: #0D1144;
                color: #fff;
                border: none;
                padding: 14px 20px;
                font-size: 16px;
                font-weight: 600;
                border-radius: 8px;
                cursor: pointer;
                min-height: 48px;
                -webkit-tap-highlight-color: transparent;
            }
            .ea-cv2-checkout-mobile-cta__btn:active {
                transform: scale(0.97);
                opacity: 0.9;
            }
            /* Ajoute padding-bottom au body pour éviter que le sticky cache le contenu */
            body.woocommerce-checkout {
                padding-bottom: 80px !important;
            }
            /* Hide quand le vrai bouton est visible (évite doublon) */
            .ea-cv2-checkout-mobile-cta.ea-cv2-hidden-near-target {
                opacity: 0;
                pointer-events: none;
                transform: translateY(100%);
                transition: all 0.3s ease;
            }
        }
    