/* ===========================================
   Hillcrest Cookie Framework
=========================================== */

.cookie-banner{

    position:fixed;

    left:50%;

    bottom:25px;

    transform:translate(-50%,120px);

    width:min(850px,calc(100% - 30px));

    background:#ffffff;

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transition:all .4s ease;

    z-index:999999;

}

.cookie-banner.show{

    opacity:1;

    visibility:visible;

    transform:translate(-50%,0);

}

.cookie-header{

    padding:22px 28px;

    border-bottom:1px solid #ececec;

}

.cookie-header h2{

    margin:0;

    color:#0B3D91;

    font-size:24px;

}

.cookie-body{

    padding:25px 28px;

}

.cookie-body p{

    margin:0 0 15px;

    line-height:1.7;

    color:#555;

}

.cookie-footer{

    display:flex;

    justify-content:flex-end;

    gap:12px;

    padding:22px 28px;

    background:#fafafa;

    border-top:1px solid #ececec;

}

.cookie-footer button{

    border:none;

    padding:12px 22px;

    border-radius:8px;

    cursor:pointer;

    font-size:14px;

    font-weight:600;

    transition:.25s;

}

#cookieAccept{

    background:#0B3D91;

    color:#fff;

}

#cookieReject{

    background:#e5e5e5;

}

#cookieSettings{

    background:#F6B400;

    color:#111;

}

#cookieAccept:hover{

    background:#072f70;

}

#cookieReject:hover{

    background:#d8d8d8;

}

#cookieSettings:hover{

    background:#e3a600;

}

@media(max-width:768px){

.cookie-banner{

    width:calc(100% - 20px);

    bottom:10px;

}

.cookie-footer{

    flex-direction:column;

}

.cookie-footer button{

    width:100%;

}

}

/* ==========================
   Cookie Settings Modal
========================== */

.cookie-modal{

    display:none;

    position:fixed;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.55);

    justify-content:center;

    align-items:center;

    z-index:999999;

}

.cookie-modal-content{

    width:500px;

    max-width:90%;

    background:#fff;

    border-radius:12px;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.25);

    font-family:Arial,sans-serif;

}

.cookie-modal-content h2{

    margin-top:0;

    color:#0B3A69;

}

.cookie-option{

    display:block;

    margin:18px 0;

    font-size:16px;

}

.cookie-option input{

    margin-right:10px;

}

.cookie-actions{

    margin-top:30px;

    display:flex;

    justify-content:flex-end;

    gap:10px;

}

.cookie-actions button{

    padding:10px 18px;

    border:none;

    border-radius:6px;

    cursor:pointer;

}

#cookieCancel{

    background:#cccccc;

}

#cookieSave{

    background:#0B3A69;

    color:white;

}