.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    max-width: 960px;
    margin: 0 auto;
    padding: 14px 16px;

    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;

    color: #222;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-banner__button {
    flex: 0 0 auto;

    padding: 9px 16px;

    font: inherit;
    font-weight: 600;

    color: #fff;
    background: #222;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.cookie-banner__button:hover {
    background: #000;
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;

        flex-direction: column;
        align-items: stretch;
        gap: 12px;

        font-size: 13px;
    }

    .cookie-banner__button {
        width: 100%;
    }
}
