#airshadow-cookie-banner {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid #D4AF37;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    display: none;
    backdrop-filter: blur(10px);
}
#airshadow-cookie-banner .banner-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
#airshadow-cookie-banner p { margin: 0; font-size: 0.9rem; color: #ccc; line-height: 1.4; }
#airshadow-cookie-banner p a { color: #D4AF37; text-decoration: none; font-weight: 600; }
#airshadow-cookie-banner p a:hover { color: #F4D03F; }
#airshadow-cookie-banner .banner-btns {
    display: flex; gap: 10px; flex-shrink: 0;
}
#airshadow-cookie-banner button {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}
#airshadow-cookie-banner .btn-accept {
    background: #D4AF37; color: #000; border: none;
}
#airshadow-cookie-banner .btn-accept:hover { background: #F4D03F; }
#airshadow-cookie-banner .btn-refuse {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3);
}
#airshadow-cookie-banner .btn-refuse:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
    #airshadow-cookie-banner .banner-container {
        flex-direction: column;
        text-align: center;
    }
    #airshadow-cookie-banner .banner-btns {
        width: 100%;
        justify-content: center;
    }
}
