/* Shared cookie banner — all themes (visibility via inline style + cookie-notice.js) */
#cookie-notice-root.cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10050;
    padding: 0.75rem 1rem;
    background: rgba(20, 22, 28, 0.96);
    color: #f4f4f5;
    font-size: 0.9rem;
    line-height: 1.45;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-notice__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.cookie-notice__text {
    flex: 1 1 280px;
    margin: 0;
}

.cookie-notice__text a {
    color: #a5d8ff;
    text-decoration: underline;
}

.cookie-notice__text a:hover {
    color: #cfe8ff;
}

.cookie-notice__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.cookie-notice__btn {
    cursor: pointer;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    background: #3b82f6;
    color: #fff;
}

.cookie-notice__btn:hover {
    background: #2563eb;
}

.cookie-notice__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
