/* ===== COOKIE BANNER STYLES ===== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 600px;
    margin: 0 auto;
    z-index: 9000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-banner-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.cookie-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary, linear-gradient(135deg, #1881dd 0%, #37b6fd 100%));
}

.cookie-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary, linear-gradient(135deg, #1881dd 0%, #37b6fd 100%));
    border-radius: 12px;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(24, 129, 221, 0.3);
}

.cookie-banner-text {
    flex: 1;
    min-width: 0;
}

.cookie-banner-text h4 {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark, #1A1A2E);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.cookie-banner-text p {
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-700, #374151);
    margin: 0;
    line-height: 1.5;
}

.cookie-banner-text strong {
    color: var(--primary, #1881dd);
    font-weight: 600;
}

.cookie-banner-btn {
    background: var(--gradient-primary, linear-gradient(135deg, #1881dd 0%, #37b6fd 100%));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(24, 129, 221, 0.3);
}

.cookie-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 129, 221, 0.4);
}

.cookie-banner-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(24, 129, 221, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
    
    .cookie-banner-content {
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .cookie-banner-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .cookie-banner-text h4 {
        font-size: 1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.85rem;
    }
    
    .cookie-banner-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cookie-banner-btn {
        align-self: center;
        width: 100%;
        justify-content: center;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .cookie-banner-content {
        background: rgba(26, 26, 46, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cookie-banner-text h4 {
        color: #ffffff;
    }
    
    .cookie-banner-text p {
        color: #e5e7eb;
    }
} 