@keyframes bk-consent-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

#bk-cookie-banner {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 320px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13), 0 1px 4px rgba(0,0,0,0.08);
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    animation: bk-consent-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#bk-cookie-banner.visible {
    display: block;
}

#bk-cookie-header {
    background: #1c4a2e;
    padding: 14px 18px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#bk-cookie-header-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

#bk-cookie-header-title {
    font-family: 'Roboto Slab', serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin: 0;
}

#bk-cookie-body {
    padding: 14px 18px 16px;
}

#bk-cookie-banner p {
    margin: 0 0 14px;
    color: #3a3a3a;
    line-height: 1.55;
}

#bk-cookie-banner a {
    color: #1c4a2e;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#bk-cookie-banner a:hover {
    color: #2e7d32;
}

#bk-cookie-buttons {
    display: flex;
    gap: 8px;
}

#bk-cookie-accept {
    flex: 1;
    background: #1c4a2e;
    color: #ffffff !important;
    border: none;
    padding: 9px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.18s;
}

#bk-cookie-accept:hover {
    background: #2e7d32;
}

#bk-cookie-reject {
    flex: 1;
    background: transparent;
    color: #555555;
    border: 1px solid #cccccc;
    padding: 9px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: border-color 0.18s, color 0.18s;
}

#bk-cookie-reject:hover {
    border-color: #888888;
    color: #222222;
}

@media (max-width: 400px) {
    #bk-cookie-banner {
        right: 12px;
        left: 12px;
        width: auto;
        bottom: 12px;
    }
}
