/* ============= COOKIE BANNER ============= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6B3DBB 0%, #8E2FE4 100%);
    color: white;
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(107, 61, 187, 0.4);
    display: none;
}

#cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #10B981;
    color: white;
}

.cookie-accept:hover {
    background: #059669;
    transform: translateY(-2px);
}

.cookie-reject {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.3);
}