#cc-banner{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:999999;
}

/* Modal */

#cc-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:999999;
}

#cc-modal.cc-open{
    display:flex;
}

.cc-card{
    width:650px;
    max-width:95%;
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.cc-card header{
    margin-bottom:25px;
}

.cc-card h2{
    margin-bottom:10px;
}

.cc-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.cc-text strong{
    display:block;
    margin-bottom:6px;
}

.cc-text span{
    color:#666;
    font-size:14px;
    line-height:1.5;
}

.cc-card footer{
    display:flex;
    justify-content:flex-end;
    gap:12px;
    margin-top:25px;
}

/* Toggle */

.cc-toggle{
    position:relative;
    width:52px;
    height:28px;
}

.cc-toggle input{
    display:none;
}

.cc-track{
    position:absolute;
    inset:0;
    background:#d1d5db;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.cc-track::before{
    content:"";
    position:absolute;
    width:22px;
    height:22px;
    left:3px;
    top:3px;
    background:#fff;
    border-radius:50%;
    transition:.3s;
}

.cc-toggle input:checked + .cc-track{
    background:#2563eb;
}

.cc-toggle input:checked + .cc-track::before{
    transform:translateX(24px);
}

.cc-copy{
    flex:1;
}

.cc-copy h3{
    margin:0 0 10px;
}

.cc-copy p{
    margin:0;
    color:#666;
}

.cc-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.cc-btn{
    padding:10px 18px;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.cc-btn-link{
    background:none;
    color:#2563eb;
}

.cc-btn-ghost{
    background:#fff;
    border:1px solid #ccc;
}

.cc-btn-primary{
    background:#2563eb;
    color:#fff;
}

@media(max-width:768px){

#cc-banner{
    flex-direction:column;
    align-items:flex-start;
}

.cc-actions{
    width:100%;
}

.cc-btn{
    width:100%;
}

}