/* -----------------------------------
Styles for cookies-notice
 ------------------------------------- */
.cookies-notice {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    background: rgba(50, 50, 50, 0.9);
    color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    text-align: center;
    animation: slide-up 0.3s ease-in-out;
}

.cookies-notice.active {
    display: block;
}

.cookies-notice__text {
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookies-notice__button {
    display: inline-block;
    background: #1e90ff;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookies-notice__button:hover {
    background: #4682b4;
}

/* ------------------------------
Animation
 -------------------------------- */
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translate(-50%, 20%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ------------------------------
Styles for mobile
 -------------------------------- */

@media (max-width: 767.98px) {
    .cookies-notice {
        font-size: 0.9rem;
        padding: 15px;
    }

    .cookies-notice__button {
        padding: 8px 16px;
    }
}
