.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

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

.cookie-banner__text {
    font-size: 14px;
    line-height: 20px;
    color: #2b3344;
}

.cookie-banner__text a {
    color: #007bff;
    text-decoration: underline;
}

.cookie-banner__button {
    flex: 0 0 auto;
    min-width: 110px;
    border-radius: 4px;
}

@media all and (max-width: 575px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
    }

    .cookie-banner__text {
        font-size: 13px;
        line-height: 18px;
    }
}
