.ba-cookie-banner{
    position:fixed;
    left:22px;
    right:22px;
    bottom:22px;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    max-width:1080px;
    margin:0 auto;
    border:1px solid rgba(217,132,125,.32);
    border-radius:24px;
    background:rgba(255,255,255,.96);
    box-shadow:0 24px 70px rgba(23,28,36,.18);
    padding:18px 20px;
    color:#1f2530;
    backdrop-filter:blur(10px);
}

.ba-cookie-banner.show{
    display:flex;
}

.ba-cookie-text{
    min-width:0;
    font-size:14px;
    line-height:1.5;
}

.ba-cookie-text b{
    display:block;
    font-size:16px;
    margin-bottom:4px;
    color:#171c24;
}

.ba-cookie-text a{
    font-weight:900;
    color:#d9847d;
    text-decoration:underline;
    text-underline-offset:3px;
}

.ba-cookie-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:flex-end;
    flex:0 0 auto;
}

.ba-cookie-actions button{
    border:1px solid var(--line);
    border-radius:999px;
    padding:11px 16px;
    font-weight:900;
    cursor:pointer;
    background:#fff;
    color:#303844;
}

.ba-cookie-actions button.ba-cookie-accept{
    border-color:#d9847d;
    background:#d9847d;
    color:#fff;
}

.ba-cookie-actions button.ba-cookie-reject:hover{
    border-color:#d9847d;
    color:#d9847d;
}

.ba-cookie-actions button.ba-cookie-accept:hover{
    filter:brightness(.98);
}

@media(max-width:760px){
    .ba-cookie-banner{
        left:14px;
        right:14px;
        bottom:14px;
        flex-direction:column;
        align-items:stretch;
        border-radius:20px;
        padding:16px;
    }

    .ba-cookie-actions{
        justify-content:stretch;
    }

    .ba-cookie-actions button{
        flex:1;
    }
}
