.cookieBanner {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 400px;
    z-index: 1000;
    display: none;
}

.cookieBanner--visible {
    display: flex;
}

.cookieBanner__inner {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(47, 46, 43, 0.08);
}

.cookieBanner__text {
    flex: 1;
    margin: 0;
    font-weight: 500;
}

.cookieBanner__button {
    flex-shrink: 0;
    background-color: #ededed;
    border: none;
    cursor: pointer;
    transition: background-color 200ms ease;
}

.cookieBanner__button:hover {
    background-color: #e2e2e2;
}

.cookieBanner__button:active {
    background-color: #d6d6d6;
}

@media (max-width: 550px) {
    .cookieBanner {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
    }

    .cookieBanner .cookieBanner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
    }

    .cookieBanner__text {
        flex: none;
    }

    .cookieBanner__button {
        width: 100%;
        padding: 17px 24px;
        text-align: center;
    }
}
