.cookies__modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    width: 600px;
    padding: 20px;
    background: var(--clr-alt-black);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookies__modal.active {
    opacity: 1;
    visibility: visible;
}

.cookies__modal-text {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--clr-grey);
    text-align: center;
}

.cookies__modal-link {
    color: var(--clr-white);

    font-size: 14px;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookies__modal-link:hover {
    color: var(--clr-yellow);
}

@media screen and (max-width: 438px) {

    .cookies__modal  {
        max-width: 80%;
    }

}