.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
    width: min(520px, calc(100% - 40px));
    padding: 18px 20px;
    color: #14233d;
    background: #fff;
    border: 1px solid #dce5f0;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(22, 48, 82, 0.16);
    font-size: 14px;
    line-height: 1.55;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0 0 12px; color: #52627a; }
.cookie-banner a { color: #087fe8; font-weight: 700; }
.cookie-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cookie-accept {
    min-height: 40px;
    padding: 9px 16px;
    border: 0;
    border-radius: 8px;
    background: #0ab875;
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}
.cookie-accept:hover { background: #079c64; }
@media (max-width: 560px) {
    .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); }
}
