.cookie-aviation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #004aad;
    color: #fff;
    padding: 14px 20px;
    display: none;
    z-index: 9999;
    border-top: 3px solid #ffd700;
    font-size: 15px;
    animation: cookieFadeIn 0.4s ease;
}

.cookie-aviation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-aviation button {
    background: #ffd700;
    color: #003366;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
}

.cookie-aviation button:hover {
    background: #ffea8a;
}

@keyframes cookieFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
