.cookie-banner{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: #111;
    color: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 9999;
}

.cookie-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-actions button{
    margin-left: 10px;
}

/* MODAL */
.cookie-modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-modal-box{
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 400px;
}