/* Стиль блока уведомления о cookies */
.cookie-consent {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    background-color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0px 20px 40px #eceff0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 249;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.4s ease;
    font-family: "IBM Plex Sans", "Arial", sans-serif;
}

.cookie-consent.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    pointer-events: none;
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
    color: #333;
}

.cookie-text h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #222;
}

.cookie-text p {
    font-size: 14px;
}

.cookie-text a {
    color: #DCAD76;
}

.cookie-button {
    background-color: #DCAD76;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-button:hover {
    background-color: #c69b65;
}

/* Медиа-запрос для адаптивности на мобильных устройствах */
@media (max-width: 768px) {
    .cookie-consent {
        width: 90%;
        flex-direction: column;
        padding: 16px;
    }

    .cookie-text {
        padding-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }

    .cookie-button {
        width: 100%;
        padding: 12px;
    }
}
