#cookieConsentBar{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:999999;
    background:#111;
    color:#fff;
    border-top:1px solid rgba(255,255,255,.1);
    padding:16px;
    box-shadow:0 -5px 25px rgba(0,0,0,.25);
}

.cookie-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:center;
    flex-wrap:wrap;
}

.cookie-content a{
    color:#f6c945;
}

.cookie-actions{
    display:flex;
    gap:10px;
}

.cookie-actions button{
    border:0;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    font-weight:700;
}

#cookieAccept{
    background:#f6c945;
    color:#111;
}

#cookieReject{
    background:#333;
    color:#fff;
}