.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 520px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0,0,0,.18);
    z-index: 99999;
    border: 1px solid rgba(0,0,0,0.05);
}


.cookie-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}


.cookie-content p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}


.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}



.cookie-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    /*flex-wrap: wrap;*/
}


.cookie-actions button,
.cookie-box button {

    padding: 8px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: .2s ease;
}


.btn-primary {
    background: #2563eb;
    color: white;
}


.btn-primary:hover {
    background:#1d4ed8;
}



.btn-secondary {
    background:#111827;
    color:white;
}


.btn-secondary:hover {
    background:#000;
}



.btn-outline {
    background:white;
    color:#111827;
    border:1px solid #ddd!important;
}


.btn-outline:hover {
    background:#f3f4f6;
}




.cookie-modal {

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.5);

    z-index:100000;

    padding:20px;

}



.cookie-box {

    background:white;

    width:400px;

    max-width:100%;

    padding:30px;

    border-radius:20px;

    margin:100px auto;

    box-shadow:0 15px 50px rgba(0,0,0,.25);

}



.cookie-box h3 {

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}



.cookie-box label {

    display:flex;

    align-items:center;

    gap:10px;

    margin:18px 0;

    color:#374151;

}



.cookie-box input {

    width:18px;

    height:18px;

}



/* Mobile Responsive */

@media(max-width:640px){


    .cookie-banner {

        left:10px;

        bottom:10px;

        width:calc(100% - 20px);

        padding:20px;

        border-radius:16px;

    }


    .cookie-content h4 {

        font-size:18px;

    }


    .cookie-content p {

        font-size:13px;

    }


    .cookie-actions {

        flex-direction:column;

        gap:10px;

    }


    .cookie-actions button {

        width:100%;

    }


    .cookie-box {

        margin:50px auto;

        padding:22px;

    }

}