.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    color: #030e1c;
    z-index: 9999;
    animation: slideUp 0.4s ease-out;

    max-width: 1611px;
    margin: 0 auto;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 30px 30px;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner__text {
    flex: 1;
    max-width: 850px;
}

.cookie-banner__text p {
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #030e1c;
}

.cookie-banner__text a {
    color: #030e1c;
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: #4184ec;
}

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
}

.cookie-banner__btn {
    border: none;
    border-radius: 5px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: #4184ec;
    color: #ffffff;
    width: 118px;
    height: 40px;
}

.cookie-banner__btn--accept:hover {
    background: #3570d4;
}

@media (max-width: 1650px) {
    .cookie-banner {
        max-width: 1158px;
    }

    .cookie-banner__text {
        max-width: 878px;
    }
}

/* Tablet — 768px */
@media (max-width: 1279px) {
    .cookie-banner {
        max-width: 100%;
    }

    .cookie-banner__container {
        padding: 20px 80px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .cookie-banner__text p {
        max-width: 520px;
    }

    .cookie-banner__btn--accept {
        width: 100%;
        height: 40px;
    }
}

/* Mobile — 375px */
@media (max-width: 767px) {
    .cookie-banner__container {
        padding: 28px 28px;
    }

    .cookie-banner__content {
        gap: 18px;
    }

    .cookie-banner__text p {
        max-width: 100%;
    }

    .cookie-banner__btn--accept {
        width: 100%;
        height: 40px;
    }
}