.bk-cookie-banner {
position: fixed;
left: 0;
right: 0;
bottom: 0;

background: #ffffff;
border-top: 4px solid #004f9f;

z-index: 99999;

box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
}

.bk-cookie-inner {
max-width: 1440px;
margin: 0 auto;
padding: 24px 40px;

display: flex;
align-items: center;
justify-content: space-between;
gap: 40px;
}

.bk-cookie-text h3 {
margin: 0 0 8px;
color: #004f9f;
font-size: 1.8rem;
font-weight: 600;
}

.bk-cookie-text p {
margin: 0;
font-size: 1.4rem;
line-height: 1.6;
}

.bk-cookie-text a {
color: #004f9f;
text-decoration: none;
font-weight: 600;
}

.bk-cookie-actions {
display: flex;
gap: 12px;
flex-shrink: 0;
}

.bk-cookie-btn {
padding: 12px 22px;
border: 0;
cursor: pointer;
font-weight: 600;
transition: all .25s ease;
}

.bk-cookie-btn-primary {
background: #004f9f;
color: #fff;
}

.bk-cookie-btn-primary:hover {
background: #003d7d;
}

.bk-cookie-btn-secondary {
background: #f0f2f3;
color: #1e2832;
}

.bk-cookie-btn-secondary:hover {
background: #e4e7ea;
}

@media (max-width: 991px) {

.bk-cookie-inner {
flex-direction: column;
align-items: flex-start;
padding: 24px;
gap: 20px;
}

.bk-cookie-actions {
width: 100%;
}

.bk-cookie-btn {
flex: 1;
}
}
