.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #222;
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-notice a {
    color: #fff;
    text-decoration: underline;
}

.cookie-notice__btn {
    flex-shrink: 0;
    background: #46766B;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-notice__btn:hover {
    opacity: .85;
}

@media (max-width: 600px) {
    .cookie-notice {
        flex-direction: column;
        align-items: flex-start;
    }
}
