.cookie-popup {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 99999;

    background: #ffffff;
    color: #333;

    border-radius: 12px;

    padding: 20px 24px;

    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);

    font-size: 14px;
    line-height: 1.5;

    max-width: 900px;
    margin: 0 auto;
}


.cookie-popup__content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.cookie-popup__text {
    flex: 1;
}


.cookie-popup__text a {
    color: #0066cc;

    text-decoration: underline;
}


.cookie-popup__actions {
    display: flex;

    gap: 10px;

    flex-shrink: 0;
}


.cookie-popup__button {
    border: none;

    cursor: pointer;

    padding: 10px 18px;

    border-radius: 6px;

    font-size: 14px;

    transition: opacity .2s ease;
}


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


.cookie-popup__button--accept {
    background: #0066cc;

    color: #fff;
}


.cookie-popup__button--reject {
    background: #eeeeee;

    color: #333;
}



@media (max-width: 700px) {

    .cookie-popup {
        left: 10px;
        right: 10px;

        bottom: 10px;

        padding: 16px;
    }


    .cookie-popup__content {
        flex-direction: column;

        align-items: stretch;
    }


    .cookie-popup__actions {
        width: 100%;
    }


    .cookie-popup__button {
        flex: 1;
    }
}