 /* ISOLATO AL 100%: Non tocca il menu né interferisce con i sottomenu a tendina */
    #cc--main { 
        position: fixed !important; 
        z-index: 999999 !important; /* Abbassato per stare SOTTO il menu a comparsa del sito se necessario */
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; 
        font-size: 14px; 
        color: #2d3748; 
        pointer-events: none !important; 
        left: auto !important;
        top: auto !important;
        right: 0 !important; 
        bottom: 0 !important; 
        width: auto !important;
        height: auto !important;
    }
    
    .cc_div button { font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; border: none; padding: 12px 24px; border-radius: 6px; transition: background .2s ease; width: 100%; text-align: center; }
    
    /* Box del banner (Isolato e indipendente) */
    #cm { 
        background: #ffffff !important; 
        padding: 24px !important; 
        border-radius: 12px !important; 
        box-shadow: 0 10px 25px -5px rgba(0,0,0,.15) !important; 
        max-width: 400px !important; 
        pointer-events: auto !important; 
        position: fixed !important; 
        bottom: 20px !important; 
        right: 20px !important; 
        border: 1px solid #e2e8f0 !important; 
        transform: translateY(20px) !important; 
        opacity: 0 !important; 
        transition: transform .3s ease, opacity .3s ease !important;
        display: none !important;
    }
    #cm.show { transform: translateY(0) !important; opacity: 1 !important; display: block !important; }
    
    /* Elementi interni */
    #cm-t { font-size: 19px !important; font-weight: 700 !important; margin-bottom: 12px !important; color: #1a202c !important; display: flex !important; align-items: center !important; gap: 8px !important; text-align: left !important; }
    #cm-d { margin-bottom: 20px !important; color: #4a5568 !important; font-size: 13.5px !important; line-height: 1.5 !important; text-align: left !important; }
    #cm-btn-c { display: flex !important; flex-direction: column !important; gap: 8px !important; }
    .cc_div .c-bn { color: #ffffff !important; background: #2563eb !important; }
    .cc_div .c-bn:hover { background: #1d4ed8 !important; }
    .cc_div .c-bns { background: #f1f5f9 !important; color: #334155 !important; }
    .cc_div .c-bns:hover { background: #e2e8f0 !important; }

    /* Ottimizzazione Mobile (Forza solo lo spostamento in basso, senza toccare l'altezza della pagina) */
    @media screen and (max-width: 576px) {
        #cc--main { right: 0 !important; left: 0 !important; bottom: 0 !important; width: 100% !important; }
        #cm { bottom: 10px !important; left: 10px !important; right: 10px !important; max-width: none !important; padding: 18px !important; }
    }