.cookie-notice {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
    width: calc(100% - 48px);
    max-width: 960px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    color: #252525;
    box-shadow: 0 4px 28px rgba(0, 0, 0, .18);
    text-align: left;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice__content { flex: 1; min-width: 0; }
.cookie-notice .cookie-notice__title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.cookie-notice .cookie-notice__text { margin: 0; font-size: 14px; line-height: 1.6; }
.cookie-notice__text a { color: #b82025; text-decoration: underline; }
.cookie-notice .cookie-notice__accept {
    flex-shrink: 0;
    margin: 0;
    padding: 13px 28px;
    border: 0;
    border-radius: 4px;
    background: #b82025;
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
}
.cookie-notice .cookie-notice__accept:hover { background: #95191d; }
.cookie-notice a:focus-visible,
.cookie-notice button:focus-visible { outline: 3px solid #252525; outline-offset: 3px; }
@media (max-width: 600px) {
    .cookie-notice {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
}
