/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: none;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 768px) { 
    .cookie-banner { 
        left: auto; 
        right: 30px; 
    }
}

/* Cookie Preferences Toggle Switch (if used) */
/* (Add any specific styles for the toggle switch if it's part of the cookie banner) */