.cookie-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    z-index:999998;
}

.cookie-popup{
    position:fixed;
    left:50%;
    bottom:30px;

    transform:translateX(-50%);

    width:90%;
    max-width:700px;

    background:#fff;
    border-radius:18px;

    padding:30px;

    box-shadow:0 15px 45px rgba(0,0,0,0.25);

    z-index:999999 !important;

    font-family:Arial,sans-serif;
}

.cookie-popup h3{
    margin-top:0;
    margin-bottom:15px;
}

.cookie-popup p{
    line-height:1.7;
    color:#555;
}

.cookie-actions{
    display:flex;
    gap:15px;
    margin-top:25px;
    flex-wrap:wrap;
}

.cookie-btn{
    border:0;
    border-radius:10px;
    padding:12px 20px;
    cursor:pointer;
    font-weight:bold;
}

.cookie-btn.accept{
    background:#28a745;
    color:#fff;
}

.cookie-btn.reject{
    background:#e9ecef;
}

@media(max-width:768px){

    .cookie-popup{
        width:calc(100% - 20px);
        bottom:10px;
        padding:20px;
    }

    .cookie-actions{
        flex-direction:column;
    }

}