.cookie-notice[hidden] { display: none; }
.analytics-badges[hidden] { display: none; }
.analytics-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 8px auto;
}
.analytics-badges img {
    display: block;
    border: 0;
}
.cookie-notice {
    position: fixed;
    z-index: 10000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
    padding: 18px 20px;
    box-sizing: border-box;
    color: #17212b;
    background: #fff;
    border: 1px solid #b7dced;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
    text-align: left;
}
.cookie-notice__text { line-height: 1.4; }
.cookie-notice__text strong,
.cookie-notice__text span { display: block; margin-bottom: 4px; }
.cookie-notice__button {
    flex: 0 0 auto;
    min-width: 120px;
    padding: 10px 18px;
    color: #fff;
    background: #267dc1;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}
.cookie-notice__actions { display: flex; flex: 0 0 auto; gap: 8px; }
.cookie-notice__button--secondary {
    color: #1768a7;
    background: #fff;
    border: 1px solid #267dc1;
}
.cookie-notice__button--secondary:hover,
.cookie-notice__button--secondary:focus { color: #fff; }
.cookie-notice__button:hover,
.cookie-notice__button:focus { background: #1768a7; }
@media (max-width: 640px) {
    .cookie-notice { right: 10px; bottom: 10px; left: 10px; display: block; }
    .cookie-notice__actions {
        flex-direction: column;
        width: 100%;
        margin-top: 12px;
    }
    .cookie-notice__button { width: 100%; }
}
