#scb-cookie-banner-root { position: relative; z-index: 999999; }

.scb-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;
    background: rgba(0,0,0,0.80);
    backdrop-filter: blur(5px);
    color: #fff;

    font-size: 14px;
    line-height: 1.35;
}

.scb-cookie-text a {
    color: #fff;
    text-decoration: underline;
}

.scb-cookie-text a:hover {
    color: #C10C18;
}

.scb-cookie-btn {
    flex: 0 0 auto;
    background: #C10C18;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
}

.scb-cookie-btn:hover { opacity: 0.92; }

@media (max-width: 640px) {
    .scb-cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }
    .scb-cookie-btn {
        width: 100%;
    }
}