/**
 * Cookie Banner Styling
 * ONS TV KANAAL
 */

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(5, 8, 22, 0.95);
    color: #fff;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: #c3c7d5;
    line-height: 1.6;
    flex: 1;
    min-width: 250px;
}

.cookie-banner a {
    color: #ff4b3a;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-banner a:hover {
    color: #ff7b3a;
}

.cookie-banner .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner p {
        margin-bottom: 0.75rem;
    }
    
    .cookie-banner .btn-primary {
        width: 100%;
    }
}




