#cookieConsentBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(37,47,69,0.97);
    color: #fff;
    padding: 16px 24px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.88rem;
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
}
#cookieConsentBanner .cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
#cookieConsentBanner .cookie-text {
    flex: 1;
    min-width: 280px;
    line-height: 1.5;
}
#cookieConsentBanner .cookie-text a {
    color: #7294b7;
    text-decoration: underline;
}
#cookieAcceptBtn {
    background: #7294b7;
    color: #fff;
    border: none;
    padding: 9px 24px;
    border-radius: 6px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
#cookieAcceptBtn:hover {
    background: #5a7a9a;
}
