.cookies {
    position: fixed;
    z-index: 100;
    background: rgba(252, 252, 252, 0.9450980392);
    padding: 30px;
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 20px;
    filter: drop-shadow(0px 22px 45px rgba(0, 0, 0, 0.4));
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(50% - 150px);
    max-width: 1920px;
    border-radius: 20px;
    bottom: 20px;
    transition: opacity 0.5s;
    pointer-events: none;
}

.cookies.show {
    pointer-events: auto;
    opacity: 1;
}

.cookies__title {
    margin: 0;
    color: #000;
    text-align: left;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

}

.cookies__link {
    font-weight: 700;
    text-decoration: underline;
    color: #193C84;
}

.cookies__link:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .cookies {
        width: calc(90% - 50px);
        padding: 19px 29px 21px 29px;
    }

    .cookies__title {
        max-width: 620px;
    }
}

@media (max-width: 576px) {
    .cookies {
        width: calc(90% - 50px);
        padding: 20px 16px 30px 16px;
    }

    .cookies__title {
        max-width: 360px;
    }

    .cookies__btn {
        padding: 12px 36px;
        margin-top: 20px;
    }
}


.cookies__btn {
        background: #193C84;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }

    .cookies__btn:hover {
        background: #193C84;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(231, 46, 55, 0.3);
    }

    /* Стили для кнопки на мобильных */
    @media (max-width: 576px) {
        .cookies__btn {
            padding: 12px 36px;
            margin-top: 20px;
            width: 100%;
            max-width: 200px;
        }
    }

    .cookies {
        display: block !important; 
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .cookies.show {
        opacity: 1;
        pointer-events: auto;
    }