#cookie-notice {
    position: fixed;
    bottom: -150px; /* Скрыт за нижней границей */
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85); /* Полупрозрачный темный фон */
    color: #ffffff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0; /* Начальная прозрачность */
    transition: bottom 0.5s ease, opacity 0.5s ease; /* Плавная анимация */
    font-family: Arial, sans-serif;
}

#cookie-notice.visible {
    bottom: 0; /* Появляется снизу */
    opacity: 1; /* Полная видимость */
}

#cookie-notice.hiding {
    bottom: -150px; /* Уходит вниз */
    opacity: 0; /* Исчезает */
}

#cookie-notice p {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.5;
    display: inline-block;
}
#cookie-notice a {
    color: #8f8f8f;
}


.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#cookie-notice button {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
    color: #000000;
}

#decline-cookies,
#accept-cookies {
    background: #dfb614; /* Желтый для "Принять" */
}

#accept-cookies:hover {
    background: #ffdd00; /* Светлее при наведении */
}

#decline-cookies:hover {
    background: #b39c42; /* Светлее при наведении */
}