.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: 
        opacity 0.3s ease,
        visibility 0s linear 0.3s; /* Задержка для visibility */
    max-width: 90%;
    width: 1000px;
    font-size: 14px
    text-align: center;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
    transition: 
        opacity 0.3s ease,
        visibility 0s linear; /* Убираем задержку при появлении */
}

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.accept-btn, .decline-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s;
}

.accept-btn:hover, .decline-btn:hover {
    transform: scale(1.05);
}

.accept-btn { background: #004E88; color: white; }
.decline-btn { background: white; color: #004E88; }