.cb-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    background: #2c3e50;
    color: #fff;
    padding: 18px 22px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,.25);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    display: none;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}
.cb-banner.cb-show { display: flex; }
.cb-banner__text { flex: 1 1 320px; }
.cb-banner__text a { color: #6cb2ff; text-decoration: underline; }
.cb-banner__text a:hover { color: #fff; }
.cb-banner__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cb-banner__btn {
    border: 0;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
    transition: background .15s ease, opacity .15s ease;
    white-space: nowrap;
}
.cb-banner__btn--accept {
    background: #3a91d8;
    color: #fff;
}
.cb-banner__btn--accept:hover { background: #2876ba; }
.cb-banner__btn--reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.5);
}
.cb-banner__btn--reject:hover { background: rgba(255,255,255,.1); }
@media (max-width: 600px) {
    .cb-banner { flex-direction: column; align-items: stretch; }
    .cb-banner__buttons { justify-content: stretch; }
    .cb-banner__btn { flex: 1 1 auto; }
}
